- 作者: 丶布布
一、SSL certificate problem: unable to get local issuer certificate
问题:当我从GitHub上克隆git clone
一个项目到本地的时候,系统出现了如下提示:
SSL certificate problem: unable to get local issuer certificate
原因:这里其实是电脑没有安装对应的ca证书,所以无法通过https连接到git服务器。
解决:通过设置git的ssl验证跳过了这个错误:
①打开git命令操作框
②配置http.sslVerify为false
Git命令:git config --global http.sslVerify false
二、fatal: not a git repository (or any of the parent directories): .git
问题:在使用git做本地的项目上传到github的时候,在进行远程建立连接的时候,出现了如下错误:
fatal: not a git repository (or any of the parent directories): .git
措施:这个错误说明了没有.git
这样的一个目录,所以只需要git init
一下,就可以解决了,然后再重新建立远程连接。
未完待续…
戳戳小手帮忙点个免费的赞和关注吧,嘿嘿。 |