首页 > 代码库 > git clone 远程仓库报错error setting certificate verify locations
git clone 远程仓库报错error setting certificate verify locations
系统:windows10
今天从github上克隆项目时报错:
原因:
1.git配置没有修改
之前配置的是公司gitlab账号的信息,和我当前要克隆的github的配置信息不同,没有注意修改
2.执行以下命令:
git config --system http.sslverify false
修改后即可成功克隆
参考地址:http://stackoverflow.com/questions/3778042/github-error-cloning-my-private-repository
该处提供两种方案,
1.
git config --system http.sslcainfo "C:\Program Files (x86)\git\bin\curl-ca-bundle.crt"
2.
git config --system http.sslverify false
均会修改git的配置文件: [git-install-dir]/etc/gitconfig file
由于直接测试第二种就解决问题了,所以没有验证第一种方法是否有效
git clone 远程仓库报错error setting certificate verify locations
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。