一、生成 Gitee 的 SSH 密钥对
-
打开终端:
- 在 Windows 上可以使用 Git Bash,或在其他操作系统上打开终端。
-
生成 Gitee SSH 密钥:
ssh-keygen -t rsa -b 4096 -C "your_email_for_gitee@example.com" -f ~/.ssh/id_rsa_gitee
- 这里的邮箱地址是您在 Gitee 上注册的邮箱。
-f
参数指定了生成的密钥文件的路径和名称,这里为~/.ssh/id_rsa_gitee
。
-
一路回车:
- 在提示设置密码时,可以直接回车跳过(如果不需要设置密码)。
二、生成 GitHub 的 SSH 密钥对
-
生成 GitHub SSH 密钥:
ssh-keygen -t rsa -b 4096 -C "your_email_for_github@example.com" -f ~/.ssh/id_rsa_github
- 这里的邮箱地址是您在 GitHub 上注册的邮箱。
-f
参数指定了生成的密钥文件的路径和名称,这里为~/.ssh/id_rsa_github
。
-
一路回车:
- 同样可以选择不设置密码,直接回车跳过。
三、添加公钥到 Gitee 和 GitHub
-
添加 Gitee 公钥:
- 使用文本编辑器打开
~/.ssh/id_rsa_gitee.pub
文件,复制文件中的内容。 - 登录 Gitee 网站,进入个人设置页面,找到 “SSH 公钥” 选项,点击 “添加公钥”,将复制的内容粘贴到公钥内容框中,填写标题后点击确认。
- 使用文本编辑器打开
-
添加 GitHub 公钥:
- 使用文本编辑器打开
~/.ssh/id_rsa_github.pub
文件,复制文件中的内容。 - 登录 GitHub 网站,进入设置页面,找到 “SSH and GPG keys” 选项,点击 “New SSH key”,将复制的内容粘贴到 Key 内容框中,填写标题后点击 “Add SSH key”。
- 使用文本编辑器打开
四、配置 SSH 客户端区分不同的主机
-
创建 SSH 配置文件:
- 在
~/.ssh
目录下创建一个名为config
的文件(如果文件不存在)。
- 在
-
编辑 SSH 配置文件:
- 打开
~/.ssh/config
文件,添加以下内容:
Host gitee.comHostName gitee.comIdentityFile ~/.ssh/id_rsa_giteeStrictHostKeyChecking noUserKnownHostsFile=/dev/nullUser gitHost github.comHostName github.comIdentityFile ~/.ssh/id_rsa_githubStrictHostKeyChecking noUserKnownHostsFile=/dev/nullUser git
这些配置确保:
- 连接
gitee.com
时,SSH 客户端会自动使用~/.ssh/id_rsa_gitee
私钥。 - 连接
github.com
时,会使用~/.ssh/id_rsa_github
私钥。 StrictHostKeyChecking no
禁用主机密钥检查提示。UserKnownHostsFile=/dev/null
确保不会将主机密钥保存到known_hosts
文件中。
- 打开
五、测试连接
-
测试 Gitee 连接:
ssh -T git@gitee.com
-
测试 GitHub 连接:
ssh -T git@github.com
如果一切正常,您应该会看到类似如下的消息,表明连接成功:
- Gitee:
Hi username! You've successfully authenticated, but GITEE.COM does not provide shell access.
- GitHub:
Hi username! You've successfully authenticated, but GitHub does not provide shell access.