Git 使用 SSH 方法连接 GitHub
什么是 SSH
SSH 是一个加密远程连接方式,可以用来认证客户端与 GitHub 之间的连接。
检查现有 SSH 密钥
如果以前在使用本地 git 的时候生成过 github 密钥,那么可以在本地看得到 首先打开 Git Bash, 查看现有是否存在 SSH 密钥。
ls -al ~/.ssh
检查目录列表以查看是否已经有 SSH 公钥。默认情况下,公钥的文件名是以下之一。 如果有的话,可以跳转到第三步,否则进行第二步。
生成新的 SSH 密钥
-
打开 Git Bash
-
粘贴以下文本
ssh-keygen -t ed25519 -C "[email protected]" 或者,如果你的系统不支持以上的算法 ssh-keygen -t rsa -b 4096 -C "[email protected]"
注意要替换掉上面的电子邮件为 github 想要认证的电子邮件账号
-
后面一直回车就行了,当然按照提示输入一些也没错。
-
然后就会提示你在对应的位置生成了 SSH 私钥和公钥。
如果你是 windows 系统,一般会在 c:/windows/user
目录下面。如果是 linux 等系统,一般也能在对应的位置找到,留意命令行的生成信息就行。
将公钥粘贴到 GitHub
-
点击头像,打开
setting
. -
打开 SSH 选项卡
-
点击添加 SSH Key,将刚才的公钥粘贴进去, Title 随便取
验证 GitHub 连接
-
打开 Git Bash。
-
输入以下内容:
$ ssh -T [email protected] # Attempts to ssh to GitHub
您可能会看到类似如下的警告:
> The authenticity of host 'github.com (IP ADDRESS)' can't be established. > RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8. > Are you sure you want to continue connecting (yes/no)? ```
-
验证所看到消息中的指纹是否匹配 GitHub 的 RSA 公钥指纹。 如果是,则输入
yes
:> Hi username! You've successfully authenticated, but GitHub does not > provide shell access.
-
验证生成的消息包含您的用户名。如果收到 “权限被拒绝” 消息,请参阅 “错误:权限被拒绝(公钥)”。