fatal: ServicePointManager 不支持具有 socks5 方案的代理。

报错

fatal: ServicePointManager 不支持具有 socks5 方案的代理。_第1张图片

解决前

git config --global --list 查看git的设置
fatal: ServicePointManager 不支持具有 socks5 方案的代理。_第2张图片

解决后

// 代理更改为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'

fatal: ServicePointManager 不支持具有 socks5 方案的代理。_第3张图片
有博客说socks5上传速度快,笔者未考究。2023.7月我还在使用socks5的方式,还是可以用的,不知道为什么8月份上传代码突然给我报错了。总而言之,通过修改socks5->http解决了我的报错

附一个修改github用户名相关问题解决链接

你可能感兴趣的:(github,git)