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.
我有一个名为 ABC 的本地分支机构。我想在远程分支开发上添加所有这些更改。我想这是通过合并完成的。我一直在搜索并发现如何将我的分支推送到原点,但是如何将它合并到我已经存在的远程分支之上?
我假设调用了远程分支develop并且您没有任何其他develop分支:
develop
git checkout develop git merge ABC # probably resolve conflicts and git commit git push