Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

error: RPC failed; curl 92 HTTP/2 stream 0 was not closed cleanly: PROTOCOL_ERROR (err 1)

Tags:

git

push

error: RPC failed; curl 92 HTTP/2 stream 0 was not closed cleanly: PROTOCOL_ERROR (err 1)

I tried 'push' while writing 'git'. However, the following message does not solve the problem.

enter image description here

like image 380
Sungsoo Kwon Avatar asked Dec 11 '19 09:12

Sungsoo Kwon


1 Answers

You can force git using http version 1.1

git config --global http.version HTTP/1.1 

https://gist.github.com/daofresh/0a95772d582cafb202142ff7871da2fc

like image 176
catalina Avatar answered Sep 18 '22 14:09

catalina