GITLAB SSL 证书问题:无法获取本地颁发者证书

GITLAB SSL certificate problem: unable to get local issuer certificate

我正在尝试在 gitLab 中推进我的第一个项目,但我收到此错误“fatal: unable to access 'https://.git.: SSL 证书问题: 无法获取本地颁发者证书"

我终于在这里找到了解决方案 https://newbedev.com/invalid-ssl-certificate-when-pushing-to-git-server

阅读并进行设置后,您应该做

git config --system http.sslCAInfo C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt"

在您上传到 gitLab 的项目的根目录中,您应该这样做

git config http.sslCAInfo "C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt"