0.1.0 • Published 10 years ago

git-execute v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

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