您的位置:首页 > 编程语言

github|fatal:unable to access|OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com 443

2017-08-19 14:45 2321 查看
在公司使用git来克隆仓库报了错误,如下:

fatal: unable to access ‘https://github.com/xingbuxing/TA-Lib-in-chinese.git/‘: 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


网上的解释可参考: http://schnell18.iteye.com/blog/2031397
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  github ssl openssl
相关文章推荐