标签:
github push错误
fatal: unable to access ‘https://github.com/xuzhenguo/authorize.git/‘: The requested URL returned error: 403
解决方法:
vim .git/config
修改前
[remote "origin"]
url = https://github.com/xuzhenguo/authorize.git
修改为:
[remote "origin"]
url = https://xuzhenguo@github.com/xuzhenguo/authorize.git
然后输入自己的git 用户名
git 出现 The requested URL returned error: 403
标签:
原文地址:http://www.cnblogs.com/xzguo/p/4796175.html