是否有一个git命令都应用存储并删除它?
这是一个命令:
git stash apply
git stash drop
Run Code Online (Sandbox Code Playgroud)
Ada*_*ght 56
你想要的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.
Run Code Online (Sandbox Code Playgroud)