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

Is it possible to undo the changes caused by the following:

git reset --hard HEAD~1

?

If so, how?

Thanks.

share|improve this question
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). – Matthew Schinckel Aug 8 '08 at 6:36

9 Answers

up vote 424 down vote accepted

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.

$ git init
Initialized empty Git repository in .git/

$ echo "testing reset" > file1
$ git add file1
$ git commit -m 'added file1'
Created initial commit 1a75c1d: added file1
 1 files changed, 1 insertions(+), 0 deletions(-)
 create mode 100644 file1

$ echo "added new file" > file2
$ git add file2
$ git commit -m 'added file2'
Created commit f6e5064: added file2
 1 files changed, 1 insertions(+), 0 deletions(-)
 create mode 100644 file2

$ git reset --hard HEAD^
HEAD is now at 1a75c1d... added file1

$ cat file2
cat: file2: No such file or directory

$ git reflog
1a75c1d... HEAD@{0}: reset --hard HEAD^: updating HEAD
f6e5064... HEAD@{1}: commit: added file2

$ git reset --hard f6e5064
HEAD is now at f6e5064... added file2

$ cat file2
added new file

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.

share|improve this answer
2  
I've removed the prompt string to improve readability. Fill free to rollback. – J.F. Sebastian Jan 29 '09 at 5:36
62  
You can use "git reset --hard HEAD@{1}", no need for using SHA1. In most cases it should be enough to use "git reset --hard ORIG_HEAD". – Jakub Narębski May 21 '09 at 6:17
13  
Omg I just about died when I realized what I'd done. You, my friend, are amazing. – Stefan Mai May 31 '09 at 5:11
11  
git log -g can be a little bit nicer way to view the reflog than git reflog. – Dan Moulding Oct 28 '10 at 13:09
6  
There's one very important caveat with this.. and thats the "--hard" part. --hard blows away your local uncommitted changes. And you cant get them back like this (as they've not been committed anywhere). I believe there is nothing you can do about that :( – Michael Anderson Aug 4 '11 at 5:05
show 14 more comments

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 (git reflog) and then doing

git reset --hard <sha1 of desired commit>

But don't wait too long... after a few weeks git will eventually see that commit as unreferenced and delete all the blobs.

share|improve this answer
28  
This just saved my ass today. – Jass Jan 18 '11 at 14:23
4  
<Insert mandatory w00t here> – Joe D'Andrea Mar 10 '11 at 21:04
5  
this will save my ass in the future :) – Tommaso Barbugli Dec 14 '11 at 14:22
3  
w00t! I join the saved ass parade ! – Sridhar Jagannathan Jan 9 '12 at 8:13
1  
Too bad! Took too long to read this and get my ass saved. =/ – Vinicius Massuchetto Apr 27 '12 at 17:37

I have written a complete guide to recovering any lost commit with git. It even has illustrations :-)

Check it out

share|improve this answer
Like motorcycles and donkeys. Interesting. – ruffin Oct 10 '12 at 13:41
@MitchWheat Link fixed. If edit not visible yet just add www to url manually. – Dan Jan 25 at 18:28

It is possible to recover it if Git hasn't garbage collected yet.

Get an overview of dangling commits with fsck:

   $ git fsck --lost-found
   dangling commit b72e67a9bb3f1fc1b64528bcce031af4f0d6fcbf

Recover the dangling commit with rebase:

$ git rebase b72e67a9bb3f1fc1b64528bcce031af4f0d6fcbf
share|improve this answer
You saved my life today with this, thank you! – lloydphillips Nov 18 '12 at 23:01

The answer is hidden in the detailed response above, you can simply do:

$> git reset --hard HEAD@{1}

(See the output of git reflog show)

share|improve this answer

If you have not yet garbage collected your repository (e.g. using git repack -d or git gc, but note that garbage collection can also happen automatically), then your commit is still there – it's just no longer reachable through the HEAD.

You can try to find your commit by looking through the output of git fsck --lost-found.

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 git checkout to switch branches) that will be logged. And, of course, your git reset also manipulated the HEAD, so it was also logged. You can access older states of your refs in a similar way that you can access older states of your repository, by using an @ sign instead of a ~, like git reset HEAD@{1}.

It took me a while to understand what the difference is between HEAD@{1} and HEAD~1, so here is a little explanation:

