同一台电脑生成多份ssh私钥和公钥,映射多个GitHub账号

问题说明

当我们使用 Git 进行代码版本控制时,经常出现一台电脑需要连接多个Git 账号的情况,此时需要在一台电脑上生成多份 ssh 私钥和密钥,同时映射多个 Git 账号;这里我们需要同时连接 GitHub,码云,两个账号;

配置

1.生成 ssh 密钥文件;

ssh-keygen -t rsa -C "Zbc521.gitee.com" -f ~/.ssh/id_rsa_gitee
ssh-keygen -t rsa -C "Zbc521.github.com" -f ~/.ssh/id_rsa_github

图示:

同一台电脑生成多份ssh私钥和公钥,映射多个GitHub账号

2.通过ssh-add添加密钥至ssh-agent;

ssh-add ~/.ssh/id_rsa_gitee
ssh-add ~/.ssh/id_rsa_github

3.添加 config 配置文件分别映射不同的 Git 账号;

进入~/.ssh目录,新建config文件,添加如下内容:

# GitHub 公钥
Host github.com
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa_github

# Gitee 码云 公钥
Host gitee.com
HostName gitee.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa_gitee

4.向你的 Git 帐户中添加 SSH Key 认证,这里以 GitHub 账号为例 ;

  • 登录 GitHub 账号,打开 /settings/SSH and GPG keys,新建 SSH key;
同一台电脑生成多份ssh私钥和公钥,映射多个GitHub账号
  • 将 本地生成的 id_rsa_github.pub 公钥文件内容,拷贝到 GitHub 中;
同一台电脑生成多份ssh私钥和公钥,映射多个GitHub账号

5.测试连接配置是否成功;

输入命令:

ssh -T git@github.com

出现如下信息,表示成功:

Hi Zbc521! You've successfully authenticated, but GitHub does not provide shell access.
上一篇:10.公钥,私钥的生成


下一篇:c动态数组 动态申请内存 malloc函数的用法