初めてレポを bitbucket にプッシュしようとしたときに、この問題が発生しました。
[~/public_html]# git push -u origin --all
Counting objects: 2170, done.
Delta compression using up to 12 threads.
fatal: Out of memory, calloc failed
error: pack-objects died with strange error
--window-memory と --max-pack-size で repack を使用することを提案する StackOverflow で同様の問題を見つけましたが、ほぼ同じエラーが発生します。
[~/public_html]# git repack -a -d --window-memory 10m --max-pack-size 10m
Counting objects: 2170, done.
Delta compression using up to 12 threads.
fatal: Out of memory, calloc failed
私のサーバーには 4 GB のメモリが搭載されているため、どのようにメモリが不足しているのかわかりません。特に大きなファイルはなく、リポジトリ全体はわずか 12 MB です。
すでにいくつかの検索を行っていますが、私のケースに特有のものは見つかりません。
ここで何が起こっているのでしょうか?