search

Home  >  Q&A  >  body text

git 为某次提交新建分支(只合并某次提交到一个分支上)

情况是这样的。我在develop分支上提交了一个更改,但是我想把这个更改同时合并到master分支上。我又不想把整个develop分支都合并上master上面。我用的sourcetree,该怎么操作?
正确的做法我知道应该新建一个hotfix。然后同时推到dev和master。

仅有的幸福仅有的幸福2827 days ago782

reply all(2)I'll reply

  • phpcn_u1582

    phpcn_u15822017-05-02 09:23:05

    shellgit checkout master
    git cherry-pick commit-id1 commit-id2  // 把指定commit合并到当前分支
    

    Sourcetree has not been used before, you can try to click on it遴选 (Probably the translation of cherry-pick...)

    reply
    0
  • ringa_lee

    ringa_lee2017-05-02 09:23:05

    php//用命令行
    git checkout master
    git checkout develop test.txt//develop分支下的test.txt
    git commit -am "a commit"
    git push origin master
    
    

    reply
    0
  • Cancelreply