Undo git reset --hard after git stash pop

蓝咒 提交于 2019-12-10 16:24:45

问题


I had some changes in the stash that I attempted to recover using git stash pop. There were some merge conflicts, and rather than resolving them, I decided to just reset it. Unfortunately, in a moment of stupidity, I did a git reset --hard, and now all of the previously stashed changes are gone.

Is there any way to recover these changes? I've tried git fsck --cache --no-reflogs --lost-found --unreachable HEAD, but none of the commit hashes listed refer to the changes I need. What else can I do? or did I just lose all of that work?


回答1:


Just after posting this, I thought to check .git/refs/stash, which I thought would be blank after the pop. However, likely due to the merge conflict, it still had the hash from the stash I had tried to pop!

I did a git stash apply with the hash and a git reset to resolve the merge conflicts the lazy way.

Sorry if this was a git-noob question and answer. Hopefully this helps someone else.




回答2:


git help stash :

Applying the state can fail with conflicts; in this case, it is not removed from the stash list. You need to resolve the conflicts by hand and call git stash drop manually afterwards.

so the stash you though has gone is still in your stash list, just git stash list to find it.



来源:https://stackoverflow.com/questions/27431440/undo-git-reset-hard-after-git-stash-pop

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!