git clone出现SSL错误
在学习git的时候,发现不能使用git clone从github.com下载,报了个ssl错误。
Cloning into cancan...
error: SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed while accessing https://github.com/ryanb/cancan.git/info/refs
fatal: HTTP request failed
在网上找了一下,比较简单的解决办法:
在运行中输入:CMD→回车打开命令提示符窗口
git config --global http.sslVerify false
git clone出现SSL错误的更多相关文章
- 升级了git版本后git clone报ssl错误的解决方法
		由于升级了git版本,git clone 的时候报了如下的错误 fatal: unable to access 'https://github.com/open-falcon/falcon-plus. ... 
- 虚拟机linux下git clone 报SSL connect error错误
		今天在安装azkaban时,用git clone https://github.com/azkaban/azkaban.git,虚拟机报了SSL connect error,翻了很多博客,有的说是gi ... 
- git clone的低级错误
		犯了一个低级错误: server ip: 192.168.40.41 有一个git账户 所有的git仓库都在/home/git仓库下 比如/home/git/u-boot-2018.07-fmxx.g ... 
- git clone 出错SSL certificate problem, verify that the CA cert is OK.
		先调用这个 export GIT_SSL_NO_VERIFY=true 之后再执行git clone 
- Git clone出现SSL certificate problem
		1 可以在cmd下,设置 git config --global http.sslVerify false git clone XXX 即可. 2 TortoiseGit设置 打开TortoiseG ... 
- 【error】git clone: SSL certificate problem: unable to get local issuer certificate
		报错: $ git clone https://github.XXX.git Cloning into 'XXX'... fatal: unable to access 'https://github ... 
- git clone时,报403错误,完美解决方案
		首先命令行操作结果如下: root@zhiren-PowerEdge-T110-II:/zrun# git clone https://git.coding.net/xxxxxxxx/xxxx.git ... 
- git clone错误
		git clone错误 Initialized empty Git repository in ***/.git/ error: The requested URL returned error: 4 ... 
- git clone 错误ca-certificates.crt
		git clone https://github.com/baoyiluo/selfblog.git Cloning into 'selfblog'... error: server certific ... 
随机推荐
- 改ext界面
			以前的ext界面 被我给换成了 为的是响应整个系统平台的颜色色调---绿色,还得科技搭配蓝色,我可是想破了脑袋,才想到这种蓝绿搭配,领导们不知道怎么想的 
- HNCU1323:算法2-1:集合union (线性表)
			http://hncu.acmclub.com/index.php?app=problem_title&id=111&problem_id=1323 题目描述 假设利用两个线性表LA和 ... 
- CF 322B Ciel and Flowers 贪心水题
			B. Ciel and Flowers time limit per test 1 second memory limit per test 256 megabytes input standard ... 
- 使用docker搭建kafka环境
			Requirements 最近学习了下kafka,为方便搭建环境,使用docker进行部署. 需要首先安装docker的环境.要求操作系统是linux的64位系统. docker的安装(适于rpm/d ... 
- Linux负载均衡软件LVS之四(测试篇-完)
			一.启动LVS集群服务LVS负载均衡管理和使用有两种方式,一种是以ipvsadm命令行脚步与ldirectord监控方式,一种是以Piranha工具进行管理和使用.下面分别介绍. 1.利用ipvsad ... 
- Android 性能优化——内存篇
			一.android官方一些内存方面的内存tips 1.避免创建不必要的对象. 如尽量避免字符串的加号拼接,可以使用StringBuilder来拼接. 如果需要TextView设置多个字符串片段,可以使 ... 
- Swift3.0服务端开发(三) Mustache页面模板与日志记录
			本篇博客主要介绍如果在Perfect工程中引入和使用Mustache页面模板与日志记录系统.Mustache页面模板类似于PHP中的smarty模板引擎或者Java中的JSTL标签.当然Mustach ... 
- 机器学习( Machine Learning)的定义
			关于机器学习有两个相关的定义: 1)给计算机赋予没有固定编程的学习能力的研究领域. 2)一种计算机的程序,能从一些任务(T)和性能的度量(P),经验(E)中进行学习.在学习中,任务T的性能P能够随着P ... 
- LightOJ 1030 Discovering Gold
			期望,$dp$. 设$ans[i]$为$i$为起点,到终点$n$获得的期望金币值.$ans[i]=(ans[i+1]+ans[i+2]+ans[i+3]+ans[i+4]+ans[i+5]+ans[i ... 
- 【C#】Switch datatype between object and byte[]
			This sample shows how to turn object to byte[], as well as turn byte[] to object. So,I can turn any ... 
