代码编织梦想

1. Issue Detail:

emote: [session-dc49e5b1] Oauth: Access token is expired
fatal: unable to access https://gitee.com/xxx/xxx.git/ The requested URL returned error: 403

2. Why? Credential过期了!

Try: 打开mac“钥匙串”app,删除gitee账号缓存无效。仍然报错。

3. Solution:

清除git缓存即可work。
1、清除git中缓存的用户名和密码。

git credential-manager uninstall
#如果电脑是macos提示 git: 'credential-wincred' is not a git command. See 'git --help'
#第一步:
git config --unset-all credential.helper
#第二步:
git config --global credential.helper osxkeychain

2、terminal输入git pull,按提示输入username和password即可。

在这里插入图片描述

这个问题CSDN上竟然没找到一个有用的文章,全是坑!!希望这篇文章对您有帮助!

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/qq_35843514/article/details/130878343