Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 426 Bytes

make-sshkey-for-github.md

File metadata and controls

27 lines (17 loc) · 426 Bytes

Quick guide for making ssh keys for GitHub

Generate an SSH key

ssh-keygen -t ed25519 -C "[email protected]"

Follow the steps on the screen.

Add to ssh-agent

start the agent

eval "$(ssh-agent -s)"

add to the agent

ssh-add ~/.ssh/id_ed25519

Add SSH key to Github

copy over ~/.ssh/id_ed25519.pub and paste into field for SSH keys in SSH and GPG keys under user settings.