git下载太慢的改进方法

https://blog.51cto.com/u_15794627/5682740

1. 配置git参数

$ 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. 只下载某一分支

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

3. 参考

a) 详细介绍git clone --depth=1的用法
​​ ​​​​ b) github使用时太卡完美解决
​​ ​https://www.pianshen.com/article/78851729185/​​

你可能感兴趣的:(开发工具,git)