I moved a .js file from one folder to another manually. Now, although GIT seems to have the complete history log for the file, it still seems to treat the move as a delete/create event. Further, using git BLAME, I cannot go back to track changes beyond the point that I moved the file.
It's been a month or so and many commits since, but I would love to be able to "repair" that history so that GIT treats the entire commit history as the same file, without the cutoff point at the move.. and I would be able to step back using blame to track changes.
Can anyone help with this?
-M
and-C
flags togit blame
? – Benzofuran