首先,在新增私钥的时候,通过指定不同的文件名来生成不同的私钥文件
ssh-keygen -t rsa -f ~/.ssh/id_rsa.work -C "Key for Work" ssh-keygen -t rsa -f ~/.ssh/id_rsa.github -C "Key for GitHub"
touch ~/.ssh/config chmod 600 ~/.ssh/config
Host *.workdomain.com IdentityFile ~/.ssh/id_rsa.work User lee Host github.com IdentityFile ~/.ssh/id_rsa.github User git这样在登陆的时候,ssh会根据登陆不同的域来读取相应的私钥文件
ssh -T git@github.com
关于git的ssh-key:解决本地多个ssh-key的问题,布布扣,bubuko.com
关于git的ssh-key:解决本地多个ssh-key的问题
原文地址:http://blog.csdn.net/chaihuasong/article/details/37886139