How to get changes from another branch

后端 未结 5 1375
执笔经年
执笔经年 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 21:03

    git fetch origin our-team
    

    or

    git pull origin our-team
    

    but first you should make sure that you already on the branch you want to update to (featurex).

提交回复
热议问题