问题remote: Permission to username/xxx.git denied to Donal The requested URL returned error: 403

只愿长相守 提交于 2020-03-11 18:27:09

提交git报错

remote: Permission to username/xxx.git denied to DonaldJohnPeter.

fatal: unable to access 'https://github.com/username/xxx.git/': The requested URL returned error: 403

这个问题反反复复出现了很多遍,要被他烦死了,好像是因为之前配置了ssh在其他电脑然后用另外一个电脑上传导致的,意思是没有权限提交代码,可能之前修改过git的用户名和密码或等等等其他anyway反正就是不行

解决方法:

1.直接修改配置文件,我就是使用此方法成功

先查看配置文件的用户名和密码是否正确

修改配置文件.git的config,我的是在.git文件夹下面的config文件,也有人是.gitconfig文件

vim .git/config

修改里面的[remote "origin”]下的url = https://github.com/用户名/xxx.git

github.com修改为用户名@github.com

修改后为 url = https://用户名@github.com/用户名/xxx.git

如果还不可以的话可以在最后在加上上面两行,这是我在网上看的别人的方法,反正我都加了

[credential]

        helper = store 

然后使用git push -u origin master提交成功

 

2.这是别人写的方法,我尝试了但是结果并没有成功,我在方法1里面有加上这里面的最后一段 https://www.jianshu.com/p/a1908f55bef8

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!