在中国我们使用 pull 或者 push 命令 来连接 github 的 repository 经常得到的错误是.
Failed to connect to github.com port 443 after 21158 ms: Timed out
急得会吐血。 然后如果我们用的是clash发现我们的clash设成了global也是没有效果的。 因为git没有走系统的默认代理,需要我们自己手动设置代理
这个时候我们需要让git使用上代理
git config --global http.proxy 127.0.0.1:7890
git config --global https.proxy 127.0.0.1:7890
7890 是我们代理软件的端口。
git config --global --unset http.proxy
git config --global --unset https.proxy
git config --global --get http.proxy
git config --global --get http2.proxy
Tools - Open git in shell 可以打开命令行窗口