Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个名为develop 的本地分支,并对其进行了一些更改。但是,我现在想将其他开发人员对 remotes/devteam/master 的更改合并到我的本地开发分支中。
我如何最好地做到这一点?
假设您已经为devteam定义了一个远程:
git fetch --all git checkout develop git merge devteam/master