git同步遇到报错“fatal: unable to access 'https://github.com/lizhong24/mysite2.git/': Peer reports incompatible or unsupported protocol version.”

git同步遇到报错“fatal: unable to access ‘https://github.com/lizhong24/mysite2.git/‘: Peer reports incompatible or unsupported protocol version.”

解决办法:

yum update -y nss curl libcurl 

问题解决了。

git同步遇到报错“fatal: unable to access 'https://github.com/lizhong24/mysite2.git/': Peer reports incompatible or unsupported protocol version.”

原文地址:https://www.cnblogs.com/areyouready/p/9021860.html

时间: 2024-08-09 07:53:22

git同步遇到报错“fatal: unable to access 'https://github.com/lizhong24/mysite2.git/': Peer reports incompatible or unsupported protocol version.”的相关文章

git同步遇到报错“fatal: unable to access 'https://github.com/ruanwenwu/newp.git/': Peer reports incompatible or unsupported protocol version.”

git同步遇到报错"fatal: unable to access 'https://github.com/ruanwenwu/newp.git/': Peer reports incompatible or unsupported protocol version." 网上很多人说是因为git版本需要升级.我将git版本升级到最新, [[email protected] tp5test]# git --version git version 2.16.2 问题却依然存在. 最后: y

GitHub Desktop报错fatal: unable to access 'https://github.com……: schannel: failed to open CA file 'C:/Users……bundle.crt': No such file or directory的解决办法

昨天github桌面版push的时候开始报错,提示某个crt文件找不到,大概就是下面这样 fatal: unable to access 'https://github.com/XXX/': schannel: failed to open CA file 'C:/Users/Andrew/AppData/Local/GitHubDesktop/app-1.2.2/resources/app/git/mingw64/bin/curl-ca-bundle.crt': No such file or

fatal: unable to access 'https://github.com/open-falcon/falcon-plus.git/': Peer reports incompatible or unsupported protocol version

git通过git clone下载github上的资源到机器上,结果出现如题所示的错误. [plain] view plain copy [[email protected] data]# git clone https://github.com/pingcap/tidb-docker-compose.git Cloning into 'tidb-docker-compose'... fatal: unable to access 'https://github.com/pingcap/tidb-

(转)git clone出现 fatal: unable to access 'https://github.com/...'的解决办法

如下图所示,当我Git克隆别人的repo时,会发生这样的错误.发现它尝试用http和https代理,后来仔细回想了下,原来是自己用了代理,忘记取消 # 查看当前git 的设置 git config --global -l # 设置代理 git config --global http.proxy http://127.0.0.1:1080 git config --global https.proxy http://127.0.0.1:1080 http://也可以改成sockets5://,但

fatal: unable to access 'https://xxxxx': SSL connect error

/********************************************************************** * fatal: unable to access 'https://xxxxx': SSL connect error * 说明: * VPS中采用CentOS 6系统,git版本太低,使用最新版本,结果SSL有问题. * * 2018-7-9 深圳 宝安西乡 曾剑锋 ******************************************

新目录下使用git管理,未配置.git目录,报错fatal: Not a git repository (or any of the parent directories): .git

fatal: Not a git repository (or any of the parent directories): .git 第一次用Git,遇到这个错误提示,原来是这样的: fatal: Not a git repository (or any of the parent directories): .git This tells you that the directory you're in is not a git repository. Before you can add

VMware导入OVA报错:Unable to access file: c:\a.vmdk.

很多用户在没有备份和容灾的情况下,会选择使用vmware vcenter自带的导出导入功能进行备份,正常情况下可以直接导入使用.一些特殊情况,可能会导致导入失败,下面简单介绍一下常见的问题:1.如果导出虚拟机的时候有光驱有挂载ISO文件,导入的时候会提示找不到驱动器文件,导入失败:2.如果将OVA文件导入到新的环境中,并且运行vmware的硬件和版本差别较大的话,在导入的时候有可能会提示硬件功能不支持,导致导入失败:3.正常导出虚拟机后,如果文件有问题,会提示Unable to access f

git push 提交报错 403 ,处理方式

今天在创建  git 仓库后,我试用 sourcetree 拉取仓库后, 创建了一个分支后,按照正常的操作提交新分支代码,但是报出了下面的错误内容: Pushing to https://github.com/J-Boos/J-Boss-Tool.gitremote: You must verify your email address.remote: See https://github.com/settings/emails.fatal: unable to access 'https://

【报错】fatal: unable to access

安装GIT客户端,使用git clone 时,报错 fatal: unable to access;Failed connect to 127.0.0.1:8582 ... 看到这个地址就想到代理的问题,去看了下系统的hosts文件,没有问题,然后就想GIT本身有没有代理设置,对GIT命令不是很熟悉,使用help,但没有找到有用的信息,后来在知乎找到了这条命令 GIT代理设置 查看是否设置 git config --global http.proxy 设置代理 git config --glob