git init
git commit --allow-empty -mOne
git commit --allow-empty -mTwo
git checkout -b anotherbranch
git commit --allow-empty -mThree
git checkout master # This changes the HEAD, but not the repository contents
git show HEAD~1 # => One
git show HEAD@{1} # => Three
git reflog

So, HEAD~1 means "go to the commit before the commit that HEAD currently points at", while HEAD@{1} means "go to the commit that HEAD pointed at before it pointed at where it currently points at".

That will easily allow you to find your lost commit and recover it.

share|improve this answer
1  
Another explanation that I think would be clearer: HEAD~1 means go to "parent of HEAD," while HEAD@{1} go to "go back one step in HEAD's history" – kizzx2 Jul 22 '09 at 17:30
The problem is that the term "history" is really overloaded in VCSs. Yet another way to express is would be that ~ goes backwards in commit history, whereas @ goes backwards in chronological or temporal history. But none of the three versions is particularly good. – Jörg W Mittag Jul 22 '09 at 22:02

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!

share|improve this answer
This is actually a very good tip, saved me a lot of times ;) And its way simpler than doing anything in git... – severin May 21 '12 at 15:30
and thank you of all goodness gracious in this entire world. thank you. thank you. thank you. – Trip Aug 14 '12 at 18:12

Example of IRL case:

$ git fsck --lost-found

Checking object directories: 100% (256/256), done.
Checking objects: 100% (3/3), done.
dangling blob 025cab9725ccc00fbd7202da543f556c146cb119
dangling blob 84e9af799c2f5f08fb50874e5be7fb5cb7aa7c1b
dangling blob 85f4d1a289e094012819d9732f017c7805ee85b4
dangling blob 8f654d1cd425da7389d12c17dd2d88d318496d98
dangling blob 9183b84bbd292dcc238ca546dab896e073432933
dangling blob 1448ee51d0ea16f259371b32a557b60f908d15ee
dangling blob 95372cef6148d980ab1d7539ee6fbb44f5e87e22
dangling blob 9b3bf9fb1ee82c6d6d5ec9149e38fe53d4151fbd
dangling blob 2b21002ca449a9e30dbb87e535fbd4e65bac18f7
dangling blob 2fff2f8e4ea6408ac84a8560477aa00583002e66
dangling blob 333e76340b59a944456b4befd0e007c2e23ab37b
dangling blob b87163c8def315d40721e592f15c2192a33816bb
dangling blob c22aafb90358f6bf22577d1ae077ad89d9eea0a7
dangling blob c6ef78dd64c886e9c9895e2fc4556e69e4fbb133
dangling blob 4a71f9ff8262701171d42559a283c751fea6a201
dangling blob 6b762d368f44ddd441e5b8eae6a7b611335b49a2
dangling blob 724d23914b48443b19eada79c3eb1813c3c67fed
dangling blob 749ffc9a412e7584245af5106e78167b9480a27b
dangling commit f6ce1a403399772d4146d306d5763f3f5715cb5a    <- it's this one

$ git show f6ce1a403399772d4146d306d5763f3f5715cb5a

commit f6ce1a403399772d4146d306d5763f3f5715cb5a
Author: Stian Gudmundsen Høiland <stian@Stians-Mac-mini.local>
Date:   Wed Aug 15 08:41:30 2012 +0200

    *MY COMMIT MESSAGE IS DISPLAYED HERE*

diff --git a/Some.file b/Some.file
new file mode 100644
index 0000000..15baeba
--- /dev/null
+++ b/Some.file
*THE WHOLE COMMIT IS DISPLAYED HERE*

$ git rebase f6ce1a403399772d4146d306d5763f3f5715cb5a

First, rewinding head to replay your work on top of it...
Fast-forwarded master to f6ce1a403399772d4146d306d5763f3f5715cb5a.
share|improve this answer

From the Git documentation:

--mixed

Resets the index but not the working tree (i.e., the changed files are preserved ut not marked for commit) and reports what has not been updated. This is the default ction.

--soft

Does not touch the index file nor the working tree at all, but requires them to be in a good order. This leaves all your changed files "Changes to be committed", as git-status would put it.

--hard

Matches the working tree and index to that of the tree being switched to. Any changes to tracked files in the working tree since are lost.

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.

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.