有时候我们可能需要在同一台电脑上配置多个SSH Key
,比如公司项目使用的是GitHub
,个人开发用的是码云Gitee
。这个时候我们可能需要有两个SSH Key
,怎么配置呢?
假设你之前已经生成了一个 GitHub
的SSH Key
,可以用命令 cat ~/.ssh/id_rsa.pub
查看已经生成的SSH Key
:
复制命令 ssh-keygen -t rsa -C 'xxxxx@youremail.com' -f ~/.ssh/gitee_id_rsa
生成一个 Gitee
的SSH Key
,一路回车就可以了 (记得把邮箱改成你自己的)。可以看到.ssh
文件夹下面多了两个文件。
使用命令 cat ~/.ssh/gitee_id_rsa.pub
查看 Gitee
的SSH Key
,复制 ssh
开头的那一串公钥,添加到 Gitee
仓库。
使用命令 touch ~/.ssh/config
,在~/.ssh
文件夹下添加 config 文件,可以看到文件夹下面多了一个 config 文件。
右键使用记事本打开,复制以下信息添加到 config 文件保存,其中 Host
和HostName
填写 git 服务器的域名,IdentityFile
填写私钥的路径。
# gitee
Host gitee.com
HostName gitee.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/gitee_id_rsa
# github
Host github.com
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
使用以下命令分别测试 GitHub
和Gitee
,查看 SSH Key
是否添加成功。
ssh -T git@gitee.com
ssh -T git@github.com
看到以下的提示,就表示添加成功,可以拉取、推送代码了。