电脑添加多个SSH key

Posted 1994的地铁

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了电脑添加多个SSH key相关的知识,希望对你有一定的参考价值。

创建新得ssh key

ssh-keygen -t rsa -C "excem@excemple" -f ~/.ssh/id_rsa.gitlab

编辑config

vim ~/.ssh/config
# gitee
Host gitee.com
HostName gitee.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa.gitee

# github
Host github.com
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa.github

# gitlab
Host gitlab.com
HostName gitlab.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa.gitlab

测试

ssh -T git@gitlab.com

以上是关于电脑添加多个SSH key的主要内容,如果未能解决你的问题,请参考以下文章

在一台电脑上,添加多个Git的ssh key

多个github帐号的SSH key切换

Mac下一台电脑管理多个SSH KEY(转)

Git配置多个SSH-Key(在一台电脑上,如何配置多个SSH Key?/多个用户身份)

多个github帐号的SSH key切换

多个github账号时,本地配置ssh-key