git push后返回403错误解决方法

git push后返回403错误解决方法_第1张图片
QQ截图20180522150230.png

创建一个GitHub.com项目,Push时总是提示403错误:
解决方案:

git remote add orginal https://github.com/***/***.git
git push orginal master

然后提示输入账号和密码即可

如果还不行的话

git remote set-url orginal https://[email protected]/***/***.git
git push orginal master

找到一个问题链接,仅供参考 Pushing to Git returning Error Code 403 fatal: HTTP request failed

你可能感兴趣的:(git push后返回403错误解决方法)