新电脑安装git ,克隆个项目,但是发现clone不下来,
unable to access ‘https://github.com/dongguo4812/article.git/’: SSL
certificate problem: unable to
原因
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