Disable Git Rename Detection
Update Sept. 2021:
The 2016 option mentioned below is now obsolete, and replaced by the new merge strategy ORT ("Ostensibly Recursive's Twin"), which does a much better job handling rename detection.
The primary difference noticable here is that the updating of the working tree and index is not done simultaneously with the merge algorithm, but is a separate post-processing step.
The new API is designed so that one can do repeated merges (e.g. during a rebase or cherry-pick) and only update the index and working tree one time at the end instead of updating it with every intermediate result.
Also, one can perform a merge between two branches, neither of which match the index or the working tree, without clobbering the index or working tree.
The "ort" backend does the complete merge inmemory, and only updates the index and working copy as a post-processing step.
Starting with Git 2.34 (Q4 2021), this will be the default.
In the meantime:
git merge -s ort MyBranch-to-merge
^^^^^^
2016:
With git 2.8 (March 2016), you will have another option (as an option to the recursive merge strategy)
git merge -Srecursive -Xno-renames
See commit 44c74ec, commit 2307211, commit 63651e1 (24 Feb 2016), commit 2307211, commit 63651e1 (24 Feb 2016), commit 87892f6, commit 83837ec (21 Feb 2016), and commit 1b47ad1, commit d2b11ec (17 Feb 2016) by Felipe Gonçalves Assis (asiz
).
(Merged by Junio C Hamano -- gitster
-- in commit 4ce064d, 26 Feb 2016)
merge-recursive
: option to disable renamesThe recursive strategy turns on rename detection by default.
Add a strategy option to disable rename detection even for exact renames.
The man git-merge
will include:
no-renames
Turn off rename detection.
Seegit diff --no-renames
.
(Note, as seen in commit 1b47ad1, the find-renames
merge strategy, following git diff
interface, makes the option rename-threshold
redundant starting with git 2.8)
You have an additional setting with Git 2.18 (Q2 2018): with the merge.renames
configuration set to false, the recursive merge strategy can be told not to spend cycles trying to find renamed paths and merge them accordingly.
See commit 6f10a09, commit 85b4603, commit a7152e9 (02 May 2018) by Ben Peart (benpeart
).
(Merged by Junio C Hamano -- gitster
-- in commit 6e2ba77, 30 May 2018)
merge
: addmerge.renames
config settingAdd the ability to control rename detection for merge via a config setting.
This setting behaves the same and defaults to the value ofdiff.renames
but only applies to merge.
Can you try with:
git merge -s resolve branch_A
Also, have you tried looking at similar questions here:
git rename/delete confusion
git divergent renaming