Skip to content

Instantly share code, notes, and snippets.

@jmgunn87
Created February 22, 2014 13:30
Show Gist options
  • Save jmgunn87/9154846 to your computer and use it in GitHub Desktop.
Save jmgunn87/9154846 to your computer and use it in GitHub Desktop.
var start = 'HEAD';
var end = 'fc402a5d37302265f87c77b2abe6cb06cde276b0';
require('child_process').exec(
'git log --grep="\\[.*]" --no-merges ' + end + '~1..' + start,
function (error, stdout, stderr) {
console.log('stdout: ' + stdout);
console.log('stderr: ' + stderr);
console.log('exec error: ' + error);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment