I am trying to recover my work. I stupidly did git reset --hard, but before that I've done only get add . and didn't do git commit. Please help! Here is my log:

MacBookPro:api user$ git status
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)

#   modified:   .gitignore
...


MacBookPro:api user$ git reset --hard
HEAD is now at ff546fa added new strucuture for api

Is it possible to undo git reset --hard in this situation?

link|improve this question

50% accept rate
It seems somewhat strange to accept the answer that says "you can't get your work back" instead of the one that says "here's how you can get your work back" ;) – Mark Longair Sep 13 '11 at 5:45
feedback

2 Answers

up vote 5 down vote accepted

Erm... no you cannot get the index back from before a reset --hard. You can only get back what has been commited/stashed and not been expired from the reflogs yet

link|improve this answer
Too bad :-( I have lost like half day of work... Damn! I guess I need to take a break! – eistrati Sep 10 '11 at 19:43
@eistrati: and to commit more often (micro commit, then rebase to squash them when done) and to remember to stop using git reset --hard :) If you must, prefer git stash before doing the reset. That way you can git stash pop it back. I know what it feels like. We've all been there. One time... – sehe Sep 10 '11 at 20:09
The relevant quote from the man page: "Any changes to tracked files in the working tree since <commit> are lost." – Jefromi Sep 10 '11 at 21:49
@Jefromi: but if the files have been added to the index, then the blobs will have been added to the object database - see my answer for an example of how to recover them. – Mark Longair Sep 11 '11 at 8:03
feedback

You should be able to recover any files back that you added to the index (e.g, as in your situation, with git add .) although it might be a bit of work. In order to add a file to the index, git adds it to the object database, which means it can be recovered so long as garbage collection hasn't happened yet. There's an example of how to do this given in Jakub Narębski's answer here:

However, I tried that out on a test repository, and there were a couple of problems - --cached should be --cache, and I found that it didn't actually create the .git/lost-found directory. However, the following steps worked for me:

git fsck --cache --unreachable $(git for-each-ref --format="%(objectname)")

That should output all objects in the object database that aren't reachable by any ref, in the index, or via the reflog. The output will look something like this:

unreachable blob 907b308167f0880fb2a5c0e1614bb0c7620f9dc3
unreachable blob 72663d3adcf67548b9e0f0b2eeef62bce3d53e03

... and for each of those blobs, you can do:

git show 907b308

To output the contents of the file.


Too much output?

Update in response to sehe's comment below:

If you find that you have many commits and trees listed in the output from that command, you may want to remove from the output any objects which are referenced from unreferenced commits. (Typically you can get back to these commits via the reflog anyway - we're just interested in objects that have been added to the index but can never be found via a commit.)

First, save the output of the command, with:

git fsck --cache --unreachable $(git for-each-ref --format="%(objectname)") > all

Now the object names of those unreachable commits can be found with:

egrep commit all | cut -d ' ' -f 3

So you can find just the trees and objects that have been added to the index, but not committed at any point, with:

git fsck --cache --unreachable $(git for-each-ref --format="%(objectname)") \
  $(egrep commit all | cut -d ' ' -f 3)

That enormously cuts down the number of objects you'll have to consider.


Update: Philip Oakley below suggests another way of cutting down the number of objects to consider, which is to just consider the most recently modified files under .git/objects. You can find these with:

find .git/objects/ -type f -printf '%TY-%Tm-%Td %TT %p\n' | sort

(I found that find invocation here.) The end of that list might look like:

2011-08-22 11:43:43.0234896770 .git/objects/b2/1700b09c0bc0fc848f67dd751a9e4ea5b4133b
2011-09-13 07:36:37.5868133260 .git/objects/de/629830603289ef159268f443da79968360913a

In which case you can see those objects with:

git show b21700b09c0bc0fc848f67dd751a9e4ea5b4133b
git show de629830603289ef159268f443da79968360913a

(Note that you have to remove the / at the end of the path to get the object name.)

link|improve this answer
before I posted my answer I considered including exactly these steps. However, on trying this with one of my local repos, I got hundreds of unreachables, and I couldn't come up an adequate approach to, say, sort them by date submitted. Now that would be awesome – sehe Sep 11 '11 at 10:25
@sehe: I've updated my answer suggesting how to cut down the number of objects that are output. On an existing repository I tried this on, the output was then quite manageable. – Mark Longair Sep 11 '11 at 12:50
+1 for some potentially useful refinements to my own usual procedures there! – sehe Sep 11 '11 at 15:47
Isn't it possible to have a look at the object time stamps for the most recent objects that are later than your last commit? or am I missing something. – Philip Oakley Sep 12 '11 at 19:22
@Philip Oakley: thanks for that suggestion, I've added the suggestion to find the most recently modified objects in the object database. – Mark Longair Sep 13 '11 at 5:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.