赞
踩
克隆好的项目发现失败
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
进入“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 克隆仓库了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。