SSL certificate problem

  • 报错’fatal: unable to access “https://github.com/xxx/": SSL certificate problem: unable to get local issuer certificate'
  • 一般是因为开了代理,配置下即可解决。
git config --global --unset http.proxy
git config --global --unset https.proxy
  • 或者,特殊情况直接不验证ssl证书(危)
git config --global http.sslVerify false