我正在使用Grunt构建一个Angular网站。在大约三分之一的版本中,我看到以下错误:
ECMDERR Failed to execute "git ls-remote --tags --heads https://github.com/FortAwesome/Font-Awesome.git", exit code of #128 fatal: unable to access 'https://github.com/FortAwesome/Font-Awesome.git/': Unknown SSL protocol error in connection to github.com:443
Seeting GIT_CURL_VERBOSE = 1和GIT_TRACE_PACKET = 2给出以下内容:
Additional error details:
* Couldn't find host github.com in the _netrc file; using defaults
* timeout on name lookup is not supported
* Trying 192.30.253.112...
* TCP_NODELAY set
* Connected to github.com (192.30.253.112) port 443 (#0)
* ALPN, offering http/1.1
* Cipher selection: ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH
* successfully set certificate verify locations:
* CAfile: C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
CApath: none
* Unknown SSL protocol error in connection to github.com:443
* stopped the pause stream!
* Closing connection 0
fatal: unable to access 'https://github.com/FortAwesome/Font-Awesome.git/': Unknown SSL protocol error in connection to github.com:443
我试过以下无济于事:
git config --global --add http.sslVersion tlsv1.2
git config --global http.sslverify false
git config --global url."https://".insteadOf git://
git config --global url."https://github.com/".insteadOf git@github.com
输入命令" git ls-remote --tags --heads https://github.com/FortAwesome/Font-Awesome.git"每次都有效。
答案 0 :(得分:2)
当域名被IP地址替换时出现问题,尝试将github.com添加到您的hosts文件中并确保它已正确解析。
问题可见的行:
* Couldn't find host github.com in the _netrc file; using defaults
* timeout on name lookup is not supported
* Trying 192.30.253.112...
答案 1 :(得分:1)
我知道这可能听起来很愚蠢,但你是在虚拟机上运行吗?如果是这样,请尝试增加它可以访问的CPU核心数,因为我们遇到了类似的问题,这似乎解决了这个问题。