I experienced the following situation:
I ran into a conflict during a merge with git rerere enabled
.
I fixed the conflicting file, but other non-conflicting files had to be adjusted, too.
All touched files were added and committed. git rerere
stated that it has recorded the resolution.
A later git pull --rebase=preserve
repeated the merge conflicts and git rerere came to the rescue.
However, only the part of the resolution in the conflicting files was applied, the changes in the other files were not.
A quick glance in the rr-cache indicates that those other changes have not been recorded.
Is git rerere only recording changes in the directly conflicting files and nothing else?
Is there an option to record all changes done in the resolving commit, not only the conflicting file?