管理多个SSH key

2021/7/9 git
cd ~/.ssh
# 不存在config 则创建
touch config

# vim 打开文件
vim config

# 文件添加内容
Host github_cjkj # 别名
HostName github.com # 域名
User git # 用户名
IdentityFile ~/git_key/github/cjkj/id_rsa # 私钥路径
PreferredAuthentications publickey # 首选身份验证

# 测试config 配置数据生效 该配置可以使用 
ssh -T 用户名@别名

# 登录git服务器/使用scp 更加精简
1. ssh 别名
2. ssh 别名:xxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Last Updated: 2021/7/9 12:20:34