git cloneするときに「server certificate verification failed. CAfile: none CRLfile: none」エラーが発生した

git_branchWeb開発

皆さん、こんにちは!

えー、先日ですね。。

新しいubuntu環境を構築して、git cloneをしたら。。

証明書のエラーがでまして。

これはなんぞということで、調べてみました。

環境

このエラーが発生した環境は以下です。

Ubuntu Server 20.04.2 LTS

エラー内容

まず、なにをしてこのエラーがでたのかを説明しますと。

pyenvをインストールしたかったわけです。

コマンドをたたいてみると、以下エラーが発生しました。

# git clone http://github.com/pyenv/pyenv.git ~/.pyenv
Cloning into '/root/.pyenv'...
fatal: unable to access 'http://github.com/pyenv/pyenv.git/': server certificate verification failed. CAfile: none CRLfile: none

解決方法

単に証明書がもとから入っていなかっただけみたいです。

なので、以下コマンドでインストールしたら解決しました!

# apt-get install --reinstall ca-certificates

以上です。

ではでは!

参考

github: server certificate verification failed
I just created a github account and a repository therein, but when trying to create a local working copy using the recommende url via git clone ...
タイトルとURLをコピーしました