git

作者: 小飞牛牛 | 来源:发表于2022-01-25 08:56 被阅读0次

    SSL certificate problem: self signed certificat

    从Gitlab拉取数据提示:
    SSL certificate problem: self signed certificat 异常。

    问题原因:如果gitlab只支持https地址,需要client配置忽略https证书检验

    解决方案:打开Git Bash运行如下命令

    export GIT_SSL_NO_VERIFY=true
    
    git config --global http.sslVerify "false"
    

    相关文章

      网友评论

          本文标题:git

          本文链接:https://www.haomeiwen.com/subject/gaxwhrtx.html