48

是否有一个 git 命令既可以应用存储又可以将其删除?

这是一个命令:

git stash apply
git stash drop
4

2 回答 2

78

你要git stash pop

pop [--index] [-q|--quiet] [<stash>]
       Remove a single stashed state from the stash list and apply it on
       top of the current working tree state, i.e., do the inverse
       operation of git stash save. The working directory must match the
       index.
于 2013-02-08T17:54:30.703 回答
21

git stash pop将获取列表中的第一个存储(或您指定的存储),将其应用于您的HEAD,然后将其从存储列表中删除。

于 2013-02-08T17:54:21.080 回答