diff --git a/src/git/whatChanged.js b/src/git/whatChanged.js index daad344d..acc750f2 100644 --- a/src/git/whatChanged.js +++ b/src/git/whatChanged.js @@ -6,7 +6,7 @@ export { whatChanged }; * Asynchronously gets the git whatchanged output */ function whatChanged (repoPath, done) { - exec('git whatchanged', { + exec('git log --raw --no-merges', { maxBuffer: Infinity, cwd: repoPath }, function (error, stdout, stderr) {