Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Permission denied error on Github Push

Tags:

git

github

Recently, I'm added as a member/contributor for Github project. I have cloned that project on local machine.

I have made some changes and committed locally and now trying to Push changes to original repo but when I try to Push,I get some permission error?

C:\Users\MM\Documents\GitHub\software-licensing-php [master]> git push origin master remote: Permission to EasySoftwareLicensing/software-licensing-php.git denied to  irfandayan. fatal: unable to access 'https://github.com/EasySoftwareLicensing/software-licen sing-php.git/': The requested URL returned error: 403 C:\Users\MM\Documents\GitHub\software-licensing-php [master]> git statu s # On branch master # Your branch is ahead of 'origin/master' by 2 commits. #   (use "git push" to publish your local commits) # nothing to commit, working directory clean 

Am I lacking some permission for pushing changes so I could ask the original author of project?

like image 918
Irfan Avatar asked Jul 25 '13 11:07

Irfan


People also ask

Can I push permission to denied GitHub?

GitHub's Permission denied (publickey) error is usually caused by one of the following three issues: You have used an incorrect email address in the GitHub SSH URL. You have not configured your public SSH key in your GitHub account. You must create GitHub SSH keys to be used by the secure shell.


1 Answers

  • click fork button on original github project page
  • clone your forked repository instead original
  • push to it
  • press Pull Requests button on your repository
  • create it
  • wait for original author to accept it
like image 166
cnd Avatar answered Sep 20 '22 21:09

cnd