How to get changes from another branch

后端 未结 5 1326
执笔经年
执笔经年 2021-01-29 20:20

I am currently working on featurex branch. Our master branch is named branch our-team. Since I started working on featurex, more changes h

5条回答
  •  情话喂你
    2021-01-29 20:55

    You can use rebase, for instance, git rebase our-team when you are on your branch featurex

    It will move the start point of the branch at the end of your our-team branch, merging all changes in your featurex branch.

提交回复
热议问题