争怎路由网/系统工具/内容

ubuntu下git clone大提速

系统工具2024-07-10 阅读
环境:ubuntu16.04
 
方法:通过socks5代理并且使用http链接
 
步骤:
1.设置全局使用socks5代理,并且使用http传输
git config --global http.proxy socks5://localhost:1080  (1080是设置的本地socks5端口,根据自己代理客户端设置的端口而定)
2.如果要clone的git仓库链接为https://github.com/haha.git,要将https改为http,即为http://github.com/haha.git
3.可以直接clone了


……

相关阅读