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.
我的代码在团队 git repo 的一个分支中。现在我需要将它“转移”(即推送)到团队成员正在使用的同一仓库的另一个分支中。我怎样才能做到这一点 ?
我更喜欢使用 git bash。
PS - 我必须转移到的新分支不是"master"。
转到目标分支 ( git checkout target) 并合并包含代码的分支 ( git merge code-having)。然后,如果需要,将更新的目标分支推送到其远程。
git checkout target
git merge code-having