欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Git配置多个SSH-Key

程序员文章站 2022-07-15 09:56:11
...

Git配置多个SSH-Key

为什么要配置多个公钥

当有多个git账号时,比如:
a. 一个gitee,用于公司内部的工作开发;
b. 一个github,用于自己进行一些开发活动;
1.生成一个公司用的SSH-Key
$ ssh-****** -t rsa -C 'aaa@qq.com' -f ~/.ssh/gitee_id_rsa
2.生成一个github用的SSH-Key
$ ssh-****** -t rsa -C 'aaa@qq.com' -f ~/.ssh/github_id_rsa
3.在 ~/.ssh 目录下新建一个config文件,添加如下内容(其中Host和HostName填写git服务器的域名,IdentityFile指定私钥的路径)(重要)

Git配置多个SSH-Key

# gitee
Host gitee.com
HostName gitee.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/gitee_id_rsa
# github
Host github.com
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/github_id_rsa
4.配置公钥

Git配置多个SSH-Key
Git配置多个SSH-Key
Git配置多个SSH-Key
复制全部内容粘贴到公钥

5.用ssh命令分别测试
$ ssh -T aaa@qq.com
$ ssh -T aaa@qq.com

Git配置多个SSH-Key
参考链接:链接: https://gitee.com/profile/sshkeys.