Replies: 1 comment
-
The error you’re encountering (RPC failed; curl 18 transfer closed with outstanding read data remaining) typically happens when there’s an issue with large repository transfers, network instability, or Git’s buffer settings. Here are some steps to troubleshoot and resolve the issue:
git config --global http.postBuffer 524288000
git config --global http.version HTTP/1.1 git config --global core.compression 0
git clone [email protected]:/.git git clone --depth 1 https://github.com//.git
|
Beta Was this translation helpful? Give feedback.
-
Select Topic Area
Question
Body
Hi all, already for days we cannot clone various repositories from Github (so far I haven't isolated this to specific repos) and get the following strange output:
git clone https://github.com//.git
Cloning into ''...
remote: Enumerating objects: 5471, done.
remote: Counting objects: 100% (1099/1099), done.
remote: Compressing objects: 100% (190/190), done.
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
error: 6670 bytes of body are still expected
fetch-pack: unexpected disconnect while reading sideband packet
fatal: early EOF
fatal: fetch-pack: invalid index-pack output
Note that we have tried setting the git HTTP/1.1 version and we still get this a most of the time.
Beta Was this translation helpful? Give feedback.
All reactions