git bash 设置代理

git bash 设置代理

这个方法只能加速http,https

即可以加速

git clone https://github.com/******

对于

git clone [email protected]:*****

是不起效果的.

设置方法:

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

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

对于现在大多数人来说应该都是socks5吧,别搞错了。

这个对于ping, curl也是不管用的,也不知道为啥。

对于pip install不能起到加速效果. cao

文章目录