Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 .".

share|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
5  
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

5 Answers

up vote 115 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
share|improve this answer
2  
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
6  
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
38  
this thread just prevented an imminent heart attack. – Mild Fuzz Apr 7 '11 at 11:47
3  
@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 '12 at 20:23
show 1 more comment

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.

share|improve this answer

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 checkout .   # 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.

share|improve this answer
git co is not a command is what I get. – c0d3Junk13 May 8 '12 at 14:43
co is checkout – DanSkeel May 10 '12 at 23:52
sorry, I always setup git alias.co="checkout" so that git co does checkout. – Alex Brown Jun 14 '12 at 22:53

If you end up with none of the above working, you might be able to retrieve data using the suggestion from here: http://www.spinics.net/lists/git/msg62499.html

git prune -n
git cat-file -p <blob #>
share|improve this answer
2  
For those who haven't done a commit yet. THANK YOU. You just saved my ass. – bcoughlan Jan 10 at 22:48

To regain some single files or folders one may use the following

git reset -- path/to/file
git checkout -- path/to/file

This will first recreate the index entries for path/to/file and recreate the file as it was in the last commit, i.e.HEAD.

Hint: one may pass a commit hash to both commands to recreate files from an older commit. See git reset --help and git checkout --help for details.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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