SSH key on github - Windows and Linux

ryrden

Ryan Souza

Posted on January 5, 2024

SSH key on github - Windows and Linux

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>
Enter fullscreen mode Exit fullscreen mode

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
Enter fullscreen mode Exit fullscreen mode

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
Enter fullscreen mode Exit fullscreen mode

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>
Enter fullscreen mode Exit fullscreen mode

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
Enter fullscreen mode Exit fullscreen mode

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
Enter fullscreen mode Exit fullscreen mode

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

References

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.

💖 💪 🙅 🚩
ryrden
Ryan Souza

Posted on January 5, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related