##質問
WSL1、WSL2ともにのUbuntu 20.04 LTSでgit cloneを実行するとgnutls_handshake() failed: Access was deniedエラーになります。プロキシは設定しておりません。
皆様のWSL + Ubuntu20.04環境では正常にgit cloneできていますでしょうか(ググっても同事象報告が少なさそうなのでおそらくできていると思いますが。)。
解決方法や手がかりを探る方法や手順をお教えいただけませんでしょうか。
ご不明な点などには適宜追記してまいりますので、どうぞよろしくお願い申し上げます。
##エラー詳細
Ubuntu2004LTS
1# Ubuntu 20.04.1 LTS 2$ git clone https://github.com/sikkimtemi/selenium 3Cloning into 'selenium'... 4fatal: unable to access 'https://github.com/sikkimtemi/selenium/': gnutls_handshake() failed: Access was denied
##やってみたこと
WSL1でもWSL2でも、Ubuntu 18.04.2 LTS (Bionic Beaver)では以下のように同様のgit cloneコマンドを正常に動作完了までできました。したがってUbuntu 20.04 LTS周辺、あるいは私のPC設定に起因するエラーなのかも、と想像しております。
Ubuntu1804LTS
1# Ubuntu 18.04.2 LTS 2$ git clone https://github.com/sikkimtemi/selenium 3Cloning into 'selenium'... 4remote: Enumerating objects: 36, done. 5remote: Total 36 (delta 0), reused 0 (delta 0), pack-reused 36 6Unpacking objects: 100% (36/36), done.
<追記1>
似た質問(英語) への回答にありました、git config --system --unset credential.helper というコマンドでも同エラー「fatal: unable to access 'https://github.com/sikkimtemi/selenium/': gnutls_handshake() failed: Access was denied」が出て現象は改善されませんでした。
<追記2>
GIT_TRACE_PACKET=1 GIT_TRACE=1 GIT_CURL_VERBOSE=1 git clone コマンドの実行結果です。より詳細なエラー内容が表示されています。(Daregadaさん、ありがとうございます!)
Ubuntu2004LTS
1# GIT_TRACE_PACKET=1 GIT_TRACE=1 GIT_CURL_VERBOSE=1 git clone https://github.com/sikkimtemi/selenium 215:15:50.930158 git.c:439 trace: built-in: git clone https://github.com/sikkimtemi/selenium 3Cloning into 'selenium'... 415:15:52.909067 run-command.c:663 trace: run_command: git-remote-https origin https://github.com/sikkimtemi/selenium 5* Couldn't find host github.com in the .netrc file; using defaults 6* Trying 52.192.72.89:443... 7* TCP_NODELAY set 8* Connected to github.com (52.192.72.89) port 443 (#0) 9* found 381 certificates in /etc/ssl/certs 10* ALPN, offering h2 11* ALPN, offering http/1.1 12* gnutls_handshake() failed: Access was denied 13* Closing connection 0 14fatal: unable to access 'https://github.com/sikkimtemi/selenium/': gnutls_handshake() failed: Access was denied
##環境
Windows 10 Pro
バージョン: 2004
OSビルド: 19041.450
回答1件
あなたの回答
tips
プレビュー