问题描述
今天想fetch一下远程仓库突然就出现了连接403的错误,Failed to connect to github.com port 443: Operation timed out。搜索后得到解决方法。
git config --global http.sslVerify "false"
git config --global https.proxy http://127.0.0.1:1080
git config --global http.proxy http://127.0.0.1:1080
但是发现问题并没有解决?
问题解决
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy http://127.0.0.1:7890
采用的是clash工具的端口,默认端口是7890
更改后问题的到解决。