What is the right way to undo a rename in git, like:
git mv file1 file2
|
Non-cheeky answer:
|
|||||
|
|
It depends on what you want to accomplish. If you want it to appear as if the file was never moved, then you can reset (or rebase) back to before the move. If you don't care about the history, then just move it back. |
|||||
|
|
If you've accidentally renamed a large number of files and want to get back to where you started, delete all the renamed files that show up as Once you delete all the changed files you can run |
|||
|
|
|
If you have done no other changes since last commit that you do want to keep you can do
|
|||
|
|
git mv file2 file1– CanSpice Feb 4 '11 at 20:50