SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443

后端 未结 14 1226
傲寒
傲寒 2020-11-30 00:08

Since a few days I got an issue with Mac OS High Sierra 10.13.3 : When I run a git clone like git clone github.com/xxx.git failed it print:

14条回答
  •  一生所求
    2020-11-30 00:20

    The problem for me seems to have been how the user has been setup on my local machine to. Using the command
    git push -u origin master
    was causing the error. Removing the switch -u to have
    git push origin master
    solved it for me. It can be scary to imagine how user setup can result in an error related to LibreSSL.

提交回复
热议问题