私は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"というコマンドを入力するたびに機能します。
これはうんざりしているように、これはうまくいった。これは10回連続で構築されており、これまで以上に管理しています。ありがとう! –