ssh-add -D
ssh-add -l
ssh-keygen -t rsa -C "your-email-address"
/c/Users/user/.ssh/id_rsa_whatever
clip < ~/.ssh/id_rsa_whatever.pub
Paste Key to Github Launch SSH-agent (Windows)
eval `ssh-agent -s`
ssh-add ~/.ssh/id_rsa_whatever
touch ~/.ssh/config
vim ~/.ssh/config
# Default GitHub
Host github.com
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa_whatever
# Company GitHub
Host github-company
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa
Default github repo
git remote add origin [email protected]:company/repository.git
Company github repo
git remote add origin git@github-company:company/repository.git