+ 我要发布
我发布的 我的标签 发现
浏览器扩展
斑点象@Edge

git push报错:HTTP/2 stream 1 was not closed cleanly before end of the underlying stream

使用 git push 向github push的时候发现一直提示:HTTP/2 stream 1 was not closed cleanly before end of the underlying stream 问题原因:git默认使用的通信协议出现了问题,可以通过将默认通信协议修改为http/1.1来解决该问题。 解决方法: ``` git config --global http.version HTTP/1.1 ```
Git
我的笔记