Re: Communication channel interruption
From: Junio C Hamano <hidden>
Date: 2023-12-13 15:32:49
Alexander Zhirov [off-list ref] writes:
When cloning a repository from GitHub, I have a channel break, although the connection is stable. What could be the problem? # git clone https://github.com/Thinstation/thinstation.git Cloning into 'thinstation'... remote: Enumerating objects: 79839, done. remote: Counting objects: 100% (535/535), done. remote: Compressing objects: 100% (319/319), done. error: RPC failed; curl 92 HTTP/2 stream 5 was not closed cleanly: CANCEL (err 8) error: 7473 bytes of body are still expected fetch-pack: unexpected disconnect while reading sideband packet fatal: early EOF fatal: fetch-pack: invalid index-pack output
A guess in the dark without knowing Git version or platform on which
you are seeing this symptom, but it would help to read "What does
http.postBuffer really do?" in
$ git help faq
and then to ask Google about "RPC failed; curl 92", which would show
mainly two suggestions from various places. Perhaps
$ git -c http.version=HTTP/1.1 clone https://github.com/Thinstation/thinstation.git
may help?