Skip to content

Commit

Permalink
Pass --simplify-merges to git log to counteract the change in git 2.3…
Browse files Browse the repository at this point in the history
…6 that disables history simplification when doing separate and remerge style merge diffs

Fixes #129.
  • Loading branch information
Magnus Holmgren committed Sep 7, 2023
1 parent 1075280 commit 53ba376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/git.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2191,7 +2191,7 @@ bool Git::startRevList(SCList args, FileHistory* fh) {
then, with this option, file history is truncated to
the file deletion revision.
*/
initCmd << QString("-r -m -p --full-index").split(' ');
initCmd << QString("-r -m -p --full-index --simplify-merges").split(' ');
} else
{} // initCmd << QString("--early-output"); currently disabled

Expand Down

0 comments on commit 53ba376

Please sign in to comment.