unable to access 'https://github.com/用户名/仓库名.git/': SSL certificate problem: self问题解决

前言

有段时间没有使用git命令了,今天想在github上找个项目玩玩,但是发现clone不下来,百度没有找到解决方案,于是又把git重装了一遍,发现还是不能clone,而且不能push,而且是同样的错误。于是Google了一下找到解决方案

原因

Git client in Fisheye/Crucible server perform verification on the SSL certificate and stop the process if it is unknown.

大概意思是:Fisheye/Crucible服务器不能识别git的SSL证书,所以操作停止执行。

解决

  • 在git命令行输入以下命令即可
git config --global http.sslVerify false

版权声明:本文为qq_41262903原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。