I'm merging two branches in git, having a week worth of work each and some of the files were moved or renamed and modified.
Git seems to get the stuff completely wrong in some cases and it says file a was moved to file b when in reality they are totally unrelated.
I'm having quite a few such false positives (roughly 25%). I would like to influence the algorithm Git uses to figure out whether a file was moved, renamed or is new.
- I'd like to assign higher priority to names. (file a was moved from folder foo to folder b) yet git insists that it was renamed to be file b in folder foo - totally unrelated)
- I'd like to bump up the similarity index above which Git considers a file to be rename/move
I know I read somewhere I can do the latter and I hope I can do the former too, but my googling skills are failing me today.