git clone報錯——SSL certificate problem: self signed certificate in certificate chain
阿新 • • 發佈:2021-02-12
問題描述
使用Git工具進行git clone專案時,彈出框提示資訊為“fatal: unable to access ‘https://…git/’: SSL certificate problem: self signed certificate in certificate chain”
問題分析
提示資訊為SSL認證失敗,可以關閉SSL的認證。
公司bitbucket只支援https地址,需要client配置忽略https證書檢驗。
解決方案
開啟Git Bash執行如下命令
export GIT_SSL_NO_VERIFY=true git config --global http.sslVerify "false"
在windows的命令列中,進入到git命令所在的磁碟位置,執行下面的git命令
git config --global http.sslVerify false
可參閱:
- https://www.cnblogs.com/shun7man/p/14029668.html
- https://blog.csdn.net/qiushisoftware/article/details/75330643