我试图克隆一些存储库,但后来我收到了错误:
$ git clone --recursive https://some-url.git
Cloning into 'project'...
fatal: unable to access 'https://https://some-url.git/': Unknown SSL protocol error in connection to
some-url.git:443
我已经读过git存储库移动强制TLS1.0并且由于POODLE漏洞而不再支持SSLv3通信。但我不知道这个错误消息是否意味着我的git客户端只知道谈论SSLv3并且服务器拒绝或者服务器只知道谈论SSLv3而我的客户端否认。如果问题出在我的客户端,我该如何配置它以使用TLS;另一方面,如果它是服务器,我该如何解决?
SourceTree和scm git(console和gui)都收到错误。