I lost my last commit because I accidentally ran "git reset --hard HEAD^". Note: I didn't want to put the "^" at the end.
Is there any way to get it back? It was 2 days of work :(
|
I lost my last commit because I accidentally ran "git reset --hard HEAD^". Note: I didn't want to put the "^" at the end. Is there any way to get it back? It was 2 days of work :( |
||||
|
I think that this article is what you are looking for. According to the article, your commit is "gone," but not garbage collected - sort of like the recycle bin in Windows. You run |
||||
|
|
git makes it really easy to go back to a prior state and works very hard to prevent you from losing any data you've committed. It's this reason you should commit often. I've got a command For the most recent state (i.e. your exact case), just do You can do a time-based reset: Otherwise, browse the |
|||||||
|
|
If you know the commit ID (e.g. scroll back on your terminal or use
Where 61567de5d9 are the first digits of the latest (lost) commit. |
|||
|
|
git gcby default do not remove unlinked commits if they are in reflog up to 30 days in the case of unreferenced commits (by default). – Jakub NarÄ™bski Feb 28 '10 at 14:56