git拉取 UnrealEngine 大型项目出错 fatal: index-pack failed

问题描述:git克隆UnrealEngine到 99% 提示 fatal: index-pack failed

解决方法:

打开命令行模式到项目目录输入下面命令:

git config core.compression=9
git config http.postbuffer=2M
git config ssh.postbuffer=2M

core.compression:压缩等级1-9, 0取消压缩。

http.postbuffer , ssh.postbuffer: POST 缓冲区

你可能感兴趣的:(Linux,Windows,git,github)