报错及原因
fatal: unable to access ‘https://github.com/xxx/’: HTTP/2 stream 1 was not closed cleanly before end of the underlying stream
http/2 和 http/1.1之间有个区别是“HTTP2 基于 SPDY,专注于性能,最大的一个目标是在用户和网站间只用一个连接”。
解决方法
- 方法一:关闭所有github所有页面,关闭所有和github之间的连接,然后再次push,就成功了。
- 方法二:将通信协议由 http/2 改为 http/1.1 的方法
$ git config --global http.version HTTP/1.1