#版本管理

1. 配置 git 参数

1
2
3
4
5
6
7
$ git config --global http.postBuffer 524288000 # 加大缓存
$ git config --global core.compression -1 # 设置默认压缩方法
$ export GIT_TRACE_PACKET=1 # 打开调示信息
$ export GIT_TRACE=1
$ export GIT_CURL_VERBOSE=1
$ git config --global http.lowSpeedLimit 0 # 设置最低速度
$ git config --global http.lowSpeedTime 999999 # 设置最低速度时间,单位秒

设置好之后重新下载

2. 只下载某一分支

1
$ git clone --depth 1  --branch 分支名 https://github.com/xxx.git

3. 参考

  1. 详细介绍 git clone --depth=1 的用法

https://blog.csdn.net/qq_43827595/article/details/104833980

  1. github 使用时太卡完美解决

https://www.pianshen.com/article/78851729185/