Multiple Git Accounts
Setup multiple git ssh accounts for git Generate SSH keys ssh-keygen -q -t rsa -C "john.smith@github.com" -f ~/.ssh/id_rsa -N "" ssh-keygen -q -t rsa -C "john.smith@company.com" -f ~/.ssh/id_rsa_pro -N "" Link them with GitHub/Bitbucket, or any other account Use following example to set each ssh key for every repository in your ~/.ssh/config file You can configure ssh to send a use of a specific encryption key depending on the host....