欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Git ----fatal: unable to access xxx: SSL certificate problem: self signed certificate in certificate

程序员文章站 2022-07-13 21:45:19
...

fatal: unable to access ‘http://gitee.com/yhhyu2015/CommonUtils.git/’: SSL certificate problem: self signed certificate in certificate chain

如果连接git是报错unable to access ‘https://****’: SSL certificate problem: Invalid 因为有些服务器是https是自签名的. 所以在命令行上运行以下命令 将安全验证关掉

 git config --global http.sslVerify false 

转载