Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 6, 2022 04:34 pm GMT

How to setup git ssh

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 "[email protected]"

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

Original Link: https://dev.to/livecodebase/how-to-setup-git-ssh-5118

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To