如何在公共github存储库

时间:2017-06-07 14:19:35

标签: git github pull-request

我想要创建一个拉取请求的公共github存储库。我在我的本地机器上有一个项目,我需要签入并发送给他们进行审查。我尝试了以下内容并失败了

git clone public repo
# create new branch
# add code in the branch 
git add/commit changes to this new branch 
git push 

当我执行git push时,我输入了我的github帐户凭据,但它失败了。我知道这应该失败,因为我无法访问他们的回购,但我做错了什么?我需要创建某种帐户吗?

1 个答案:

答案 0 :(得分:6)

首先必须分叉项目:

enter image description here

然后您可以处理您的代码版本。

您最终将您的分支机构推送到您的存储库,然后您就可以在主项目上创建一个拉取请求。

您可以在此处找到额外信息:Fork a repoContribute to someone's repository

PS:与How do I contribute to other's code in GitHub?

相关