解决 Git error: unable to get local issuer certificate问题

在win11上使用git命令行克隆项目时出现 unable to get local issuer certificate问题,本文主要记录查找到的解决办法。

$ git clone https://lanedirt.tech/repo.git
Cloning into 'repo'...
fatal: unable to access 'https://lanedirt.tech/repo.git/': SSL certificate problem: unable to get local issuer certificate

主要原因

主要原因是在安装git的时候选择HTTPS transport backend时选择了OpenSSL library, 更为详细原因见源链接
在这里插入图片描述

解决问题方法

不用重新安装git,可以直接修改git设置如下

git config --global http.sslbackend schannel