Git clone github文件时出现超时中断或下载慢的解决方案
可以更改git的config参数,取消其http和https代理:
git config --global --unset http.proxy
git config --global --unset https.proxy
完美解决以上问题。
可以更改git的config参数,取消其http和https代理:
git config --global --unset http.proxy
git config --global --unset https.proxy
完美解决以上问题。