【TortoiseGit】HTTPS访问Git远程仓库,上报SSL证书错误解决方法

错误:fatal: unable to access 'https://xxx.xxx.com/xxx/xxx.git/': SSL certificate problem: unable to get local issuer certificate

原因:服务器的SSL证书未经过第三方机构签署

解决方法:可以忽略SSL验证解决该问题

TortoiseGit :

TortoiseGit -> Setting --> Edit global .gitconfig 添加如下配置:

[http]
sslVerify = false


Git:
git config --global http.sslVerify false

你可能感兴趣的:(Git)