解决Gitee或者Github出现Access denied fatal: unable to access,The requested URL returned error: 403

简介: 解决Gitee或者Github出现Access denied fatal: unable to access,The requested URL returned error: 403

出现场景

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条目后,弹出以下窗口。

修改账户, 勾选显示密码,输入电脑密码,然后就能更改密码了。

最后点击存储更改就修改完成了。


再重新pull或者push,会提示输入密码和账号,输入正确的就能正常pull、push了。

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'.

 

相关文章
|
1月前
|
网络安全 开发工具 git
解决fatal:remote error:You can’t push to git://github.com/username/*.g
通过上述诊断与修复步骤,绝大多数的推送错误都能得到有效解决,确保您的Git工作流顺畅无阻。
35 1
|
2月前
|
Unix Shell 网络安全
git学习六:(bug总结)git@github.com: Permission denied (publickey).等
本文是关于解决在使用Git和GitHub时遇到的“git@github.com: Permission denied (publickey)”错误的指南。文章提供了详细的步骤,包括确认SSH Agent运行状态、检查密钥配置、确保密钥匹配、验证仓库URL、检查权限和代理设置,以及配置SSH文件。这些步骤帮助用户诊断并解决SSH认证问题。
133 0
|
3月前
|
Shell 网络安全 开发工具
Git,GitHub,Gitee&IDEA集成Git
Git提交项目到GitHub简洁版、版本控制、安装、常用命令、分支、团队协作机制、Github、Gitee远程仓库、IDEA集成Git、IDEA集成Github、IDEA集成Gitee
Git,GitHub,Gitee&IDEA集成Git
|
4月前
|
开发工具 git
GitHub——Error: Process completed with exit code 126.
GitHub——Error: Process completed with exit code 126.
61 1
GitHub——Error: Process completed with exit code 126.
|
3月前
|
Shell 网络安全 开发工具
fatal: unable to access 'https://github.com/wolfcw/libfaketime.git/': Encountered end of file
fatal: unable to access 'https://github.com/wolfcw/libfaketime.git/': Encountered end of file
|
5月前
The requested URL could not be retrieved
The requested URL could not be retrieved
65 1
|
4月前
GitHub——如何生成Personal access tokens
GitHub——如何生成Personal access tokens
14 0
|
5月前
|
前端开发 安全 测试技术
【Python】已解决:The method is not allowed for the requested URL.
【Python】已解决:The method is not allowed for the requested URL.
398 3
|
6月前
|
开发工具 git
【已解决】error: failed to push some refs to ‘git@github.com:BATdalao/Github-green.git‘
【已解决】error: failed to push some refs to ‘git@github.com:BATdalao/Github-green.git‘
|
程序员 开发工具 C#
如何将一个项目同时提交到GitHub和Gitee(码云)上
如何将一个项目同时提交到GitHub和Gitee(码云)上
549 0
如何将一个项目同时提交到GitHub和Gitee(码云)上