我很擅长贡献。我在django文档中做了一些改进,我想把它推到github。我按照this指南操作,但我在推送命令git push origin ticket_xxxxx
上遇到了以下问题:
remote: Permission to django/django.git denied to <user>.
fatal: unable to access 'https://github.com/django/django.git/': The requested URL returned error: 403
我的远程存储库是:
origin https://github.com/django/django.git (fetch)
origin https://github.com/django/django.git (push)
有什么想法吗?
答案 0 :(得分:2)
如果您仔细阅读文档,您会注意到在Setting up local repository中,它会导致您克隆分叉存储库而不是原始的django存储库。
git clone git@github.com:github_nick/django.git
^^^^^^^^^^^
而不是尝试直接推送到django存储库,fork django存储库。
提交,推送到您的分叉存储库。然后是create pull request。