翻墙工具:Clash for Windows

在终端中,使用命令git clone或者git push访问github时,常常出现超时问题。

解决办法:因为Clash是通过7890端口进行翻墙的,所以需要给git配置如下代理

1
2
git config --global http.proxy "http://127.0.0.1:7890"
git config --global https.proxy "http://127.0.0.1:7890"