git push The requested URL returned error: 403 Forbidden while accessing

 错误提示信息:

error: The requested URL returned error: 403 Forbidden while accessing https://github.com/xingfupeng/test.git/info/refs
fatal: HTTP request failed

解决方案:

修改.git/config文件,将下面的代码:

[remote "origin"]  
    url = https://github.com/xingfupeng/test.git

改为:

[remote "origin"]  
    url = https://xingfupeng@github.com/xingfupeng/test.git

再次git push,弹出框输入密码,即可提交

本博客内容全部经过本人亲自测试,转载请说明转载地址
原文地址:https://www.cnblogs.com/xingfupeng/p/8483720.html