github属于境外网站,大部分时候访问速度都不到100K,克隆大仓库时相当耗时。比较好的解决办法就是通过科学上网来进行代理,加快访问速度。
注:本文不提供科学上网的方式,只提供git设置代理的方式。
设置方法
1 2 3 4 5 6 7 |
# 设置代理 git config --global http.proxy 'socks5://127.0.0.1:1080' git config --global https.proxy 'socks5://127.0.0.1:1080' # 取消代理 git config --global --unset http.proxy git config --global --unset https.proxy |
或者
1 2 3 4 |
# 只对github.com代理 git config --global http.https://github.com.proxy socks5://127.0.0.1:1080 # 取消代理 git config --global --unset http.https://github.com.proxy) |
评论