Como Usar Duas Chaves SSH Com GIT
===

Descritivo de como usar 2 chaves SSH com GIT para o mesmo host:

1. Configure the '~/.ssh/config' with different Hosts but same HostNames

Example:

Host work
  HostName github.com
  IdentityFile ~/.ssh/key1
  User git
    
Host personal
  HostName github.com
  IdentityFile ~/.ssh/key2
  User git

2. Clone the repo using the appropriate host

$ git clone git@work:username/awesome-project.git