Git SSL 根 CA

Git SSL 根 CA

我想要配置我的本地 Git 客户端安装以使用 Microsoft Windows 7+ 或 Git ca-bundle.crt 中的预加载根证书。

有没有办法配置 Git 以使用已经可用的 Windows 证书(即 Comodo、DigiCert)?

ca-bundle.crt 文件中已有哪些根 CA 证书?

答案1

通过配置选项http.sslCAInfohttp.sslCAPath您可以指示 git 使用您想要的 CA 信息。您可以使用命令openssl x509 -text -in ca-bundle.crt查看其解码的内容。

相关内容