How to get changes from another branch

后端 未结 5 1327
执笔经年
执笔经年 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:48

    You are almost there :)

    All that is left is to

    git checkout featurex
    git merge our-team
    

    This will merge our-team into featurex.

    The above assumes you have already committed/stashed your changes in featurex, if that is not the case you will need to do this first.

提交回复
热议问题