Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 843 Bytes

File metadata and controls

35 lines (24 loc) · 843 Bytes

Using SSH

tags
Git, Github
source
Connecting to Github with SSH

Check for existing SSH keys

ls -al ~/.ssh

Generating SSH keys and add it to ssh-agent

Generate SSH keys

ssh-keygen -t ed25519 -C "your_email@example.com"

Add your SSH key to the ssh-agent

eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed25519

Adding SSH to the github account

Go to the following website

SSH keys