I'm using git rerere, and it is useful, but there is one problem: When it automatically resolves a file, it does not mark it as resolved (eg with git add). So if I run 'git mergetool', it opens up the file as if it still has all the conflicts in it.
So far, I've made a small shell script which I can call, which scans all files marked as conflicted for conflict markers (eg >>>>>>>
), and calls git-add on them if they have none.
Is there a better way of doing this? Some flag to git rerere I missed?
Maybe a
git config
setting can help:Note: since Git1.7.0,
Git 2.38 (Q3 2022) updates documentation on the "
--[no-]rerere-autoupdate
" option.See commit cb54fc9 (03 Aug 2022), and commit 0dbc715 (15 Jul 2022) by Junio C Hamano (
gitster
).(Merged by Junio C Hamano --
gitster
-- in commit 3adacc2, 14 Aug 2022)rerere-options
now includes in its man page: