解决github push错误The requested URL returned error: 403 Forbidden while accessing(转)

github push错误:

 

  1. git push  
  2. error: The requested URL returned error: 403 Forbidden while accessing https://github.com/wangz/future.git/info/refs  

git version 1.7.1

 

OS:CENTOS

解决方案:

vim .git/config

修改

 

  1. [remote "origin"]  
  2.     url = https://github.com/wangz/example.git  

为:

 

 

  1. [remote "origin"]  
  2.     url = https://wangz@github.com/wangz/example.git  

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

 

转自:http://blog.csdn.net/happyteafriends/article/details/11554043

posted @ 2017-10-10 16:32  鸭子船长  阅读(208)  评论(0编辑  收藏  举报