whyxno

Setting up multiple github accounts on a single machine using ssh keys

20-03-2025    #linux   #tech   #git  

An embarrassing amount of ‘senior’ developers I work or have worked with do not know how ssh works in the slightest. I’ve shown how to manage two separate github accounts using ssh so many times to slack jawed devs I’m writing this page so I can send it to people instead of having to demonstrate it again. If I have sent you this link then I am talking about you.

You have two github accounts - we’ll call them personal and work

1. Generate keys

First, generate an ssh key for each and add the public key to their respective github accounts. Give them a meaningful name like personal_key and work_key

If you don’t know how to generate an ssh key google it.

2. Edit ssh config file

Edit (or create) the ssh config file (~/.ssh/config):

# Default github account: work (make this whatever you use the most)
Host github.com
   HostName github.com
   IdentityFile ~/.ssh/work_key
   IdentitiesOnly yes
   
# Other github account: personal
Host personal-github.com
   HostName github.com
   IdentityFile ~/.ssh/personal_key
   IdentitiesOnly yes

Let me explain these properties quickly;

3. Add keys to ssh agent

Add ssh private keys to your agent (this is just a background process the manages ssh keys)

$ eval "$(ssh-agent -s)" #start the ssh agent if it isn't running
$ ssh-add ~/.ssh/work_key
$ ssh-add ~/.ssh/personal_key

4. Test your connection

$ ssh-keyscan github.com >> ~/.ssh/known_hosts
$ ssh -T [email protected]
$ ssh -T [email protected]

If everything is working you should see something like this;

Hi work! You've successfully authenticated, but GitHub does not provide shell access.

Hi personal! You've successfully authenticated, but GitHub does not provide shell access.

5. Usage

Now to use it - you just need to use the correct hostname for the project you are working with. We set the default to be github.com so any clones or standard github commands will work with your default. If you want to use your personal account then you need to change the hostname within the command, for example;

[email protected]:org/repo.git => user is personal
[email protected]:org/repo.git          => user is default (work)

Hopefully you can figure out the rest on your own. Just sub the correct hostname in. Good luck.