hexo执行hexo d时报错:OpenSSL SSL_read:Connection was aborted , errno 10053

hexo执行hexo d时报错:OpenSSL SSL_read: Connection was aborted, errno 10053

git遇到fatal: unable to access ‘https://github.com/xxx/xxx/’:OpenSSL SSL_read: Connection was aborted, errno 10053的问题

原因

Git默认限制推送的大小,运行命令更改限制大小即可

解决方法

  1. 增加缓冲
1
git config http.postBuffer 524288000
  1. 更改网络认证设置
1
git config --global http.sslVerify "false"