node-gitsync
v1.0.5
Published
Node helper library for keeping a remote git library syncronized with a local folder.
Downloads
10
Readme
Node GitSync
Helper library for syncronizing a remote git repository with a local folder, being sure to only pull it down when it does not exist locally. ###Installation
npm install node-gitsync
###Simple Usage
var gitsync = require('node-gitsync');
gitsync({
'dest': 'relative-path-to-subfolder',
'repo': 'https://github.com/blah/repo.git',
'branch': 'name-of-desired-branch'
}, function(err) {
console.log("done!");
});