8 ms·
git actually does this. `git diff --find-copies`
by tlb 3mo ago
git actually does this. `git diff --find-copies`
- Pet_Ant 3mo agoIf I run blame on the new file the will I see the commits made by the original writers? Will it find the same code if it was written independently? It’s not about find copies it about recording changes to a code base as an artifact and not to files. The closest git has is limited rename support.
- tlb 3mo agoYes, if you run `git blame -C`.
- WolfeReader 3mo agoI legit did not know this. Thanks!