我无法使用cmd中的以下命令将项目推送到github:git push -u origin master
remote:对shashank136 / Django_polling_App.git的许可被拒绝rishidada136。 致命:无法访问“https://github.com/shashank136/Django_polling_App.git/”:请求的网址返回错误:403
我的github帐户使用的是id shashank136.sk@gmail.com
任何想法如何解决这个错误。我是Github的新手
答案 0 :(得分:0)
您无法访问回购的可能性有多种:
1)首先确保遥控器正确无误:
git remote -v
验证它是否指向正确的github repo
2)确保git config中的用户名和电子邮件正确使用
git config user.email
如果它们与您的github帐户不同,请使用
更正它们git config user.email "<your email associated with github">
3)确保您的密码正确无误: 您可以使用以下方式更新密码:
git config --global user.password
git remote set-url origin https://yourusername@github.com/<user-name>/<repo-name>.git