今天使用 git 出现如下错误:
error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version

在网上搜了一下,发现github 2月1日发了个公告Weak cryptographic standards removal notice,简而言之就是不支持TLSv1/TLSv1.1,网上查到的解决办法主要有2种:

1.更新git和tortoisegit至最新版,git最新版(下载地址)

2.检查TLS版本

如果是tlsv1.0,则用下面一句命令行更新至tlsv1.2

git config --global http.sslVersion tlsv1.2

相关文章:

  • 2021-11-05
  • 2022-12-23
  • 2021-09-19
  • 2022-12-23
  • 2021-12-13
  • 2022-12-23
  • 2022-12-23
  • 2021-05-01
猜你喜欢
  • 2022-01-12
  • 2021-10-23
  • 2021-04-19
  • 2021-04-18
  • 2022-12-23
  • 2021-10-03
相关资源
相似解决方案