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

以上是全局配置

posted @ 2022-02-19 20:22  yinhuachen  阅读(559)  评论(0编辑  收藏  举报