问题##
我在linux服务器上用 git clone 命令去clone github上仓库的时候,git提示如上错误
解决办法##
- 在
.gitconfig
文件中添加如下配置:
[http]
sslVerify = false
- 使用配置命令:
git config --global http."sslVerify" false
即可
延伸##
可以配置哪些网站需要设置这个属性,哪些网站不需要设置这个属性,配置如下:
[http "https://github.com/"]
sslVerify = false
配置命令:
git config --global http."https://github.com/".sslVerify false
但是我没有试成功,暂时还不知道原因