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

I was following the instructions on making github pages, and forgot to move down into my git sub directory. As a result, I just nuked an entire directory of documents with git clean -fdx. Is there any way I can undo this terrible mistake?

share|improve this question
2  
I don't know for sure, but I don't think it's possible with git. However an undelete utility for your filesystem might do the trick. – static_rtti Jun 7 '11 at 15:02

5 Answers

up vote 17 down vote accepted

No. Those files are gone.

(Just checked on Linux: git clean calls unlink(), and does not backup up anything beforehand.)

share|improve this answer

No. "git clean -fdx" will delete all files and directories that git does not track from your working-directory. Because Git does not track these files, it won't have any backups of these files. At least not usually.

If you have done a 'git add' on one of these files relatively recently (but aborted the commit), there is a chance you can find it with 'git fsck --lost-found'. It's worth a try, but don't get your hopes up too much.

In the future you should consider rather committing a few times too often than a few times too seldom. That way you'll at least have a local backup, even if you don't end up pushing these commits to a remote.

share|improve this answer
The real problem was the directory was not supposed to be a repository as well. Looking back at the log, turns out I forgot to cd to the new repo directory after mkdir-ing it – Eric Jun 7 '11 at 15:07
Shortly after reading this question, I wrote a patch to Git that adds a configuration variable to back-up each deleted file. Perhaps it could be useful for others? github.com/kusma/git/tree/work/clean-backup – kusma Feb 19 at 15:37

I had this problem today.

As others have said, git doesn't keep the files.

The only way to undo this is with an undelete utility. I used "extundelete" and recovered everything, but your mileage/filesystem may vary.

share|improve this answer
git clean -fdxn

Will do a dry run, and show you what files would be deleted if you ran

git clean -fdx

(of course this is only helpful if you know this ahead of time, but for next time)

share|improve this answer

If you are using git with MSBuild I created a target that copies all the files and then does git clean -xdf. This way you can easily restore the file if you realize that you deleted something you did not want to delete. Take a look here: http://blog.3d-logic.com/2012/11/04/safe-git-clean-with-msbuild/

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.