1. Home
  2. Git
  3. Add ssh key to keychain

If you use multiple accounts on different hosts you may need to add your keys manually at the start of the session. The first line in the example starts the shh agent. The second adds a specific key to the keychain. Make sure to update path to point to your key.

#git#ssh
eval $(ssh-agent -s)
ssh-add ~/.ssh/id_rsa_example_key
copy
Full Git cheatsheet