报错
解决前
git config --global --list
查看git的设置
解决后
// 代理更改为http (7890是我的代理软件clash的port默认的,有些博客使用的是1080,依个人情况而定)
git config --global http.proxy 'http://127.0.0.1:7890'
git config --global https.proxy 'http://127.0.0.1:7890'
git config --global http.https://github.com.proxy 'http://127.0.0.1:7890'
// (记录一下!)代理更改为socks5
git config --global http.proxy 'socks5://127.0.0.1:7890'
git config --global https.proxy 'socks5://127.0.0.1:7890'
git config --global http.https://github.com.proxy 'socks5://127.0.0.1:7890'
有博客说socks5上传速度快,笔者未考究。2023.7月我还在使用socks5的方式,还是可以用的,不知道为什么8月份上传代码突然给我报错了。总而言之,通过修改socks5->http
解决了我的报错
附一个修改github用户名相关问题解决链接