Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 276 Bytes

Github-ssh-key.md

File metadata and controls

17 lines (13 loc) · 276 Bytes
  • Generate ssh key using below command
ssh-keygen -f mykey
  • start the ssh-agent in the background

 eval "$(ssh-agent -s)"
  • Add your SSH private key to the ssh-agent
 ssh-add private key
  • Add the Public key to your Github repo