标签: git git-stash
我能够stash一系列更改 做git stash save --patch name ,当我git stash list时列出。
stash
git stash save --patch name
git stash list
现在如何使用名称来引用此存储?
答案 0 :(得分:1)
使用常见的reflog语法(如stash@{0}等)命名Stashes,这就是您在git stash list中看到的内容。没有将名称传递给藏匿的概念。你可能正在谈论藏匿消息(你也可以在git stash list中看到)并且你不能使用它的消息来引用存储(当然)
stash@{0}