How do I merge a branch into a master in github?

后端 未结 1 1728
有刺的猬
有刺的猬 2021-02-01 07:48

I created a repo and github, and pushed my files to it. Then had a colleague create a branch and make changes. I want to merge the branch to master.

What steps do I take

相关标签:
1条回答
  • 2021-02-01 08:42

    Please do following set of commands in order to merge with the master, Assuming that you are in branch testBranch and you want to merge the changes with the master,

    First checkout to master branch,

    git checkout master
    

    Now pull the latest changes in master,

    git pull origin master
    

    Merge with the testBranch

    git merge testBranch
    

    Push the changes to master

    git push origin master
    

    That's it, you are done.

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