SSH key on github - Windows and Linux

Written on 05 January 2024 by Ryan Souza -- Also published on: Dev.to

Summary: Step-by-step guide on how to generate and add an SSH key to GitHub for secure authentication to repositories. The article covers creating SSH keys using the ED25519 algorithm, offering detailed instructions for Linux and Windows users. Learn how to configure the SSH key on GitHub to facilitate operations such as push and pull without the need for repeated authentication.

A statue of an oktokat (github mascot) in the center, in the background a laptop with the main page of GitHub open.

Content

What is a SSH Key?

An SSH key is a pair of keys used to authenticate a user on a server. The public key is used to encrypt data, and the private key is used to decrypt it. The public key is shared with the server, while the private key is kept secret by the user.

There are various encryption algorithms to generate SSH keys, but in this tutorial, I will teach you how to generate an SSH key using the ED25519 algorithm. ED25519 is an elliptic curve digital signature algorithm considered secure and fast.

To learn more about this topic, I recommend this article from Teleport: Article (in English)

Generating a SSH Key

From now on, I will divide this tutorial into two parts, one for Linux and another for Windows.

Before you start, you need to have Git installed on your machine. If you don’t, I recommend the official Git documentation to install Git on your machine: Documentation

Linux

To generate an SSH key on Linux, you need to open the terminal and type the following command:

ssh-keygen -t ed25519 -C <your-email>

ssh-keygen on linux

After typing the command, you will be prompted to fill in some information, such as the key name and password. You can type any name as long as you don’t forget it; in my case, I just pressed enter so that Git would automatically generate the key name and have no password.

With the key generated, you should copy the public key to the clipboard. For this, navigate to the folder where the key was generated (by default it is in the ~/.ssh folder, as shown in the previous image) and type the following command:

cat id_ed25519.pub

and copy the key that appears on the screen.

Now you need to go to the GitHub settings page and add the key you just copied.

here a shortcut for you to go directly to the GitHub SSH keys settings page: SSH Keys Settings Page

here you should go to New SSH key and paste the key you copied earlier.

paste key on github - linux

By clicking on Add SSH key, you will add the SSH key to GitHub.

Now, just test if the key was added correctly and clone any repository you have access to, always using the SSH address. To test if the key was added correctly, you can type the following command:

ssh git@github.com

if everything goes well, you will see a success message, and you can clone any repository you have access to; in my case, I cloned my own repository.

Testing ssh key - linux

Windows

The same process as Linux except that here I used PowerShell to create the SSH key and Git Bash to test the SSH key.

First, you need to open PowerShell and type the following command:

ssh-keygen -t ed25519 -C <your-email>

replace <your-email> with your GitHub email.

ssh-keygen on windows

After typing the command, you will be prompted to fill in some information, such as the key name and password. You can type any name as long as you don’t forget it; in my case, I just pressed enter so that Git would automatically generate the key name and have no password.

With the key generated, you should copy the public key to the clipboard. For this, navigate to the folder where the key was generated (by default it is in the C:\Users\ryans\.ssh folder, as shown in the previous image) and type the following command:

type id_ed25519.pub

and copy the key that appears on the screen.

getting ssh key in windows

Finally, now you need to go to the GitHub settings page and add the key you just copied. here a shortcut for you to go directly to the GitHub SSH keys settings page: SSH Keys Settings Page

here you should go to New SSH key and paste the key you copied earlier.

paste key on github - windows

By clicking on Add SSH key, you will add the SSH key to GitHub.

Now, just test if the key was added correctly and clone any repository you have access to, always using the SSH address. To test if the key was added correctly, you can type the following command:

ssh git@github.com

if everything goes well, you will see a success message, and you can clone any repository you have access to; in my case, I cloned my own repository.

Testing ssh key - linux"

Conclusion

I hope this tutorial has helped you set up your SSH key on github. If you have any questions or suggestions, leave a comment below or contact me through LinkedIn or the contact tab on my website.

Back to top ⬆️

Found any error? feel free to open a pull request on the fonte deste post no Github.