Trying to clone a bare repository and get the following error message. The repository is rather big with 3GB total size. Client I want to clone to is MacOSX.
remote: Counting objects: 20118, done.
remote: Compressing objects: 100% (16577/16577), done.
error: pack-objects died of signal 9 3.49 MiB | 745 KiB/s
error: git upload-pack: git-pack-objects died with error.
fatal: git upload-pack: aborting due to possible repository corruption on the remote side.
remote: aborting due to possible repository corruption on the remote side.
fatal: early EOF
fatal: index-pack failed
I had this problem in the beginning, too and fixed it with
git config pack.windowMemory 5m
git config pack.packSizeLimit 10m
like mentioned in this post
git repack works on the remote host, no errors. git gc is not working though, ends with following error message.
Counting objects: 20118, done.
Delta compression using up to 2 threads.
error: failed to run repack6551/16577)
What can I do?