How to get changes from another branch

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

    For other people coming upon this post on google. There are 2 options, either merging or rebasing your branch. Both works differently, but have similar outcomes.

    The accepted answer is a rebase. This will take all the commits done to our-team and then apply the commits done to featurex, prompting you to merge them as needed.

    One bit caveat of rebasing is that you lose/rewrite your branch history, essentially telling git that your branch did not began at commit 123abc but at commit 456cde. This will cause problems for other people working on the branch, and some remote tools will complain about it. If you are sure about what you are doing though, that's what the --force flag is for.

    What other posters are suggesting is a merge. This will take the featurex branch, with whatever state it has and try to merge it with the current state of our-team, prompting you to do one, big, merge commit and fix all the merge errors before pushing to our-team. The difference is that you are applying your featurex commits before the our-team new commits and then fixing the differences. You also do not rewrite history, instead adding one commit to it instead of rewriting those that came before.

    Both options are valid and can work in tandem. What is usually (by that I mean, if you are using widespread tools and methodology such as git-flow) done for a feature branch is to merge it into the main branch, often going through a merge-request, and solve all the conflicts that arise into one (or multiple) merge commits.

    Rebasing is an interesting option, that may help you fix your branch before eventually going through a merge, and ease the pain of having to do one big merge commit.

    0 讨论(0)
  • 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.

    0 讨论(0)
  • 2021-01-29 20:54
    1. go to the master branch our-team

      • git checkout our-team
    2. pull all the new changes from our-team branch

      • git pull
    3. go to your branch featurex

      • git checkout featurex
    4. merge the changes of our-team branch into featurex branch

      • git merge our-team
      • or git cherry-pick {commit-hash} if you want to merge specific commits
    5. push your changes with the changes of our-team branch

      • git push

    Note: probably you will have to fix conflicts after merging our-team branch into featurex branch before pushing

    0 讨论(0)
  • 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.

    0 讨论(0)
  • 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).

    0 讨论(0)
提交回复
热议问题