使用 git pull 拉取代码时,出现如下错误:
git pull
SSL certificate problem: unable to get local issuer certificate
这通常是由于 Git 客户端无法验证 SSL 证书的合法性而引起的。
在 Git 配置中添加以下选项来解决 SSL 证书问题。
git config --global http.sslVerify false
此选项将禁用 Git 对 SSL 证书的验证。