Skip to content

Commit

Permalink
Merge pull request #139 from millnet-maho/simplify-merges
Browse files Browse the repository at this point in the history
Pass --simplify-merges to git log to counteract the change in git 2.36 that disables history simplification
  • Loading branch information
tibirna authored Sep 7, 2023
2 parents 1075280 + 53ba376 commit 679836a
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 679836a

Please sign in to comment.