Skip to content

Github SSH Config

Shamik-07 edited this page Mar 8, 2022 · 8 revisions

Generating and Adding a New SSH Key

The below instructions have been formulated for the above official Github docs. Generating SSH key for @shamik-biswas-rft

Generating ssh-keygen
ssh-keygen -t ed25519 -C shamik.biswas@refinitiv.com
eval "$(ssh-agent -s)"
exec ssh-agent bash
ssh-add ~/.ssh/id_ed25519\

Copy and paste the output of the below command in the ssh keys on Github
cat ~/.ssh/id_ed25519.pub\

Authenticate your ssh key
ssh -T git@github.com\

Successful authentication
Hi shamik-biswas-rft! You've successfully authenticated, but GitHub does not provide shell access.

Clone this wiki locally