配置多个github公钥

Posted 沧海一粒

tags:

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

1 配置 github 公钥

ssh-keygen -t rsa -C "[email protected]"

2  Enter file in which to save the key (/home/fe/.ssh/id_rsa): 此时键入id_rsa.xxx 【xxx为文件后缀】

如果直接回车,则在~/.ssh/下,会生成
    id_rsa(私钥)和id_rsa.pub(公钥)
如果输入id_rsa.xxx,则在~/.ssh/下生成为
    id_rsa.xxx(私钥)和id_rsa.xxx.pub(公钥)

Enter passphrase (empty for no passphrase):以及 Enter same passphrase again: 都回车

4 重复步骤1-3,生成公私钥 id_rsa.zzz和id_rsa.pub

增加ssh配置文件 

cd ~/.ssh
touch config
vim config

Host [email protected]
HostName [email protected]
User git
IdentityFile ~/.ssh/id_rsa.xxx

Host [email protected]
HostName [email protected]
User git
IdentityFile ~/.ssh/id_rsa.zzz
6 将 id_rsa.xxx和id_rsa.zzz 加入 本地 ssh
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa.xxx
ssh-add ~/.ssh/id_rsa.zzz

7 设置config文件权限

chmod 600 config

8 最后将各个公钥分别添加至git上即可

 

  

 

以上是关于配置多个github公钥的主要内容,如果未能解决你的问题,请参考以下文章

git为啥要配置公钥

同机多Github账号配置多个SSH

同一个电脑使用多份密钥文件绑定多个帐号

ubuntu git生成ssh key (公钥私钥)配置github或者码云

Mac SSH使用config配置文件管理多个git账户

SSH详解-4.多个ssh公钥