mac gitee:oauth: access token is expired fatal: unable to access https://gitee.com/xxx/xxx.git/-爱代码爱编程
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上竟然没找到一个有用的文章,全是坑!!希望这篇文章对您有帮助!