Is it possible to undo the changes caused by the following:
git reset --hard HEAD~1
?
If so, how?
Thanks.
|
Is it possible to undo the changes caused by the following:
? If so, how? Thanks.
| ||||
|
feedback
|
|
Pat Notz is correct. You can get the commit back so long as it's been within a few days. git only garbage collects after about a month or so unless you explicitly tell it to remove newer blobs.
You can see in the example that the file2 was removed as a result of the hard reset, but was put back in place when I reset via the reflog. | |||||||||||||||||||||
feedback
|
|
What you want to do is to specify the sha1 of the commit you want to restore to. You can get the sha1 by examining the reflog (
But don't wait too long... after a few weeks git will eventually see that commit as unreferenced and delete all the blobs. | |||||||||||||||||||
feedback
|
|
It is possible to recover it if Git hasn't garbage collected yet. Get an overview of dangling commits with fsck:
Recover the dangling commit with rebase:
| |||
|
feedback
|
|
I have written a complete guide to recovering any lost commit with git. It even has illustrations :-) | |||
|
feedback
|
|
If you have not yet garbage collected your repository (e.g. using You can try to find your commit by looking through the output of Newer versions of Git have something called the "reflog", which is a log of all changes that are made to the refs (as opposed to changes that are made to the repository contents). So, for example, every time you switch your HEAD (i.e. every time you do a It took me a while to understand what the difference is between HEAD@{1} and HEAD~1, so here is a little explanation:
So, That will easily allow you to find your lost commit and recover it. | |||||
feedback
|
|
The answer is hidden in the detailed response above, you can simply do:
(See the output of git reflog show) | |||
|
feedback
|
|
If you had it pushed to another repo, then you might be able to get it back. (I use hg, so terminology might be wrong). | |||
|
feedback
|
|
If you're really lucky, like I was, you can go back into your text editor and hit 'undo'. I know that's not really a proper answer, but it saved me half a day's work so hopefully it'll do the same for someone else! | |||
feedback
|
|
From the Git documentation:
So yea, sorry bud. Using --hard is generally not what you want to do unless you WANT to lose any and all changes. I've found that generally I want to use --mixed, leaving the working files around. | |||
|
feedback
|