美文网首页
Git 下载代码加速,解除容量限制

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

作者: 水之心 | 来源:发表于2020-08-20 13:11 被阅读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
    

    相关文章

      网友评论

          本文标题:Git 下载代码加速,解除容量限制

          本文链接:https://www.haomeiwen.com/subject/irmsjktx.html