early EOF fatal: fetch-pack: invalid index-pack output
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
fetch-pack: unexpected disconnect while reading sideband packet
fatal: early EOF
fatal: fetch-pack: invalid index-pack output
$ git clone http://192.168.123.191/projectgrp/SchemesService.git
Cloning into 'SchemesService'...
remote: Counting objects: 9470, done.
remote: Compressing objects: 100% (7881/7881), done.
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
fetch-pack: unexpected disconnect while reading sideband packet
fatal: early EOF
fatal: fetch-pack: invalid index-pack output
Solution
First, turn off compression:
git config --global core.compression 0
Next, let's do a partial clone to truncate the amount of info coming down:
git clone --depth 1 http://192.168.123.191/projectgrp/SchemesService.git
When that works, go into the new directory and retrieve the rest of the clone:
git fetch --unshallow
Recent Comments