git报错:fatal: unable to access 'https://github.com/xxxxxx/xxxxxx.github.io.git/': OpenSSL SSL_read: Connection was reset, errno 10054

本文最后更新于:2022年6月11日 下午

在使用hexo g -d推送博客时,报错:

1
fatal: unable to access 'https://github.com/xxxxxx/xxxxxx.github.io.git/': OpenSSL SSL_read: Connection was reset, errno 10054

原因:

一般是这是因为服务器的SSL证书没有经过第三方机构的签署,所以才报错

解决方法:

1
2
3
git config --global http.sslVerify "false"
# 再次执行
hexo g -d

参考:https://blog.csdn.net/weixin_45963617/article/details/123132273


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!