【真正的解决方法】error: RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054

测试平台:win10

测试软件:Git Bash(源自360软件管家,没有打广告的嫌疑,只是为了纪念我下官网断了5次)


部分引用:https://blog.csdn.net/straightenupryan/article/details/97136776

部分引用:https://www.jianshu.com/p/1031dd2a6c3a


【真正的解决方法】error: RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054_第1张图片

上面是我跪倒的信息


下面是我爬起的信息

  1. git init
    1. 初始化git,绝大多数人肯定是下了git就去下东西了,好运的话确实能一次下完,没做这一步就去按别的贴去设置的,喜提“fatal: not in a git directory”
  2. git config http.postBuffer 524288000
    1. 修改 git 提交文件大小上限
    2. 没 init 过的绝对 “fatal: not in a git directory”
  3. git config --global http.sslVerify "false"
    1. 没 init 过的也绝对 “fatal: not in a git directory”
  4. git clone 【你的git链接】 --depth 1

你可能感兴趣的:(Git)