从远程分支推送到其他远程分支



如果我想将内容从 remote:master 推送到同一个远程但不同的分支,我该怎么做?

有了git push remote.git master:mybranch我可以将本地存储库推送到第二个分支中

但我想要的不是从本地推送,而是从远程推送

所以remote:master -> remote:branch

像这样的东西?

git push remote.git 'refs/remotes/master:refs/remotes/mybranch'
git push remote.git 'refs/heads/master:refs/heads/mybranch'

您必须将实际的主节点拉到本地分支(您可以将其拉到新分支(,然后推送到远程分支。

相关内容

  • 没有找到相关文章

最新更新