- 2017-10-19 (Thu) 19:06
- 一般
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つのどれが効いているのか分からんけれど.
- Newer: ことはじめ