I am aware that the default rename limit is 100 and we can increase this value using the config diff.renamelimit config
What I am worried about is that, if this config is not setup, will there be a wrong merge or any missing code? I am trying to merge (git merge) 2 branches that have huge changes.
Can someone throw more light about this config setting?
Your content is safe.
As I understand it,
git
doesn't actually have any concept of a first-classrename
operation (onlybzr
does, of the big 3 DVCSs): themv
is sugar on top of the underlying machinery, which is basically anadd
and arm
. Sincegit
can track the content that changes during such operations, though, it can use heuristics to guess when anadd
and arm
are actually amv
. Since that takes way more work than just displaying whatgit
actually recorded—the docs forgit-diff
explain that it "...require O(n^2) processing time where n is the number of potential rename/copy targets"—git
won't try it when too many files are involved. The setting you mention just controls that threshold.