git clone配置代理加速

有时候git clone 网速较慢,可以通过配置代理来提供克隆速度

配置如下:

1 2 git config --global http.proxy socks5://127.0.0.1:1080 git config --global https.proxy socks5://127.0.0.1:1080

取消配置如下:

1 2 git config --global --unset http.proxy git config --global --unset https.proxy

以上是全局配置

上一篇:Python中的作用域、global与nonlocal


下一篇:Git