-
Notifications
You must be signed in to change notification settings - Fork 0
Github SSH Config
Shamik edited this page Mar 25, 2026
·
8 revisions
Generating and Adding a New SSH Key
The below instructions have been formulated from the above official Github docs. Generating SSH key for @shamik-biswas-rft
Generating ssh-keygen\
ssh-keygen -t ed25519 -C shamik.biswas@refinitiv.comeval "$(ssh-agent -s)"exec ssh-agent bashssh-add ~/.ssh/id_ed25519Copy and paste the output of the below command in the ssh keys on Github\
cat ~/.ssh/id_ed25519.pub | pbcopyAuthenticate your ssh key\
ssh -T git@github.comSuccessful authentication
Hi shamik-biswas-rft! You've successfully authenticated, but GitHub does not provide shell access.
git config --global gpg.format sshgit config --global user.signingkey ~/.ssh/id_ed25519.pubSign all commit automatically.
git config --global commit.gpgsign true