Github使用时的常见错误和解决方案

李白

发布时间:

AI
https://bingzhuyeyou.com/

Github是微软旗下的软件托管平台,  全世界的编程人员会将自己的项目上传到这里来分享, 早些年间国内是可以愉快访问的, 目前的话由于很多原因导致使用时问题频出. 本篇文章会记录Github使用时的常见错误和解决方法:

 

  1. error: RPC failed; curl 92 HTTP/2 stream 5 was not closed cleanly before end of the underlying stream
    1. git config --global http.version HTTP/1.1
  2. error: RPC failed; curl 28 OpenSSL SSL_read: Connection was reset, errno 10054fatal: error reading section header ‘shallow-info’
    1. git config --global http.sslVerify 'false'
  3. remote: Repository not found.
    1. 检查一下你输入的地址是否正确。
  4. error: RPC failed; curl 18 transfer closed with outstanding read data remaining
    1. 由于Http协议错误,当Pull或者Clone的时候, 因为curl的postBuffer默认值太小的原因,而项目可能本身比较大导致下载失败, 可以加大缓存区
    2. git config http.postBuffer 10485760000
    3. git config --list 
      查看新的postBuffer 大小
https://bingzhuyeyou.com/

发表评论

没有账号? 忘记密码?