I have a file foo.txt
which I want to delete, and another, bar.txt
, that I wish to add. If these two files have more than 50% content that is the same, Git will consider that foo.txt
is being renamed to bar.txt
. How can I make Git really see this as an individual remove, with an individual add, in the same commit, without changing the global threshold detection %.
Thanks!