What is the right way to undo a rename in git, like:
git mv file1 file2
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 have done no other changes (that you want to keep) since the last commit, you can do
git reset --hard
The trick I used was to do a git stash to undo all my changes (which includes restoring the mv'd files) and then deleted the stash with git stash drop.
In my case, I moved an entire folder, then realized I should not have.
I really liked @Dave Konopka's answer, but I did not have much success with that approach (maybe my version of GIT (1.8.4)? My files still showed as deleted. I had other changes on the stack that I did not want to lose (unfortunately).
I did have success doing this:
git reset moved_folder
git checkout original_folder
I liked @Kamaraju Kusumanchi's answer. However, I could not properly checkout file1 because it was staged for deletion at that point. So a better answer may be
git reset HEAD file2 file1
git checkout -- file1
rm file2
I actually did the reset in two steps since I was following Kamaraju's suggestion. So the reset might need to be done in two steps. Simply said, resetting just file2 leaves file1 staged for deletion. So both the rename and the deletion need to be unstaged before reverting file1 with a checkout.
Non-cheeky answer:
Check documentation of git mv