当前位置:   article > 正文

fatal: unable to access ‘https:/xxxxx‘: OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 0_please type 'yes', 'no' or the fingerprint: yes wa

please type 'yes', 'no' or the fingerprint: yes warning: permanently added

克隆好的项目发现失败
fatal: unable to access ‘https:/xxxxx’: OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 0

当你测试是否连接成功时

ssh -T git@github.com

出现错误Please type ‘yes’, ‘no’ or the fingerprint: yes
Warning: Permanently added ‘github.com’ (ED25519) to the list of known hosts.git@github.com: Permission denied (publickey).

这个错误表明你的SSH密钥没有正确配置或没有添加到GitHub账户中。


排查

检查SSH密钥是否存在

ls -l ~/.ssh/

如果存在是包含这几个文件的
id_rsa
id_rsa.pub

在这里插入图片描述

如果没有密钥,生成一个新的SSH密钥对

配置密钥

ssh-keygen -t rsa -b 4096 -C “you@example.com”

一路回车!!!

生成的密钥会保存在/.ssh/id_rsa和/.ssh/id_rsa.pub文件中

注意:
邮箱地址不需要与你的GitHub账户邮箱完全匹配,最好是使用与你GitHub账户关联的邮箱地址

查看密钥

生成密钥后,查看并复制公钥内容

cat ~/.ssh/id_rsa.pub

配置github

登录 GitHub

进入“Settings” -> “SSH and GPG keys”

点击“New SSH key”按钮

将刚刚复制的公钥内容粘贴到 Key 字段中,添加新的 SSH 密钥

在这里插入图片描述

在这里插入图片描述

值得注意的是

之前的SSH密钥不会因为添加新的SSH密钥而失效。GitHub允许添加多个SSH密钥,每个密钥都是独立有效的。你可以在不同的设备上使用不同的SSH密钥来访问你的GitHub账户,不会相互影响。

测试结果

在你的bash或者cmd再输入

ssh -T git@github.com

出现如下信息你就成功了

Hi username! You’ve successfully authenticated, but GitHub does not provide shell access.

在这里插入图片描述

现在你可以使用 SSH 克隆仓库了

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/秋刀鱼在做梦/article/detail/913550
推荐阅读
相关标签
  

闽ICP备14008679号