美文网首页
Git 命令 cherry-pick

Git 命令 cherry-pick

作者: RoyChina | 来源:发表于2019-07-10 22:25 被阅读0次
    // 现有分支
    
                                H---I---J topicB
                               /
                      E---F---G  topicA
                     /
        A---B---C---D  master
    
    // 使用 cherry-pick
    
    git checkout master
    git cherry-pick F G I J
    
    // 得到
    
                                H---I---J topicB
                               /
                      E---F---G  topicA
                     /
        A---B---C---D---F'---G'---I'---J'  master
    
    

    相关文章

      网友评论

          本文标题:Git 命令 cherry-pick

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