Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
今天早上,在从一个分支快速移动到另一个分支时,我不得不隐藏我的更改。匆忙中,我发了一个
git stash clear
——因为我的藏匿清单相当长。在我清除的藏匿处列表中有一些我需要恢复的工作。有没有办法恢复它?有问题的存储是使用以下方法保存的:
git stash save "my notes here"
不确定这是否真的有帮助。有希望吗?
由于任何存储都类似于提交,但处理方式不同,您会在 reflog 中找到它们。您可以通过 访问 reflog git reflog,您可以在其中获得最近创建的所有提交对象的列表。
git reflog