[TOC]
Git push 报错
今天往 github 上传 post,又出现报错
fatal: 无法访问 'https://github.com/jcxs2014/jcxs2014.github.io.git/':LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
网上查了一会儿,找到一个解决方案:
$ git config --global --unset http.proxy
$ git config --global --unset https.proxy
然后再 push ,成功结束,没有报错。
2021-11-29 20:57