遇到这个问题,查找别人也遇到,省时间不写了直接复制

 

在使用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

git  OpenSSL SSL_connect问题

解决方案: 
env命令设置GIT_SSL_NO_VERIFY环境变量为”ture”,并同时调用正常的git clone命令

env GIT_SSL_NO_VERIFY=true git clone https://<host_name/git/project.git

相关文章:

  • 2022-12-23
  • 2021-06-09
  • 2021-08-02
  • 2021-05-22
  • 2022-12-23
  • 2021-09-10
  • 2021-08-16
  • 2021-12-04
猜你喜欢
  • 2021-11-08
  • 2022-02-04
  • 2021-05-21
  • 2022-12-23
  • 2021-04-12
  • 2022-12-23
  • 2021-07-01
相关资源
相似解决方案