Home

Published

- 1 min read

add ssh

img of add ssh

The solution for this is noted below

add ssh

Solution

   # before doing below steps please make your you have generated --
# public and private keys file in the .ssh folder.
# To generate agent pid run this below line
eval "$(ssh-agent -s)"
# Output: Agent pid 15939  # Note: in your case output will be different.
# then run this
ssh-add ~/.ssh/your_id_where_key_is_saved
# if output contains below result it means You're done.
# Identity added: /Users/basitkhan/.ssh/your_id_where_key_is_saved (your_email.com)

Try other methods by searching on the site. That is if this doesn’t work