Gabriel Muñumel
Gabriel Muñumel

Reputation: 1876

Contribute to django via github

I'm new at contributing. I made an improvement in django documentation and I want to push it to github. I follow this guide but I got the following problem on the push command 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

My remote repositories are:

origin  https://github.com/django/django.git (fetch)
origin  https://github.com/django/django.git (push)

Any idea?

Upvotes: 1

Views: 111

Answers (1)

falsetru
falsetru

Reputation: 368894

If you read the documentation carefully, you'll notice that in Setting up local repository, it leads you to clone the forked repository instead of the original django repository.

git clone [email protected]:github_nick/django.git
                         ^^^^^^^^^^^

Instead of trying to push to django repository directly, fork django repository.

Commit, push to your forked repository. Then create pull request.

Upvotes: 2

Related Questions