GitHub Error: Key already in use
You can create one more key pair, say id_rsa_personal.pub, and add it to the Github account. Next, create/edit the .ssh/config file. # Default GitHub Host github.com HostName github.com User git IdentityFile ~/.ssh/id_rsa Host github-public HostName github.com User git IdentityFile ~/.ssh/id_rsa_public Host github-personal HostName github.com User git IdentityFile ~/.ssh/id_rsa_personal The above file will help you to … Read more