1

リモート サーバーからプルしようとすると、次のエラーが発生します。

warning: no common commits
remote: Counting objects: 12358, done.
remote: warning: suboptimal pack - out of memory
error: git upload-pack: git-pack-objects died with error.
remote: Compressing objects:  92% (10914/11863)   fatal: git upload-pack: aborting due to possible repository corruption on the remote side.
remote: fatal: Out of memory, malloc failed (tried to allocate 42679466 bytes)
remote: aborting due to possible repository corruption on the remote side.
fatal: protocol error: bad pack header

このスレッドごとにリモートサーバーで使用されているメモリを制限しようとしました:

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

ここで実際に何が問題なのかわかりません。他のアイデアはありますか?ティア。

4

1 に答える 1

0

メッセージによるOut of memory, malloc failed (tried to allocate 42679466 bytes)と、サーバーの RAM が不足していると推測されます。組み込み/仮想/その他の制限されたハードウェアで実行していませんか?

于 2012-08-03T16:09:17.467 に答える