本文主要是介绍使用SourceTree报错:error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
解决方法1:可以使用内嵌版本
解决2 :如果用的是系统版本则,更新系统git版本(我就是这么解决的)
解决3:(stackoverflow上有人说的,试了下没用,可以试一下)
I had the same problem and my fix was: 1.in command line check your tls version with command: git config http.sslVersion 2.if the version is tslv1.0 than you have to update it to tslv1.2 with command: git config --global --unset http.sslVersion git config --global --add http.sslVersion tslv1.2 and than the error won't be present anymor
这篇关于使用SourceTree报错:error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!