我正在使用运行Osx Lion 10.7.5的旧Macbook,这是它支持的最高升级。 在运行git clone时出现此错误。
Veers-Macbook:~ Veer$ git clone https://github.com/heroku/python-getting-started.git
Cloning into 'python-getting-started'...
fatal: unable to access 'https://github.com/heroku/python-getting-started.git/': error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version
基于其他类似问题,我的系统详细信息如下:
Veers-Macbook:~ Veer$ which git
/usr/local/git/bin/git
Veers-Macbook:~ Veer$ git --version
git version 2.3.5
Veers-Macbook:~ Veer$ git config http.sslVersion
tlsv1.2
我运行了这两个命令
git config --global --unset http.sslVersion
git config --global --add http.sslVersion tlsv1.2
要验证我是否运行了配置文件
Veers-Macbook:~ Veer$ git config --global --list
user.name=Gurupratap Matharu
user.email=gurupratap.matharu@gmail.com
credential.helper=osxkeychain
core.excludesfile=/Users/admin/.gitignore
mergetool.sublime.cmd=subl -w $MERGED
mergetool.sublime.trustexitcode=false
merge.tool=sublime
alias.gui=!sh -c '/usr/local/git/libexec/git-core/git-gui'
http.sslversion=tlsv1.2
看起来配置文件具有http tlsv1.2,但错误仍然存在。
您能指导我如何解决此问题。我唯一的目的是通过命令行使用github。
答案 0 :(得分:0)
这很可能是由于对狮子的旧加密方法造成的,互联网已宣布弃用该加密方法(例如https://githubengineering.com/crypto-removal-notice/)
对于一种解决方案,您可以尝试Tigerbrew https://github.com/mistydemeo/tigerbrew
对于其他实验解决方案,我在这里制作了一个非常简单的软件包:http://try.gitea.io/donbright/lm,如果您已经安装了Xcode + Xcode命令行工具,它将在Lion机器上引导curl和git。但是,您可能无法使用复杂的git配置,因此您可能必须清除配置。