git clone 提示Server aborted the SSL handshake

今天想看看leveldb代码,拉仓库时候提示了Server aborted the SSL handshake,如下

网上查了下,有说市curl版本太低,有说市ssh钥匙问题,前面那个直接brew upgrade curl,但是依旧提示错误,后面那个感觉不太可能,后来想起是上学的时候为了提git的速度,设置了httpproxy,但是现在proxy失效了,所以gg,把proxy关了就好了

git config --global --unset http.proxy

git config --global --unset https.proxy

原文地址:https://www.cnblogs.com/a1368017681/p/8278865.html

时间: 2024-10-25 17:37:31

git clone 提示Server aborted the SSL handshake的相关文章

curl: (35) Server aborted the SSL handshake 解决办法

# 先删除curl brew uninstall curl # 重新安装curl,带上--with-openssl brew install curl --with-openssl # 然后重启下php-fpm 由群居的蚂蚁之ColorRabbit提供

git clone 提示输入[email protected]的密码

如下: suse:~/ecox # git clone [email protected]:ecox/ecox.git 正克隆到 'ecox'... [email protected]'s password: 但是我都不知道密码是啥,跟登录git库的密码不一样. 然后使用http的方式,报一个错误: use:~/ecox # git clone https://vcs.in.ww-it.cn/ecox/ecox.git 正克隆到 'ecox'... fatal: unable to access

centos: git clone提示Permission denied publickey 问题

问题: Initialized empty Git repository in /data1/mouxuan/fastsocket-private/.git/ Permission denied (publickey). fatal: The remote end hung up unexpectedly 解决步骤: 1.cd ~/.ssh 2.ssh-keygen -t rsa -C [email protected] 遇到 提示一路 回车 遇到有Y 输入Y 3.ssh-add id_rsa

解决git clone报错SSL certificate problem

Git新手一枚,今天进行git clone操作时发生如下问题:提示无效的链接 error: SSL certificate problem: Invalid certificate chain while accessing https://githib.com/...XXXX.git fatal: HTTP request failed 解决方法也很简单,一条命令就搞定了: git config --global http.sslVerify false  

Android关于 https SSL handshake aborted 问题查找

Android 关于 https SSL handshake aborted 问题查找 记录这个问题的定位过程和问题定位的方法 1.问题描述: 项目改为使用 https 协议,访问时发现返回错误代码: 域名:https://sandbox.api.xxx.com 错误:SSL handshake aborted: ssl=0x5ef8e720: I/O error during system call, Connection reset by peer 错误描述:https 在使用 ssl 时候

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://

git clone https协议问题

错误提示: [email protected]:~# git clone https://code.jd.com/15907645082_p/xiaoshuo.git 正克隆到 'xiaoshuo'... error: server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none while accessing https://code.jd.com/1590764

git clone简介

翻译整理自: http://web.mit.edu/~mkgray/project/silk/root/afs/sipb/project/git/git-doc/git-clone.html 在使用git来进行版本控制时,为了得一个项目的拷贝(copy),我们需要知道这个项目仓库的地址(Git URL). Git能在许多协议下使用,所以Git URL可能以ssh://, http(s)://, git://,或是只是以一个用户名(git 会认为这是一个ssh 地址)为前辍. 有些仓库可以通过不只

三十六、git clone简介

翻译整理自: http://web.mit.edu/~mkgray/project/silk/root/afs/sipb/project/git/git-doc/git-clone.html 在使用git来进行版本控制时,为了得一个项目的拷贝(copy),我们需要知道这个项目仓库的地址(Git URL). Git能在许多协议下使用,所以Git URL可能以ssh://, http(s)://, git://,或是只是以一个用户名(git 会认为这是一个ssh 地址)为前辍. 有些仓库可以通过不只