git stash

作者: 想溜了的蜗牛 | 来源:发表于2021-04-30 10:27 被阅读0次
    $ 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 一下。

    相关文章

      网友评论

          本文标题:git stash

          本文链接:https://www.haomeiwen.com/subject/gcywrltx.html