Git设置和取消代理的方法
时间:2020-10-16 13:04:54|栏目:JAVA代码|点击: 次
参考: https://gist.github.com/laispace/666dd7b27e9116faece6
前提是你本地有 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,已经很快了。
曾经为此写过的一个小应用可以关闭了。
总结
栏 目:JAVA代码
下一篇:Spring Security OAuth2实现使用JWT的示例代码
本文标题:Git设置和取消代理的方法
本文地址:http://www.codeinn.net/misctech/12412.html
阅读排行
- 1Java Swing组件BoxLayout布局用法示例
- 2java中-jar 与nohup的对比
- 3Java邮件发送程序(可以同时发给多个地址、可以带附件)
- 4Caused by: java.lang.ClassNotFoundException: org.objectweb.asm.Type异常
- 5Java中自定义异常详解及实例代码
- 6深入理解Java中的克隆
- 7java读取excel文件的两种方法
- 8解析SpringSecurity+JWT认证流程实现
- 9spring boot里增加表单验证hibernate-validator并在freemarker模板里显示错误信息(推荐)
- 10深入解析java虚拟机