錯誤信息git
使用TortoiseGit執行pull命令時顯示github
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
解決方法bash
先打開git bash窗口 執行命令:curl
git config --system http.sslcainfo "C:\Program Files (x86)\git\bin\curl-ca-bundle.crt"
(注意修改成正確的文件路徑)或ui
git config --system http.sslverify false
我使用git config --system http.sslverify false
命令解決問題。url
參考文章code