error: index-pack died of signal fatal: index-pack failed【Git】

error: index-pack died of signal fatal: index-pack failed

環境:

克隆Linux源碼時發生錯誤
git clone https://github.com/torvalds/linux.gitlinux

error: index-pack died of signal fatal: index-pack failedgit

google雲Compute Engine
Memory: 0.6GB內存
Linux版本: Debian GNU/Linux 9.5 (stretch)github

錯誤緣由

結合網上的博客、以及StackOverFlow的回答,問題緣由應該是計算機內不足致使的segmentfault

解決方法

1.--depth 1 只clone 最近一次的提交bash

#!/bin/bash
git config --global core.compression 0

git clone --depth 1 <repo_URI>

git fetch --unshallow

git pull --all

2.配置~/.gitconfigfetch

gitconfig --global pack.threads 1

gitconfig --global pack.deltaCacheSize = 128m 
git config --globalpack.windowMemory 1024m

這樣一來,應該是能夠減少資源的佔用,但對於大的git仍是無濟於事。google

3.配置交換空間
原理顯而易見,經過提升系統內存,完成大git倉庫的clone操做。code

相關文章
相關標籤/搜索