I accidentely said "git rm -r .". How do I recover from this?

I did not commit.

I think all files were marked for deletion and were also physically removed from my lcoal checkout.

EDIT: I could (if I knew the command) revert to the last commit. But it would be a lot better if I could just undo the "git rm -r .". Because I am not really sure what I did after the last commit and before the "git rm -r .".

link|improve this question

2  
For this particular question, reset --hard is a good solution...it's already listed so I'll just mention in this comment that you might want to check the documentation for git-reflog. – William Pursell Jan 24 '10 at 5:42
2  
Note that because you didn't supply -f to git rm git won't have removed any files that had staged or unstaged changes so a git reset; git checkout . should recover everything. – Charles Bailey Jan 24 '10 at 8:47
Just watch out - git checkout . will wipe out all unstaged changes. – PeterB Oct 11 '11 at 15:30
feedback

3 Answers

up vote 49 down vote accepted
git reset HEAD

Should do it. If you don't have any uncommitted changes that you care about, then

git reset --hard HEAD

should forcibly reset everything to your last commit. If you do have uncommitted changes, but the first command doesn't work, then save your uncommitted changes with git stash:

git stash
git reset --hard HEAD
git stash pop
link|improve this answer
Thank you. I was able to get back a huge amount of files with "git reset --hard HEAD" - looks good. – user89021 Jan 24 '10 at 3:14
4  
Note that git reset --hard HEAD destroys any useful changes you have made in parent directories of the current working directory. – Alex Brown Feb 5 '10 at 14:41
12  
this thread just prevented an imminent heart attack. – Mild Fuzz Apr 7 '11 at 11:47
1  
@Mild: I'm still wearing a cold sweat! – hoipolloi Aug 4 '11 at 21:00
I didn't down vote, but I just tried stash, reset hard, pop and lost all of my recent changes. Maybe I misread the answer. – Greg Krsak Feb 11 at 20:23
feedback

I git-rm'd a few files and went on making changes before my next commit when I realized I needed some of those files back. Rather that stash and reset, you can simply checkout the individual files you miss, if you want:

git checkout HEAD path/to/file path/to/another_file

This leaves your other uncommitted changes intact with no workarounds.

link|improve this answer
feedback

Update:

Since git rm . deletes all files in this and child directories in the working checkout as well as in the index, you need to undo each of these changes:

git reset HEAD . # This undoes the index changes
git co . # This checks out files in this and child directories from the HEAD

This should do what you want. It does not affect parent folders of your checked-out code or index.


Old answer that wasn't:

reset HEAD

will do the trick, and will not erase any uncommitted changes you have made to your files.

after that you need to repeat any git add commands you had queued up.

link|improve this answer
git co is not a command is what I get. – c0d3Junk13 May 8 at 14:43
co is checkout – Danich May 10 at 23:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.