添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
热心肠的茶叶  ·  How to fix git error: ...·  15 小时前    · 
礼貌的凳子  ·  curl error 56: ...·  15 小时前    · 
阳刚的饭盒  ·  error: RPC failed; ...·  15 小时前    · 
睿智的甜瓜  ·  报错:curl: (56) Recv ...·  15 小时前    · 
坚韧的冲锋衣  ·  What is Cosine ...·  5 月前    · 
坏坏的蚂蚁  ·  CopyTextureSupport - ...·  6 月前    · 

下载 Github 仓库时出现如下错误

remote: Enumerating objects: 150, done.
remote: Counting objects: 100% (150/150), done.
remote: Compressing objects: 100% (90/90), done.
error: RPC failed; curl 56 GnuTLS recv error (-9): A TLS packet with unexpected length was received.
fatal: The remote end hung up unexpectedly
fatal: 过早的文件结束符(EOF)
fatal: index-pack 失败

参考git error: RPC failed; curl 56 GnuTLSGit 克隆错误‘RPC failed; curl 56 Recv failure....’ 及克隆速度慢问题解决,有可能是http缓存不够或者网络不稳定问题

  • 对于网络不稳定问题
  • Rebuilding git with openssl instead of gnutls fixed my problem.

  • 对于http缓存不够
  • # httpBuffer加大    
    $ git config --global http.postBuffer 524288000
    

    重新设置了http缓存,不过最后是通过码云的方式解决的

  • 先将Github仓库拉取到码云仓库
  • 在从码云上下载
  •