0.1.0 • Published 10 years ago

git-get-patch v0.1.0

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

git-get-patch

Returns a readable stream with a git patch.

Usage

streamPatch(repoPath, rev)

Example:

var streamPatch = require('./');
var path = require('path');
var repoPath = path.resolve(process.env.REPO || (__dirname + '/.git'));
var rev = process.env.REV || 'master';

streamPatch(repoPath, rev).on('error', function(err) {
  throw err;
}).on('end', function() {
  console.log('\n------ THE END ------');
}).pipe(process.stdout);

Tests

npm test

License

MIT