是否有一个 git 命令既可以应用存储又可以将其删除?
这是一个命令:
git stash apply
git stash drop
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.
git stash pop
将获取列表中的第一个存储(或您指定的存储),将其应用于您的HEAD
,然后将其从存储列表中删除。