1 2 3 4 5 6 7 8 |
Cloning into '/home/xxx'... remote: Counting objects: 22868, done. remote: aborting due to possible repository corruption on the remote side. error: pack-objects died of signal 9 error: git upload-pack: git-pack-objects died with error. fatal: git upload-pack: aborting due to possible repository corruption on the remote side. fatal: early EOF fatal: index-pack failed |
レポジトリに大きいファイルがあるか、レポジトリ自体が大きいとこうなるようだ。1つの解決法は少しずつfetchする。
1 2 3 4 5 6 |
git clone --depth 1 git@bitbucket.org:ambiesoft/fff.git git -C ~/gitdev/fff fetch --depth 10 git -C ~/gitdev/fff fetch --depth 100 git -C ~/gitdev/fff fetch --depth 500 git -C ~/gitdev/fff fetch --depth 1000 git -C ~/gitdev/fff fetch --unshallow |
これはレポジトリを全部持ってくる場合だが、その必要がなければ最初の–depth 1だけでもpushなどはできる。