当前位置:   article > 正文

fatal: The remote end hung up unexpectedly MiB fatal: early EOF fatal: index-pack failed解决方案_fatal: the remote end hung up unexpectedly fatal:

fatal: the remote end hung up unexpectedly fatal: early eof fatal: index-pac

gitclone 文件太大无法下载解决方案

当项目过大时, git clone往往会出现 fatal: The remote end hung up unexpectedly MiB fatal: early EOF fatal: index-pack failed等问题。

解决方案如下:

git clone时加上 --depth=1,比如:

在这里插入图片描述
depth用于指定克隆深度,为1即表示只克隆最近一次commit.

这种方法克隆的项目只包含最近的一次commit的一个分支,体积很小。

但是有时候即使这样,文件还是过大。怎么办呢?

通过修改git的通用压缩配置来完成:

git config --add core.compression -1

compression 是压缩的意思,从 clone 的终端输出就知道,服务器会压缩目标文件,然后传输到客户端,客户端再解压。取值为 [-1, 9],-1 以 zlib 为默认压缩库,0 表示不进行压缩,1…9 是压缩速度与最终获得文件大小的不同程度的权衡,数字越大,压缩越慢,当然得到的文件会越小。

这样就可以完美解决问题了。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/812381
推荐阅读
相关标签
  

闽ICP备14008679号