有什么方法可以配置 ssh 为每个 bitbucket(或 github)帐户使用不同的密钥?
我的意思是,如果我要使用*.bitbucket:user1
ssh 应该使用 keyid_rsa.user1
和 for *.bitbucket:user2
should userid_rsa.user2
尝试过这样做:
IdentityFile ~/.ssh/id_rsa.user1
IdentityFile ~/.ssh/id_rsa.user2
Host *.bitbucket.org:user1*
IdentityFile ~/.ssh/id_rsa.user1
User git
Host *.bitbucket.org:user2*
IdentityFile ~/.ssh/id_rsa.user2
User git
但没有运气。