1. 程式人生 > >[Git error] OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443

[Git error] OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443

git clone時報錯:
OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443

解決方案:
env 命令設定 GIT_SSL_NO_VERIFY 環境變數為 ture,並同時呼叫 git clone 命令
env GIT_SSL_NO_VERIFY=true git clone https://<host_name/git/project.git

原文連結