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

前端 未结 25 1940
慢半拍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条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-22 03:21

    When only a few files have changed between the current commits of the two branches, I manually merge the changes by going through the different files.

    git difftool ..

    see also https://sites.google.com/site/icusite/setup/git-difftool

提交回复
热议问题