提交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
来源:CSDN
作者:Susuwatari
链接:https://blog.csdn.net/sinat_31230641/article/details/104798900