Ire*_*aka 5 git version-control github
当我尝试克隆特定存储库时,显示以下错误消息。仅当克隆该存储库时才会发生这种情况。
remote: Enumerating objects: 991, done.
remote: Counting objects: 100% (991/991), done.
remote: Compressing objects: 100% (422/422), done.
error: index-pack died of signal 25, 60.96 MiB | 5.56 MiB/s
fatal: index-pack failed
Run Code Online (Sandbox Code Playgroud)
环境:CentOS Linux 7 x86_64,可用内存约1.9G。
我已经尝试过的,
--depth=1;结果:成功观察结果
问题:
index-pack died of signal 25意思?我在哪里可以找到它的文档?这与 Git 本身或操作系统有关吗?我搜索过类似的问题,index-pack died of signal 25但没有找到解决方案。
根据man 7 signal,信号 25 为SIGXFSZ,表示“超出文件大小限制”。man 2 setrlimit说:
RLIMIT_FSIZE\n This is the maximum size in bytes of files that the process\n may create. Attempts to extend a file beyond this limit\n result in delivery of a SIGXFSZ signal. By default, this sig\xe2\x80\x90\n nal terminates a process, but a process can catch this signal\n instead, in which case the relevant system call (e.g.,\n write(2), truncate(2)) fails with the error EFBIG.\nRun Code Online (Sandbox Code Playgroud)\n\n您可以使用该ulimit命令查看并可能更改此限制。