12

この問題は、Gitプッシュ「エラー:インデックスパックがシグナル9で停止しました」とは異なります。

エラーメッセージは次のとおりです。

remote: Counting objects: 40512, done.
remote: Compressing objects: 100% (8896/8896), done.
remote: Total 40512 (delta 31079), reused 40394 (delta 30980)
Receiving objects: 100% (40512/40512), 6.05 MiB | 22 KiB/s, done.
error: index-pack died of signal 99)   
fatal: index-pack failed

real    1292050m43.682s
user    0m23.645s
sys     0m5.872s

もう1つのケース:

remote: Counting objects: 18389, done.
remote: Compressing objects: 100% (4951/4951), done.
fatal: The remote end hung up unexpectedly MiB | 22 KiB/s      
fatal: early EOF
fatal: index-pack failed

real    7m18.359s
user    0m4.448s
sys     0m1.860s
4

1 に答える 1

7

これはおそらくネットワーク接続の喪失です-エラー99はsshから来ています

Connection Closed By Remote Host 

で試してみてください

GIT_TRACE=1 git clone REPO new_dir

これにより、タイムアウトしている場所を正確に知ることができます。

于 2012-11-09T22:16:17.717 に答える