git 下载报错:fatal: unable to access 'https://github.com/shenhai/phpGrace.git/': SSL certificate problem

问题描述:当我在使用 git 下载 phpGrace 时,出现报错信息: fatal: unable to access ‘https://github.com/shenhai/phpGrace.git/’: SSL certificate problem: unable to get local issuer certificate

输入命令:

git clone https://github.com/shenhai/phpGrace.git

git 下载报以下错误:

在这里插入图片描述

解决方法:把 https 改成 git

正确命令:

git clone git://github.com/shenhai/phpGrace.git

运行结果:

在这里插入图片描述

同时桌面出现了我要下载的文件 phpGrace

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/studyphp123/article/details/89452501