git 设置 http https 代理

在中国我们使用 pull 或者 push 命令 来连接 github 的 repository 经常得到的错误是.

 Failed to connect to github.com port 443 after 21158 ms: Timed out

急得会吐血。 然后如果我们用的是clash发现我们的clash设成了global也是没有效果的。 因为git没有走系统的默认代理,需要我们自己手动设置代理

这个时候我们需要让git使用上代理

git 设置代理

git config --global http.proxy 127.0.0.1:7890
git config --global https.proxy 127.0.0.1:7890

7890 是我们代理软件的端口。

git 不想使用代理的时候

git config --global --unset http.proxy
git config --global --unset https.proxy

git 查看正在使用的代理

git config --global --get http.proxy

git config --global --get http2.proxy

smart git

Tools - Open git in shell 可以打开命令行窗口

上一篇:Git 参考
下一篇:git add
最近更新的
...