├── .gitignore ├── .npmignore ├── LICENSE.txt ├── README.md ├── git-tools.js ├── package.json └── test └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test/repo 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /test/ 2 | .jshintrc 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottgonzalez/node-git-tools/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottgonzalez/node-git-tools/HEAD/README.md -------------------------------------------------------------------------------- /git-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottgonzalez/node-git-tools/HEAD/git-tools.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottgonzalez/node-git-tools/HEAD/package.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottgonzalez/node-git-tools/HEAD/test/test.js --------------------------------------------------------------------------------