Loading... 今天出现了一个错误 ```log Failed to connect to github.com port 443 after 21046 ms: Couldn't connect to server ``` 提示连接不上,配置代理成功了 **配置socks5代理** ```bash git config --global http.proxy socks5 127.0.0.1:7890 git config --global https.proxy socks5 127.0.0.1:7890 ``` **配置http代理** ```bash git config --global http.proxy 127.0.0.1:7890 git config --global https.proxy 127.0.0.1:7890 ``` **查看代理命令** ```bash git config --global --get http.proxy git config --global --get https.proxy ``` **取消代理命令** ```bash git config --global --unset http.proxy git config --global --unset https.proxy ``` 最后修改:2024 年 01 月 19 日 © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 1 如果觉得我的文章对你有用,请随意赞赏