snippetbashTip
git rerere — Reuse fixes for merge conflicts. More information: <https://git-scm.com/docs/git-rerere>.
Viewed 0 times
fixescommandreuseconflictscligit rereremergefor
Problem
How to use the
git rerere command: Reuse fixes for merge conflicts. More information: <https://git-scm.com/docs/git-rerere>.Solution
git rerere — Reuse fixes for merge conflicts. More information: <https://git-scm.com/docs/git-rerere>.Enable rerere globally:
git config --global rerere.enabled trueForget a file's recorded resolution:
git rerere forget {{path/to/file}}Check the status of recorded resolutions:
git rerere statusCode Snippets
Enable rerere globally
git config --global rerere.enabled trueForget a file's recorded resolution
git rerere forget {{path/to/file}}Check the status of recorded resolutions
git rerere statusContext
tldr-pages: common/git rerere
Revisions (0)
No revisions yet.