您的当前位置:首页正文

git报错:error RPC failed; curl 56 OpenSSL SSL_read SSL_ERROR_SYSCALL, errno 10054

2024-11-20 来源:个人技术集锦

error: RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054

push时报错

iconfont文件更新后push 报错

$ git push
Enumerating objects: 34, done.
Counting objects: 100% (34/34), done.
Delta compression using up to 8 threads
Compressing objects: 100% (19/19), done.
Writing objects: 100% (19/19), 27.61 KiB | 1.25 MiB/s, done.
Total 19 (delta 10), reused 0 (delta 0)
error: RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054
fatal: the remote end hung up unexpectedly
fatal: the remote end hung up unexpectedly
Everything up-to-date

  • 首先尝试修改上传大小限制问题

    git config --global http.postBuffer 524288000
    

调整postbuffer为500M

clone报错
  • 尝试忽略SSL证书错误

    git config --global http.sslVerify "false"
    
    
显示全文