内容简介:版权声明:版权归博主所有,转载请带上本文链接!联系方式:abel533@gmail.com https://blog.csdn.net/isea533/article/details/84748009
版权声明:版权归博主所有,转载请带上本文链接!联系方式:abel533@gmail.com https://blog.csdn.net/isea533/article/details/84748009
参考: 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 ,已经很快了。
曾经为此写过的一个小应用可以关闭了。
以上所述就是小编给大家介绍的《Git 设置和取消代理》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 封装 axios 取消重复请求
- C# 代码取消 TFS 管控
- swift,alamofire取消之前的请求
- c – 强制允许取消引用NULL指针
- android – 如何取消动画,但不是结束它?
- 选择/取消选择所有按钮以选择闪亮变量
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Building Web Reputation Systems
Randy Farmer、Bryce Glass / Yahoo Press / 2010 / GBP 31.99
What do Amazon's product reviews, eBay's feedback score system, Slashdot's Karma System, and Xbox Live's Achievements have in common? They're all examples of successful reputation systems that enable ......一起来看看 《Building Web Reputation Systems》 这本书的介绍吧!