Skip to content

Instantly share code, notes, and snippets.

@ElenaMLopez
Created September 15, 2020 10:32
Show Gist options
  • Save ElenaMLopez/317f12c1681a92b806a5895d536a9846 to your computer and use it in GitHub Desktop.
Save ElenaMLopez/317f12c1681a92b806a5895d536a9846 to your computer and use it in GitHub Desktop.
Configure your ssh in Mac Catalina
    1  ls -al ~/.ssh
    2  ls ~/.ssh
    3  cat known-host
    4  cd known-host
    5  clear
    6  ssh-keygen -t rsa -b 4096 -C <your.email@example.com>
    7  eval "$(ssh-agent -s)"
    8  open ~/.ssh/config
    9  touch ~/.ssh/config
   10  open ~/.ssh/config
   11  ssh-add -K ~/.ssh/id_rsa
   12  pbcopy < ~/.ssh/id_rsa.pub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment