Git master分支在一个存储库中,另一个分支在另一个私有存储库上

时间:2012-03-26 23:52:41

标签: git github

是否可以使用像github这样的公共存储库并在私有存储库中存在分支?

我希望我的主分支是公开的,但我也希望从我可以工作的私人分支(可能在另一台主机上)工作。有时候,我希望在主分支更新后从主分支中提取更新。

我最好只使用'git clone'吗?

2 个答案:

答案 0 :(得分:1)

当然,您可以决定将哪个分支推送到远程存储库。假设您的github存储库名为origin,您只能使用

推送master
$ git push origin master

答案 1 :(得分:0)

是的,您可以使用git push

$ git push origin local_branch_name:remote_branch_name