Git_下载太慢的改进方法
#版本管理
1. 配置 git 参数
1 | $ git config --global http.postBuffer 524288000 # 加大缓存 |
设置好之后重新下载
2. 只下载某一分支
1 | $ git clone --depth 1 --branch 分支名 https://github.com/xxx.git |
3. 参考
- 详细介绍 git clone --depth=1 的用法
https://blog.csdn.net/qq_43827595/article/details/104833980
- github 使用时太卡完美解决
https://www.pianshen.com/article/78851729185/
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.