From 2035999a867ac08f2627a3027b75af69136452c1 Mon Sep 17 00:00:00 2001 From: Pontax Date: Wed, 25 Feb 2026 01:28:59 +0100 Subject: [PATCH] chore: Add --i-still-use-this option to "git whatchanged" command (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..e0b71ebf 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 whatchanged --i-still-use-this', { maxBuffer: Infinity, cwd: repoPath }, function (error, stdout, stderr) {