git配置多个远程仓库SSH密钥

git配置多个远程仓库SSH密钥

配置单个SSH密钥

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

配置多个ssh密钥

1.生成密钥文件

ssh-keygen -t rsa -C "[email protected]" -f ~/.ssh/second_rsa

2.配置config文件
config所在目录:~/.ssh/
添加如下内容:

# github
Host github.com
User yourusername
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/first_rsa

# your repo
Host 192.168.1.19
User yourusername
HostName 192.168.1.19
PreferredAuthentications publickey
IdentityFile ~/.ssh/second_rsa

你可能感兴趣的:(开发环境,ssh,git)