Get the current state of any git repository.
npm install git-state
var git = require('git-state')
var path = '/path/to/git/repo'
git.isGit(path, function (exists) {
if (!exists) return
git.check(path, function (err, result) {
if (err) throw err
console.log(result) // => { branch: 'master',
// ahead: 0,
// dirty: 9,
// untracked: 1,
// stashes: 0,
// issues: true }
})
})
Calls the callback
with a boolean which is either true
or false
depending on if the given path contains a git repository.
Synchronous version of isGit()
which returns either true
or false
depending on if the given path contains a git repository.
Will check the state of the git repository at the given path
and call
the callback
. The callback
will be called with two arguments: An
optional error object and a result object.
The result object contains the following properties:
branch
- The currently checked out branchahead
- The amount of commits the current branch is ahead of the remote (may beNaN
if there for instance is no remote)dirty
- The number of dirty filesuntracked
- The number of untracked filesstashes
- The number of stored stashesissues
- A generic boolean which istrue
if the repository is in a non-clean state (e.g. it's dirty, contains untracked files, is ahead of its remote or is currently not on master)
Get the amount of untracked files in the git repository at the given
path
.
The callback
will be called with two arguments: An optional error
object and a number representing the amount of untracked files.
Get the amount of dirty files in the git repository at the given
path
.
The callback
will be called with two arguments: An optional error
object and a number representing the amount of dirty files.
Get the currently checked out branch in the git repository at the given
path
.
The callback
will be called with two arguments: An optional error
object and a string with the branch name.
If the branch name cannot be found, a falsy value will be returned.
Get the amount of commits the current branch in the git repository at
the given path
is ahead of its remote.
The callback
will be called with two arguments: An optional error
object and a number indicating the amount of commits the branch is ahead
of its remote.
If the number cannot be determined, NaN
will be returned instead.
Get the short-hash (e.g. 7b0a3ab
) for the latest commit at HEAD
in
the git repository at the given path
.
The callback
will be called with two arguments: An optional error
object and a string containing the short-hash.
Get the amount of stashed changes in the git repository at the given
path
.
The callback
will be called with two arguments: An optional error
object and a number representing the amount of stashed changes.
Inside the bin
folder is a set of shell scripts which will perform the same checks as
the isGit()
and check()
functions, but just in pure bash. This
allows you for instance to modify your command prompt without having to
invoke node (which can be kind of slow if done at every request). In
fact this is exactly what the
git-ps1 module does for you.
bin/isgit
- exit code will be 0 if cwd is inside a git repo, otherwise 1bin/ahead
- exit code will be 0 if result is0
, otherwise 1bin/branch
- exit code will be 0 if result ismaster
, otherwise 1bin/dirty
- exit code will be 0 if result is0
, otherwise 1bin/untracked
- exit code will be 0 if result is0
, otherwise 1bin/stashes
- exit code will be 0 if result is0
, otherwise 1bin/commit
- exit code will be 0 if a commit can be found, otherwise 1bin/issues
- will combine all of the above into one script which will exit with exit code 0 if all pass or 1 if one of them fail
MIT