【工具使用系列】关于 加速 git clone,你需要知道的事
程序员文章站
2022-07-14 16:50:30
...
如何加速 git clone
使用 http 代理的方式
- 从代理客户端或者命令行,获取 http 代理地址
-
往.gitconfig, 添加 http 代理地址
通过命令行工具,键入git config 命令设置 https 代理,git config --global http.proxy https://127.0.0.1:61293
或者通过文本工具, 添加 https 代理地址到文件 .gitconfig (C:\Users\Your Name\.gitconfig)
[http] proxy = 127.0.0.1:61293
测试一下,比较添加前与添加后的效果
使用 git clone 获取 monodevelop
git clone https://github.com/mono/monodevelop --recursive
(左侧为添加前的效果,右侧为添加后的效果)
*使用 http 代理后,git clone 提速效果很明显~
下一篇: opencv 泊松融合
推荐阅读
-
【脚本语言系列】关于PythonGUI编程wxPython, 你需要知道的事
-
【脚本语言系列】关于Python多线程编程StacklessPython,你需要知道的事
-
【脚本语言系列】关于PythonWeb访问ftplib,你需要知道的事
-
【脚本语言系列】关于Python网络编程socket,你需要知道的事
-
【开发环境系列】关于Docker配置Python开发环境,你需要知道的事
-
【脚本语言系列】关于Python多线程编程Threading, 你需要知道的事
-
【工具使用系列】关于 加速 git clone,你需要知道的事
-
【脚本语言系列】关于Python数据库处理SQLite数据库,你需要知道的事