gpt4 book ai didi

git - merge Git 存储库中的两个远程分支

转载 作者:IT王子 更新时间:2023-10-29 01:16:43 28 4
gpt4 key购买 nike

我有一个包含许多分支的远程仓库。例如,我的存储库名称是:

http://navis.com/MyRepo.git

它的分支是:

development
production (master)
testing

我想将 development 分支 merge 到 production (master) 分支中。谁能分享一个 Git 命令来 merge 两个远程分支?

最佳答案

如果您在本地设置了远程跟踪分支,它就像这样简单:

git checkout production
git merge development
git push origin production

如果你还没有设置远程跟踪分支,你可以这样做:

git fetch origin
git checkout production # or `git checkout -b production origin/production` if you haven't set up production branch locally
git merge origin/development
git push origin production

关于git - merge Git 存储库中的两个远程分支,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28163022/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com