From fc339dc923149025be1fbe72d35d7b9bf332672e Mon Sep 17 00:00:00 2001 From: Pontax Date: Wed, 25 Feb 2026 01:50:45 +0100 Subject: [PATCH] chore: Replace "git whatchanged" command by "git log --raw --no-merges" (fixes #1012) --- src/git/whatChanged.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {