$ git stash list
stash@{0}: WIP on develop: fe35b49 工作A
stash@{1}: WIP on stat: 84e1de3 update date time format
stash@{2}: WIP on dev: 89c433 ID replace name
# 下边命令会先应用 stash@{1}
$ git stash apply 1
# 删除某个 stash,不加编号,默认为删除第0条,否则为指定序号
$ git stash drop
$ git stash drop 1
# 弹出最近一
$ git stash pop
当应用 apply
非最近一条,操作会有些繁琐。 因为 apply
后如果这个 stash 不需要再用了,还需要再 drop
一下。
网友评论