git-execute
v0.1.0
Published
Utility module over child_process.exec for git commands.
Downloads
12
Readme
git-execute
Utility module over child_process.exec
for git commands.
Usage
gitExecute(repoPath, execArguments, callback)
Example:
var gitExecute = require('git-execute');
// get the total number of commits
gitExecute(repoPath, [
'rev-list',
'HEAD',
'--count'
], function(err, stdout, stderr) {
if (err) { throw err; }
console.log(stdout);
});
License
MIT