Questions about renaming files in Git have been asked before, but I can\'t work out a solution to my specific problem.
I have moved and edited multiple files (I didn
git diff was not picking up that I'd renamed files and altered their contents. My scenario was I had files A, B, C, and inserted a new B, so old B was now C, and old C was now D. git diff was telling me B and C were now completely different!
The solution I used was tedious and manual, but did get the job done.
git mv to name the files back to their new names. B to C, C to D.