How to merge branch to master?

77,712

Solution 1

If you want to merge your branch to master on remote, follow the below steps:

  1. push your branch say 'br-1' to remote using git push origin br-1.
  2. switch to master branch on your local repository using git checkout master.
  3. update local master with remote master using git pull origin master.
  4. merge br-1 into local master using git merge br-1. This may give you conflicts which need to be resolved and changes committed before moving further.
  5. Once merge of br-1 to master on local is committed, push local master to remote master using git push origin master.

Solution 2

To merge branch with master,there are two ways you can proceed

  • By Git commands
  • By Github Dashboard

Git Commands

Here also you can go with two different commands,first is

  • checkout to your master branch using git checkout master
  • pull your latest code from the branch you want to merge,use git pull --rebase origin branch_name. It may give you some conflicts which you can resolve by using git status,after resolving you can check if any conflict is more there or not by using git rebase --continue.

Second way

  • To master you can cherrypick the commits from the branch you want to merge git cherry-pick <commit id>.If you are getting conflict use git cherry-pick --continue.

Actually this is the more suggested way you can proceed.

Merge branch using GitHub Dashboard

This is most easiest way to merge. Create new pull request, select the branch you want to merge and resolve the conflicts.

Share:
77,712
k.vincent
Author by

k.vincent

Updated on December 12, 2021

Comments

  • k.vincent
    k.vincent over 2 years

    I do have a local branch with some changes, and I want to merge it to remote master. When I run: git merge master I get:

    Already up-to-date

    but I still can see that the master doesn't contain the new changes.

    I checked the following issue Git merge reports “Already up-to-date” though there is a difference Ask, but it seems in one hand to be outdated, and on the other hand, none of the hints there were helpful.

    Any idea or hint?