Git设置和取消代理的方法
作者:isea533 时间:2021-06-25 21:47:10
参考: 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,已经很快了。
曾经为此写过的一个小应用可以关闭了。
来源:https://blog.csdn.net/isea533/article/details/84748009
标签:git,设置,取消,代理
0
投稿
猜你喜欢
轻松学习C#的方法
2023-06-21 13:22:32
Reactor中的onErrorContinue 和 onErrorResume
2022-12-01 14:30:58
springMVC+ajax实现文件上传且带进度条实例
2022-01-15 16:42:36
心动吗?正大光明的免费使用IntelliJ IDEA商业版
2023-11-25 04:29:48
Android6.0 Launcher2应用解析
2021-10-29 19:19:43
java实现支付宝支付接口的调用
2023-10-13 09:43:40
深入理解Android中的建造者模式
2023-06-27 05:55:17
深入理解Java并发编程之ThreadLocal
2023-11-21 02:43:42
解析java基本数据类型传递与引用传递区别
2022-04-14 18:37:19
Android 中 EventBus 的使用之多线程事件处理
2021-09-14 13:34:12
深入理解 Java、Kotlin、Go 的线程和协程
2022-05-04 12:39:14
如何用注解的方式实现Mybatis插入数据时返回自增的主键Id
2022-02-05 09:29:55
基于C#实现的仿windows左侧伸缩菜单效果
2023-01-22 18:44:54
仿iphone中短信以及通话记录的时间显示
2021-07-23 02:34:28
C# 一个WCF简单实例
2023-07-12 20:53:43
java实现简单猜拳小游戏
2021-09-01 07:49:46
Android 添加系统设置属性的实现及步骤
2021-12-31 01:11:02
Android App获取屏幕旋转角度的方法
2021-12-26 10:42:19
C# 使用Fiddler捕获本地HttpClient发出的请求操作
2022-06-28 04:10:34
springmvc和js前端的数据传递和接收方式(两种)
2021-06-15 08:33:37