git clone因为项目过大失败
作者:互联网
错误信息如下:
error: inflate: data stream error (incorrect data check)MiB/s
fatal: pack has bad object at offset 10095259: inflate returned -3
fatal: index-pack failed
解决办法:
首先深度clone项目,只会clone最近提交的分支,体积很小,但只有主分支,其他分支需要另外下载
$ git clone --depth 1 https://github.com/dogescript/xxxxxxx.git
切换到项目路径:指定需要下载的其他分支
$ git remote set-branches origin 'remote_branch_name'
$ git fetch --depth 1 origin remote_branch_name
标签:origin,git,remote,clone,过大,depth,分支 来源: https://www.cnblogs.com/ysh2it/p/14807585.html