码迷,mamicode.com
首页 > 其他好文 > 详细

电脑添加多个SSH key

时间:2020-07-02 18:01:25      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:config   err   host   EDA   添加   gen   电脑   red   id_rsa   

创建新得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

标签:config   err   host   EDA   添加   gen   电脑   red   id_rsa   

原文地址:https://www.cnblogs.com/munan56/p/13225997.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!