How can I selectively merge or pick changes from another branch in Git?

前端 未结 25 1611
慢半拍i
慢半拍i 2020-11-22 02:53

I\'m using Git on a new project that has two parallel -- but currently experimental -- development branches:

  • master: import of existing codebase pl
25条回答
  •  -上瘾入骨i
    2020-11-22 03:25

    I had the exact same problem as mentioned by you above. But I found this Git blog clearer in explaining the answer.

    Command from the above link:

    # You are in the branch you want to merge to
    git checkout  
    

提交回复
热议问题