Git设置和取消代理的方法
程序员文章站
2024-03-03 20:00:10
参考:
前提是你本地有 socks5 代理。
上面参考地址作者提供的配置无效,但是后面回复中的配置有效:
git config --global h...
参考:
前提是你本地有 socks5 代理。
上面参考地址作者提供的配置无效,但是后面回复中的配置有效:
git config --global http.proxy 'socks5://127.0.0.1:1080' git config --global https.proxy 'socks5://127.0.0.1:1080'
还有针对 github.com 的单独配置:
#只对github.com git config --global http.https://github.com.proxy socks5://127.0.0.1:1080 #取消代理 git config --global --unset http.https://github.com.proxy)
直接使用 socks5 的速度很快,近百兆的项目能在短时间内下载完。
测试:
$ git clone https://github.com/abel533/mybatis-3.git cloning into 'mybatis-3'... remote: enumerating objects: 20, done. remote: counting objects: 100% (20/20), done. remote: compressing objects: 100% (13/13), done. remote: total 209581 (delta 0), reused 12 (delta 0), pack-reused 209561 receiving objects: 100% (209581/209581), 72.32 mib | 405.00 kib/s, done. resolving deltas: 100% (176933/176933), done.
速度在 405.00 kib/s,已经很快了。
曾经为此写过的一个小应用可以关闭了。
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
推荐阅读
-
Git设置和取消代理的方法
-
git使用.gitignore设置不生效或不起作用问题的解决方法
-
git使用.gitignore设置不生效或不起作用问题的解决方法
-
Android中系统默认输入法设置的方法(输入法的显示和隐藏)
-
iOS设置UIButton文字显示位置和字体大小、颜色的方法
-
浅谈pycharm的xmx和xms设置方法
-
extjs grid设置某列背景颜色和字体颜色的实现方法_extjs
-
Python实现爬虫设置代理IP和伪装成浏览器的方法分享
-
CodeIgniter删除和设置Cookie的方法,codeignitercookie_PHP教程
-
CodeIgniter删除和设置Cookie的方法_php实例