加载笔记内容...
加载笔记内容...
https://stackoverflow.com/questions/21277806/fatal-early-eof-fatal-index-pack-failed
First, turn off compression:
1git config --global core.compression 0
Next, let's do a partial clone to truncate the amount of info coming down:
1git clone --depth 1 <repo_URI>
When that works, go into the new directory and retrieve the rest of the clone:
1git fetch --unshallow
or, alternately,
1git fetch --depth=2147483647
Now, do a regular pull:
1git pull --all
I think there is a glitch with msysgit in the 1.8.x versions that exacerbates these symptoms, so another option is to try with an earlier version of git (<= 1.8.3, I think).
实际体验,因为我是已经 clone 的项目,因为一个大文件导致 git pull
报错
1fetch-pack: unexpected disconnect while reading sideband packet
2fatal: early EOF
3fatal: fetch-pack: invalid index-pack output
已存在的项目,直接设置下面的配置就好了。
1git config --global core.compression 0
将 core.compression
设置为 0
会导致磁盘空间使用和网络传输相关的操作变慢,原因如下:
git add
git commit
git gc
git repack
core.compression 0
表示完全不进行压缩,Git 对文件对象(如 blob、tree 和 commit)直接以原始数据形式存储,而不是以压缩后的形式存储到 .pack
文件中。.git/objects
文件夹中生成的对象会非常大,占用更多磁盘空间。git gc
或 git repack
时需要处理未压缩的数据,操作耗时更长。git clone
git fetch
git pull
git push
.pack
文件在传输时体积较大,会显著增加网络带宽的使用。core.compression
设置为 0,传输时也可能会重新压缩,但效果较差)。scp
、rsync
)core.compression 0
,除非你明确知道这对性能有益。例如:
git clone
)。git repack -a -d --depth=250 --window=250
手动优化。core.compression 0
的主要问题在于:
因此,在大多数情况下,建议保持默认值(2
)或根据需要调整为合适的压缩级别(1-9
)。
Git 配置中的 core.compression
参数用于指定 Git 在压缩对象(如存储到 .pack
文件中)时使用的压缩级别。以下是关于 git config --global core.compression
的详细说明:
默认值: 如果未手动设置 core.compression
,其默认值通常是 2。
deflate
算法。用户设置 core.compression 0
的影响:
git clone
、git push
等)的速度,但会显著增加存储和传输的大小。其他可能的值:
配置示例:
查看当前设置:
1git config --global core.compression
设置为不压缩:
1git config --global core.compression 0
恢复到默认压缩级别:
1git config --global --unset core.compression
总结:git config --global core.compression 0
将关闭压缩,默认值为 2(中等压缩)。一般来说,默认值已经是性能和存储的合理折中,除非在网络或硬件受限的情况下,一般无需修改该参数。
git gc
是 Git 提供的一个命令,用于清理和优化本地仓库的存储空间。gc
是 “garbage collect”(垃圾收集)的缩写,它会对 Git 仓库执行一系列清理操作,以提升性能和节省磁盘空间。
压缩对象文件:
删除冗余数据:
优化引用(refs):
合并日志文件:
清理临时文件:
--prune=<time>
:删除比指定时间更早的不可达对象(默认值为两周前)。--aggressive
:执行更彻底的优化,会消耗更多时间和资源。--auto
:只有在需要时才运行垃圾收集(根据仓库的大小和状态自动判断是否需要运行)。基本用法:
1git gc
运行默认的垃圾收集操作。
删除旧的不可达对象:
1git gc --prune=now
删除所有当前不可达的对象(无需等待默认的两周时间)。
强制优化:
1git gc --aggressive
使用更激进的策略进行压缩和优化。
git gc
不会删除当前引用(如分支、标签)可达的对象,因此对当前工作没有影响。git gc
可能耗时较长,特别是使用 --aggressive
参数时。通过运行 git gc
,可以保持仓库的高效运行,尤其是在频繁操作(如合并、删除分支)后。