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我通常不记得一段时间后我保存了什么,而当git stash list输出没有帮助时。 有没有办法查看每个隐藏条目的实际内容?就像我们做的那样git show?
git stash
git stash list
git show
git stash show -p [<stash>]
将显示存储的差异。