Package Exports
- git-commit-range
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (git-commit-range) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
git-commit-range
Get the git commithash within a Range from-to
Installation
$ npm i git-commit-range --saveor
$ yarn add git-commit-rangeUsage
Returns an array with the commithashes from a specified commit to another specified commit.
const gitCommitRange = require('git-commit-range');
gitCommitRange(); // returns all commits (complete hash) since the beginning of the repo of process.cwd()
gitCommitRange({
path: 'my/repo',
from: '15be93c31ad87c9ced03ba0b60fc2fb55c977c5c',
to: '32b940b014322834966d79b109d2d7adec8e3ea3',
include: false,
}); // returns all commits (complete hash) between from and to EXCLUDING from and to, of the path 'my/repo'
gitCommitRange({
path: 'my/repo',
from: '15be93c31ad87c9ced03ba0b60fc2fb55c977c5c',
to: '32b940b014322834966d79b109d2d7adec8e3ea3',
}); // returns all commits (complete hash) between from and to INCLUDING from and to, of the path 'my/repo'
gitCommitRange({
path: 'my/repo',
from: '15be93c31ad87c9ced03ba0b60fc2fb55c977c5c',
to: '32b940b014322834966d79b109d2d7adec8e3ea3',
type: 'text',
}); // returns all commits as text between from and to INCLUDING from and to, of the path 'my/repo'
gitCommitRange({
path: 'my/repo',
from: '15be93c31ad87c9ced03ba0b60fc2fb55c977c5c',
to: '32b940b014322834966d79b109d2d7adec8e3ea3',
short: true,
}); // returns all commits (short hash) between from and to INCLUDING from and to, of the path 'my/repo'
gitCommitRange({
path: 'my/repo',
from: '15be93c31ad87c9ced03ba0b60fc2fb55c977c5c',
to: '32b940b014322834966d79b109d2d7adec8e3ea3',
includeMerges: false,
}); // returns all commits between from and to EXCLUDING all merge commits, of the path 'my/repo'LICENSE
MIT © Lukas Aichbauer