今天使用 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