致命的: 'https://github.com/laravel/homestead.git/' にアクセスできません: 証明書検証の設定エラー

Git プロンプトで証明書設定エラーが発生し、場所を確認するソリューションが表示される

sdhongjun  2016-08-07 19:12:51   33105  お気に入り 15

分類欄: システム関連

著作権

エラーメッセージ

TortoiseGit を使用してプル コマンドを実行すると表示されます

git.exe pull --progress --no-rebase -v "origin"

fatal: unable to access 'https://github.com/konsumer/arduinoscope.git/': error setting certificate verify locations:
CAfile: D:\Program Files\Git\mingw64/bin/curl-ca-bundle.crt
CApath: none
  • 1
  • 2
  • 3
  • 4
  • 5

git バージョン 2.9.2.windows.1

解決

まず git bash ウィンドウを開き
、次のコマンドを実行します。

git config --system http.sslcainfo "C:\Program Files (x86)\git\bin\curl-ca-bundle.crt"
  • 1

(正しいファイルパスに変更するように注意してください) または

git config --system http.sslverify false
  • 1

コマンドを使用してgit config --system http.sslverify false問題を解決します。

参考記事

https://blog.csdn.net/sdhongjun/article/details/52144253

おすすめ

転載: blog.csdn.net/qiuziqiqi/article/details/114028632