是否可以使用像github这样的公共存储库并在私有存储库中存在分支?
我希望我的主分支是公开的,但我也希望从我可以工作的私人分支(可能在另一台主机上)工作。有时候,我希望在主分支更新后从主分支中提取更新。
我最好只使用'git clone'吗?
答案 0 :(得分:1)
当然,您可以决定将哪个分支推送到远程存储库。假设您的github存储库名为origin
,您只能使用
master
$ git push origin master
答案 1 :(得分:0)
是的,您可以使用git push
$ git push origin local_branch_name:remote_branch_name