git cloneで出たエラーのまとめ。
Peer reports incompatible or unsupported protocol version
git cloneすると、以下のように、Peer reports incompatible or unsupported protocol version というエラーが出てしまいました。
1 2 3 4 |
# git clone https://github.com/python-gitlab/python-gitlab.git Cloning into 'python-gitlab'... fatal: unable to access 'https://github.com/python-gitlab/python-gitlab.git/': Peer reports incompatible or unsupported protocol version. |
このエラーは何でしょうか?
解決策はどうすればよいのでしょうか?
curl nss ライブラリの更新
Stack Overflowに同様の問題と解決策が載っていました。
I was having the same problem on various CentOS 6 VM's and it turned out to be an issue with stale curl and nss libraries (thanks to this thread for pointing me in the right direction: cURL SSL connect error 35 with NSS error -5961).
The fix that worked for me is just:
yum update -y nss curl libcurl
curl nss ライブラリを更新すればよいようです。
# yum update -y nss curl libcurl
で解決しました。
コメント
[…] git cloneすると、Peer reports incompatible or unsupported protocol versionを参考にする。 $sudo yum update -y nss curl libcurl […]