git-command
v1.0.11
Published
Execute git command using Node.js
Downloads
40
Readme
Execute Git Command by Node.js
How to use it
var Git = require('git-command');
var git = new Git(YOUR_REPO_PATH);
// For example, git log
git.log().then(function(result){
});
DONE
- git status
- git log
- git ls-files
- git diff
- git clone
- git checkout
TODO
- git show