>
Home

登龙(DLonng)

选择大于努力

使用代理加速 git clone!


版权声明:本文为 DLonng 原创文章,可以随意转载,但必须在明确位置注明出处!

git clone 有时速度很慢,网上找了下方法,暂时还没在 Mac 上测试,先记录下来,不过应该没毛病,我之前在 Ubuntu 好像做过类似的配置:

# socks5 协议,1080 端口修改成自己的本地代理端口
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080
git config --global https.https://github.com.proxy socks5://127.0.0.1:1080

# http 协议,1081 端口修改成自己的本地代理端口
git config --global http.https://github.com.proxy https://127.0.0.1:1081
git config --global https.https://github.com.proxy https://127.0.0.1:1081

取消配置:

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

本文原创首发于微信公号「登龙」,分享机器学习、算法编程、Python、机器人技术等原创文章,扫码即可关注

DLonng at 06/14/20