Home > Archives > 2017年10月19日

2017年10月19日

git pull で pack-objects が死ぬので対処する

git pull したら error: pack-objects died of signal 7remote: aborting due to possible repository corruption on the remote side. とか叫ばれて pull できなかった.リモートで動いている pack-objects が死んでるらしい.

ということで,対処法をググった結果,とりあえず諸々のサイズの上限をリモートで指定してあげて一件落着:

git config --global pack.windowMemory "100m"
git config --global pack.SizeLimit "100m"
git config --global pack.deltaCacheSize "100m"
git config --global pack.threads "1"

結局この4つのどれが効いているのか分からんけれど.

Home > Archives > 2017年10月19日

Search
Feeds

Page Top