Git 下载代码加速,解除容量限制

2020-08-20  本文已影响0人  水之心

参考 使用Git pull文件时,出现"error: RPC failed; curl 18 transfer closed with outstanding read data remaining"

  1. 缓存区溢出curl的postBuffer的默认值太小,需要增加缓存

使用 git 命令增大缓存(单位是 B,524288000B 也就 500M 左右)

git config --global http.postBuffer 524288000

使用 git config --list 查看是否生效

此时重新克隆即可

  1. 网络下载速度缓慢

修改下载速度

git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999
  1. 以上两种方式依旧无法 clone 下,尝试以浅层 clone,然后更新远程库到本地
git clone --depth=1 http://xxx.git
git fetch --unshallow
上一篇下一篇

猜你喜欢

热点阅读