How do I merge another developer's branch into mine?

前端 未结 4 1412
轮回少年
轮回少年 2021-01-30 03:11

I am relatively new to git. Our organization uses a Fork & Pull Model for managing changes to the master branch. Each developer forks the master and branches from their fork

4条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-30 03:49

    You can also do "git pull", it'll pull the changes of all the branches.

    git pull

    You can run git merge into your current branch

    git merge origin/

提交回复
热议问题