解决git失败的方法
- Failed to connect to github.com port 443: Timed out
因为连不上GitHub导致的。所以打开clash,并且使用全局模式+TUN模式。
如果还是不行,就将git代理设置为127.0.0.1:7890
//取消http代理
git config --global --unset http.proxy
//取消https代理
git config --global --unset https.proxy
git config --global http.proxy http://127.0.0.1:7890