Git Remote的特定分支

时间:2014-03-12 13:52:31

标签: git

我想使用仅由一个名为development

的分支使用的远程分支

这是否正确:

 $ git remote add production git@myserver.com:mywebsite.git
 $ git push production +development:refs/heads/development

1 个答案:

答案 0 :(得分:0)

您有一个本地分支,您希望在myserver.com:mywebsite.git

推送到存储库

你已经添加了遥控器,但是推动所需要做的就是

$ git push production development