美文网首页
fatal: early EOF fatal: index-pa

fatal: early EOF fatal: index-pa

作者: 朱传武 | 来源:发表于2020-12-21 18:22 被阅读0次

    今天装了最新macos 11.0.1,在clone项目的时候出现错误:

    jianlongnie@macos repos % git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git master
    Cloning into 'master'...
    remote: Counting objects: 4584950, done.
    remote: Compressing objects: 100% (1333959/1333959), done.
    

    解决办法:

    git config --add core.compression -1
    
    git config --global  --list
    http.postbuffer=524288000
    core.compression=-1
    

    但是当我重新 clone的时候,还是会出问题,最后无奈,只能分步骤clone:
    关闭压缩策略:

    git config --global core.compression 0
    

    只clone最后的git文件:

    git clone --depth 1 <repo_URI>
    

    clone剩下的:

    git fetch --unshallow 
    

    或者

    git fetch --depth=2147483647
    

    最后

    git pull --all
    

    相关文章

      网友评论

          本文标题:fatal: early EOF fatal: index-pa

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