checkout
v1.0.1
Published
Pull down local or remote repositories to local directories.
Downloads
432
Readme
checkout
Simple unpacking of repositories to local directories.
Git Repositories
checkout({
type: 'git',
url: '[email protected]:bmeck/ruffian',
destination: 'my-apps/ruffian'
}, function (err) {
console.error(err)
});
Streams from .tar files
checkout({
type: 'tar-stream',
stream: req,
destination: 'my-apps/ruffian'
}, function (err) {
console.error(err)
});
Local directories
checkout({
type: 'directory',
directory: 'my-repos/ruffian',
destination: 'my-apps/ruffian'
}, function (err) {
console.error(err)
});
Custom Handler
checkout({
type: function (description, callback) {
// PERFORM THE CHECKOUT HERE
// @description matches the first argument to checkout
},
}, function (err) {
console.error(err)
})
Registering a generic handler
checkout.handlers.myHandler = function (description, callback) {
// Same as Custom Handler
}