Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save liuyix/7729349 to your computer and use it in GitHub Desktop.

Select an option

Save liuyix/7729349 to your computer and use it in GitHub Desktop.
设置多个同名的ssh private key或者放置到非.ssh目录的方法

stackoverflow: http://stackoverflow.com/a/2419609

~/.ssh/config

Host myshortname realname.example.com
Hostname realname.example.com
IdentityFile ~/.ssh/realname_rsa # private key for realname

Host myother realname2.example.org
Hostname realname2.example.org
IdentityFile ~/.ssh/realname2_rsa
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment