github上创建ssh连接多个账户
Posted 立体风
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了github上创建ssh连接多个账户相关的知识,希望对你有一定的参考价值。
简单的说用两对ssh密钥来连接多个github账户,有的同学问:用一对连接多个账户行吗?答案是不行,因为密钥和你的账户邮箱关联了。
1、生成密钥。
sshkey -t rsa -b 4096 -C "[email protected]"
2、设置密钥对的名字,在第一步中,系统会提示如下:
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):/root/.ssh/your_name
注意必须是完整路径,系统会生成your_name和your_name.pub两个文件。
3、将密钥添加到ssh-agent当中。
ssh-add ~/.ssh/your_name
4、复制公钥到github账户的设置选项中,然后保存。
也就是your_name.pub
5、测试一下。
ssh -T [email protected]
如果系统提示如下,说明成功安装第一个了。
Hi your_name! You‘ve successfully authenticated, but GitHub does not provide shell access.
6、重复第1-5步,第二个账户安装好了,而且这两个都可以访问。
以上是关于github上创建ssh连接多个账户的主要内容,如果未能解决你的问题,请参考以下文章