出现场景
pull
从github或者gitee码云拉取其他人的私有项目时,报以下错误
git clone https://gitee.com/hybird_now/ali_app.git
Cloning into 'ali_app'...
remote: [session-20433bf4] Access denied
fatal: unable to access 'https://gitee.com/hybird_now/ali_app.git/': The requested URL returned error: 403
push
要把某个项目push到Gitee码云或者Github上,已经设置了仓库地址,在最后一步推送代码时直接报错。
adodeMacBook-Pro:yimabao ado$ git push --set-upstream origin master
remote: [session-774b45b9] Access denied
fatal: unable to access 'https://gitee.com/mzmilk/yimabao.git/': The requested URL returned error: 403
问题分析
因为报的错是没有访问权限,只要本地使用过Github或者Gitee等git服务,电脑上就会存储git的账号和密码凭据.这样下次pull或者push的时候就会默认
我们只要删除本地账号或者把git的账号和密码修改成远程仓库有访问权限的账号即可。
解决方案
Windows
Mac
打开钥匙串,种类选择所有项目,在右边搜索git。
找到github或者gitee,删除对应的项目即可。
删除
右键,点击删除"gitee.com"
弹出窗口,选择删除。
修改
双击gitee条目后,弹出以下窗口。
修改账户, 勾选显示密码,输入电脑密码,然后就能更改密码了。
最后点击存储更改就修改完成了。
文章来源:https://www.toymoban.com/news/detail-823594.html
再重新pull或者push,会提示输入密码和账号,输入正确的就能正常pull、push了。文章来源地址https://www.toymoban.com/news/detail-823594.html
adodeMacBook-Pro:yimabao ado$ git push --set-upstream origin master
Username for 'https://gitee.com': xxxxxx@qq.com
Password for 'https://xxxxxx@qq.com@gitee.com':
Enumerating objects: 158, done.
Counting objects: 100% (158/158), done.
Delta compression using up to 4 threads
Compressing objects: 100% (136/136), done.
Writing objects: 100% (158/158), 268.65 KiB | 5.97 MiB/s, done.
Total 158 (delta 25), reused 0 (delta 0)
remote: Resolving deltas: 100% (25/25), done.
remote: Powered by GITEE.COM [GNK-6.4]
To https://gitee.com/mzmilk/yimabao.git
* [new branch] master -> master
Branch 'master' set up to track remote branch 'master' from 'origin'.
到了这里,关于解决Gitee或者Github出现Access denied fatal: unable to access,The requested URL returned error: 403的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!