赞
踩
记录remote: Permission to xxx/xxx.git denied to DonaldJohnPeter.
fatal: unable to access 'https://github.com/xxx/xxx.git.git/': The requested URL returned error: 403问题解决
表示我被该问题困扰了很久,为了解决这个问题曾不小心将本地更新文件误删除,在网上找了很多方法都没有解决
该图为报错截图
显示为权限问题,可以通过修改git 的config文件解决
vim .git/config修改config文件
将config文件中的[remote "origin"]下面的url,更改为github的名字@github.com
eg.
e.g.
[remote "origin"]
url = https://github.com/github用户名/xxxx.git
修改为:
[remote "origin"]
url = https://github用户名@github.com/github用户名/xxx.git
修改完成后输入:wq!退出
再次执行git push即可成功
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。