Avatar
Fernando Vásquez is an electronics engineer and software developer currently based in the world. He occasionally blogs about Python and Android programming.

Use Multiple SSL Keys with Git

multiple keys

Edit file ~/.ssh/config

host wordpress
          user git
          hostname bitbucket.org
          port 22
          identityfile /home/ec2-user/.ssh/id_rsa
host search3
          user git
          hostname bitbucket.org
          port 22
          identityfile /home/ec2-user/.ssh/id_rsa_search3

Then clone as usually, but using the host you defined in the previous file:

git clone search3:iwxfer/search3.git

all tags