错误
fatal: unable to access ‘https://github.com/xxx’: OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
解决方案
git config --global --unset http.proxy
git config --global --add http.proxy “host:post”
git config --global --unset remote.origin.proxy
git config --global --add remote.origin.proxy “host:port”
git config --global http.sslVerify false
参考
https://stackoverflow.com/questions/49345357/fatal-unable-to-access-https-github-com-xxx-openssl-ssl-connect-ssl-error
https://www.jianshu.com/p/3ca2d0f049e7