We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--ignore-cr-at-eol
--ignore-all-space
1 parent 34e0ea3 commit 9a6c671Copy full SHA for 9a6c671
src/Commands/Diff.cs
@@ -28,7 +28,7 @@ public Diff(string repo, Models.DiffOption opt, int unified, bool ignoreWhitespa
28
Context = repo;
29
30
if (ignoreWhitespace)
31
- Args = $"-c core.autocrlf=false diff --no-ext-diff --patch --ignore-cr-at-eol --ignore-all-space --unified={unified} {opt}";
+ Args = $"-c core.autocrlf=false diff --no-ext-diff --patch --ignore-all-space --unified={unified} {opt}";
32
else
33
Args = $"-c core.autocrlf=false diff --no-ext-diff --patch --unified={unified} {opt}";
34
}
0 commit comments