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?
|
|
No. Those files are gone. (Just checked on Linux: git clean calls |
|||
|
|
|
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. |
|||||
|
|
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. |
|||
|
|
Will do a dry run, and show you what files would be deleted if you ran
(of course this is only helpful if you know this ahead of time, but for next time) |
|||
|
|
|
If you are using git with MSBuild I created a target that copies all the files and then does |
|||
|
|