2017-04-20 11 views
1

私はGruntを使用してAngular Webサイトを構築しています。無駄に以下の私が試してみましたGrunt/Git throws github.com:443への接続に不明なSSLプロトコルエラーが発生しました

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 

:以下

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与える:約1〜3でのビルドでは、私は次のエラーが表示

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 [email protected] 

"git ls-remote --tags --heads https://github.com/FortAwesome/Font-Awesome.git"というコマンドを入力するたびに機能します。

答えて

0

私はこれが愚かに聞こえるかもしれ知っていますが、仮想マシン上でこれを実行していますか?もしそうなら、私たちが同様の問題を抱えていたので、それがアクセスできるCPUコアの数を増やしてみてください。これはそれを修正するようでした。

+1

これはうんざりしているように、これはうまくいった。これは10回連続で構築されており、これまで以上に管理しています。ありがとう! –

1

ドメイン名がIPアドレスに置き換えられたときに問題が発生する場合は、ホストファイルにgithub.comを追加して、正しく解決されていることを確認してください。問題が表示されている

ライン:

* Couldn't find host github.com in the _netrc file; using defaults 
* timeout on name lookup is not supported 
* Trying 192.30.253.112... 
+0

アイデアはありがたいですが、改善はありません。ライン:* github.com(192.30.253.112)ポート443(#0)に接続すると、github.comが解決されたことが示唆されますか? –

+0

たぶん、これが役立つかもしれないかもしれないかもしれないかもしれない。http://stackoverflow.com/questions/38591553/ignore-invalid-self-signed-ssl-certificate-warning-in-grunt –

関連する問題