I frequently use "git stash" and "git stash pop" to save and restore changes in my working tree. Yesterday I had some changes in my working tree that I had stashed and popped, and then I made more changes to my working tree. I'd like to go back and review yesterday's stashed changes, but "git stash pop" appears to remove all references to the associated commit.

I know that if I use "git stash" then .git/refs/stash contains the reference of the commit used to create the stash. And .git/logs/refs/stash contains the whole stash. But those references are gone after "git stash pop". I know that the commit is still in my repository somewhere, but I don't know what it was.

Is there an easy way to recover yesterday's stash commit reference?

Note that this isn't critical for me today because I have daily backups and can go back to yesterday's working tree to get my changes. I'm asking because there must be an easier way!

link|improve this question

feedback

8 Answers

up vote 186 down vote accepted

If you have only just popped it and the terminal is still open, you should be able to see the hash value when you popped it (thanks Dolda!).

Otherwise, you can try this:

git fsck --no-reflog | awk '/dangling commit/ {print $3}'

It’s much faster than passing --unreachable, though it doesn’t show you all the unreachable commits, only the tips of the tree.   [The --no-reflog switch is available since 1.5.2. Without it, you’ll miss any commits you worked on only recently, although that doesn’t matter for recovering stashes.]

The easiest way to then get at your commit is to pass that list to gitk:

gitk --all $( git fsck --no-reflog | awk '/dangling commit/ {print $3}' )

This will launch a repo browser showing every single commit in the repository ever, regardless of whether it is reachable or not. From there you can use the context menu to create a branch for the unreachable commits you are interested in. After that you can do whatever you want with them with all the normal tools.

Most likely, as said Wade's post, you'll want to apply the stash with:

git stash apply <stash's SHA1>

When you’re done, just blow those branches away again.

link|improve this answer
3  
Wow, this is fantastic - totally saved my butt. Thanks! – Scotty Allen Apr 29 '09 at 0:47
5  
Just saved my butt too! Thanks! – Scott Jul 24 '09 at 1:07
5  
You are my hero. I owe you a beer. – docgnome Aug 10 '09 at 16:41
12  
Make that two beers. – docgnome Jan 7 '10 at 17:54
8  
I'm pretty sure this is the best and most useful answer ever posted on SO. – Bill Nov 3 '10 at 20:21
show 13 more comments
feedback

Just wanted to mention this addition to the accepted solution. It wasn't immediately obvious to me the first time I tried this method (maybe it should have been), but to apply the stash from the hash value, just use "git stash apply ":

$ git stash apply ad38abbf76e26c803b27a6079348192d32f52219

When I was new to git, this wasn't clear to me, and I was trying different combinations of "git show", "git apply", "patch", etc.

link|improve this answer
This saved my day after accidentally typing git stash drop instead of git stash pop. – Jörn Horstmann Apr 7 '11 at 13:45
Nice. I just realized that it prints the SHA1 when it drops a stash (i.e., when you pop). – asmeurer May 10 '11 at 4:19
feedback

If you didn't close the terminal, just look at the output from git stash pop and you'll have the object ID of the dropped stash. It normally looks like this:

$ git stash pop
[...]
Dropped refs/stash@{0} (2ca03e22256be97f9e40f08e6d6773c7d41dbfd1)

(Note that git stash drop also produces the same line.)

To get that stash back, just run git branch tmp 2cae03e, and you'll get it as a branch. To convert this to a stash, run:

git stash apply tmp
git stash

Having it as a branch also allows you to manipulate it freely; for example, to cherry-pick it or merge it.

link|improve this answer
This is often the simplest answer and deserves to be higher up the list – Casebash Nov 13 '11 at 22:57
5  
You can also do git stash apply commitid then git stash to get a new stash. – Matthew Flaschen Nov 23 '11 at 20:11
@Dolda2000, Matthew Flaschen God bless You! – jibiel Feb 8 at 16:58
feedback

git fsck --unreachable | grep commit should show the sha1, although the list it returns might be quite large. git show <sha1> will show if it is the commit you want.

git cherry-pick -m 1 <sha1> will merge the commit onto the current branch.

link|improve this answer
Ah, that certainly improves on my method! I have 130 unreachable commits right now so I still needed the last half of my solution. – Greg Hewgill Sep 18 '08 at 2:12
feedback

I just constructed a command that helped me find my lost stash commit:

for ref in `find .git/objects | sed -e 's#.git/objects/##' | grep / | tr -d /`; do if [ `git cat-file -t $ref` = "commit" ]; then git show --summary $ref; fi; done | less

This lists all the objects in the .git/objects tree, locates the ones that are of type commit, then shows a summary of each one. From this point it was just a matter of looking through the commits to find an appropriate "WIP on work: 6a9bb2" ("work" is my branch, 619bb2 is a recent commit).

I note that if I use "git stash apply" instead of "git stash pop" I wouldn't have this problem, and if I use "git stash save message" then the commit might have been easier to find.

Update: With Nathan's idea, this becomes shorter:

for ref in `git fsck --unreachable | grep commit | cut -d' ' -f3`; do git show --summary $ref; done | less
link|improve this answer
Thanks for honing my shell skills again! I was able to find my missing stash with your for loop and git show. – wprater 6 hours ago
feedback

To get the list of stashes that are still in your repository, but not reachable any more

git fsck --unreachable | grep commit | cut -d\  -f3 | xargs git log --merges --no-walk --grep=WIP
link|improve this answer
This one worked great for me — But I had to edit the answer so that the double-space after cut -d is displayed. With a single space, cut doesn't recognize the delimiter. – Sidnicious May 23 '11 at 19:59
feedback

If you want to restash a lost stash, you need to find the hash of your lost stash first.

As Aristotle Pagaltzis suggested a git fsck should help you.

Personally I use my log-all alias which show me every commit (recoverable commits) to have a better view of the situation :

git log --graph --decorate --pretty=oneline --abbrev-commit --all $(git fsck --no-reflogs | grep commit | cut -d\\  -f3)

You can do an even faster search if you're looking only for "WIP on" messages.

Once you know your sha1, you simply change your stash reflog to add the old stash :

git update-ref refs/stash ed6721d

You'll probably prefer to have an associated message so a -m

git update-ref -m $(git log -1 --pretty=format:'%s' ed6721d) refs/stash ed6721d

And you'll even want to use this as an alias :

restash = !git update-ref -m $(git log -1 --pretty=format:'%s' $1) refs/stash $1
link|improve this answer
feedback

Git is probably storing this stuff away in the reflog of your branch. Look in .git/logs for the details.

link|improve this answer
I couldn't find it in the reflog, and popping the stash seems to have done a really good job of cleaning up the .git/logs directory. – Greg Hewgill Sep 18 '08 at 10:25
1  
No it isn't. Yes for a default config on a non-bare repo, all ref updates are logged for branches. However, stashes are not branches (in fact all stashes are kept as a reflog of the 'virtual' branch 'stash'. Verify this by comparing 'git reflog show stash' and 'git stash list'). For this reason there cannot be a reflog per stash – sehe Mar 16 '11 at 19:35
feedback

Your Answer

 
or
required, but never shown

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