美文网首页
git stash apply 指定版本

git stash apply 指定版本

作者: 秋叶_leaf | 来源:发表于2019-11-11 10:15 被阅读0次

    如果使用 git stash list 有以下结果:

    stash@{0}: WIP on design: f2c0c72... Adjust Password Recover Email
    stash@{1}: WIP on design: f2c0c72... Adjust Password Recover Email
    stash@{2}: WIP on design: eb65635... Email Adjust
    stash@{3}: WIP on design: eb65635... Email Adjust
    

    如果想应用回指定版本,只需

    git stash apply n
    

    n 为stah list 结果里面的序号 0、1、2、3

    相关文章

      网友评论

          本文标题:git stash apply 指定版本

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