Does anyone have ideas or suggestions for resolving this error?
Hi everyone, I'm trying to clone the Zephyr repository, but I'm encountering the following error:
Cloning into 'zephyrproject'...remote: Enumerating objects: 1150419, done.remote: Counting objects: 100% (495/495), done.remote: Compressing objects: 100% (281/281), done.error: RPC failed; curl 18 transfer closed with outstanding read data remainingerror: 3650 bytes of body are still expectedfetch-pack: unexpected disconnect while reading sideband packetfatal: early EOFfatal: fetch-pack: invalid index-pack output
Cloning into 'zephyrproject'...remote: Enumerating objects: 1150419, done.remote: Counting objects: 100% (495/495), done.remote: Compressing objects: 100% (281/281), done.error: RPC failed; curl 18 transfer closed with outstanding read data remainingerror: 3650 bytes of body are still expectedfetch-pack: unexpected disconnect while reading sideband packetfatal: early EOFfatal: fetch-pack: invalid index-pack output
- I’ve already tried increasing the Git buffer size (
git config --global http.postBuffer 524288000
git config --global http.postBuffer 524288000
). - My internet connection is stable, and I have sufficient disk space. - I also tried using a shallow clone (
--depth 1
--depth 1
), but the issue persists.
Does anyone have ideas or suggestions for resolving this?