On Tue, Dec 16, 2008 at 03:07:28PM +0300, Alexander Gladysh wrote: > I've stashed some valuable changes and then I accidentally did git > stash clear. (Yes, today is not my day). > > Is it possible to restore stashed changes? Try git-fsck; it should report some dangling commits (i.e., commits that are in the object db but aren't reachable by any refs). Then you can either pull the changes out directly (try git cherry-pick -m1 $sha1) or you can even restore it as a stash (git update-ref -m oops refs/stash $sha1). -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html