How to setup git ssh
Livecodebase
Posted on April 6, 2022
Enter ls -al ~/.ssh
to see if existing SSH keys are present.
Paste the text below, substituting in your GitHub email address.
ssh-keygen -t ed25519 -C "your_email@example.com"
Start SSH agent in background
eval "$(ssh-agent -s)"
add key to ssh agent
ssh-add ~/.ssh/id_ed25519
Display added SSH Key
cat ~/.ssh/id_ed25519.pub
π πͺ π
π©
Livecodebase
Posted on April 6, 2022
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.