Github是微软旗下的软件托管平台, 全世界的编程人员会将自己的项目上传到这里来分享, 早些年间国内是可以愉快访问的, 目前的话由于很多原因导致使用时问题频出. 本篇文章会记录Github使用时的常见错误和解决方法:
- error: RPC failed; curl 92 HTTP/2 stream 5 was not closed cleanly before end of the underlying stream
-
git config --global http.version HTTP/1.1
-
- error: RPC failed; curl 28 OpenSSL SSL_read: Connection was reset, errno 10054fatal: error reading section header ‘shallow-info’
-
git config --global http.sslVerify 'false'
-
- remote: Repository not found.
- 检查一下你输入的地址是否正确。
- error: RPC failed; curl 18 transfer closed with outstanding read data remaining
- 由于Http协议错误,当Pull或者Clone的时候, 因为curl的postBuffer默认值太小的原因,而项目可能本身比较大导致下载失败, 可以加大缓存区
-
git config http.postBuffer 10485760000
-
git config --list 查看新的postBuffer 大小