解决git push 中remote: Permission to xxxxx.git denied to xxx. fatal: unable to access 'https://github.com/ xxxxx.git/':URL .......

使用git push -u origin master 命令时 出现 :

remote: Permission to gavincook/test.git denied to kase-ding.
fatal: unable to access 'https://github.com/gavincook/test.git/': The requested URL returned error: 403

出现这个提示是因为没有访问权限,要么登录了两个账户,要么就是config中的url 地址错误

解决方法:

  1. 找到你要上传的项目文件夹,文件夹中会有.git文件,如果已经git init 没有看到 .git 文件,

点 查看 勾选 隐藏的项目:

打开.git文件中的config文件,编辑 .git/config中的url:

将config中的url中的

[remote "origin"]
url = https://github.com/git的用户名/项目名称
的url改为
url = https://git的用户名@github.com/git的用户名/项目名称

参考:https://www.cnblogs.com/angel648/p/13366030.html?utm_source=tuicool

posted @ 2021-12-15 21:51  micer  阅读(2017)  评论(0编辑  收藏  举报