Announcement

Collapse
No announcement yet.

How To Add SSH Key to GitHub

Collapse
X
Collapse
  •  

  • How To Add SSH Key to GitHub


    GitHub is a famous platform for developers to create, store, share, and manage program codes. Here, you can control an application’s versions, host repositories, collaborate and socialize with other users, and many more.
    GitHub has a fantastic feature lets you access and manage your repositories through SSH. However, this connection requires an access key known as an SSH key on your Linux. So, in this article, we will explain how to add an SSH key to GitHub without hassles.
    How To Add SSH Key to GitHub

    First, you must have an SSH key on your machine to link it to GitHub. If you already have one, skip this step.
    You can use the below command to verify whether you have it or not:

    ssh-add -l






    On execution, if it shows “The agent has no identities,” then you do not have any SSH key.
    You can create it by executing the following set of commands:

    ssh-keygen -o -t rsa -C user@domain.com




    Here’s the command breakdown:
    1. ssh-keygen is the utility that generates SSH keys.
    2. The ‘-t rsa’ option generates a specific RSA-type key.
    3. The ‘-C’ option lets you add a comment to the key that stays in the public key file for reference.
    4. The ‘-o’ option commands the utility to use the new OpenSSH key format to generate the key. It uses features like elliptic curve cryptography for enhanced protection and improved performance compared to the generic format.

    Moreover, replace user@domain.com with your email id for the reference. On execution, the command would produce an output similar to the one in the image below:

    When you run the command, the system generates two types of keys: private and public. You add the public key to GitHub, whereas you should keep the private key limited to yourself and the admin (if any).
    Use the following command to retrieve your public SSH key and copy it:

    nano .ssh/id_rsa.pub




    Now you have the key, let’s proceed to the next step: adding it to the GitHub account. For this, please follow the below steps:
    1. Go to GitHub’s official website and log in to your account.
    2. Navigate to the drop-down accompanying your profile avatar and click on Settings.
    3. Now, go to SSH and GPG keys from the left-side settings panel.
    4. Click on “New SSH key.”
    5. Enter the name/title of your choice. For instance, we are naming it “Prateek’s Key.”

    Paste the key in the key field and click the Add SSH key button.
    A Quick Wrap-up

    GitHub is like developers’ social media, allowing them to create, manage, and share their codes. This short article describes the step-by-step approach for adding an SSH key to the GitHub account so that you can operate it through Secure Shell. The overall process is simple; you just need to create the key, log into your GitHub account, and add the key. Furthermore, you should keep the private key safe as it might cause unintended damage if it falls into the wrong hands.


    More...
      Posting comments is disabled.

    Categories

    Collapse

    Article Tags

    Collapse

    There are no tags yet.

    Latest Articles

    Collapse

    • 5 Compelling Reasons to Choose Linux Over Windows
      by Kasimba



      by George Whittaker


      Introduction

      In the world of operating systems, Windows has long held the lion’s share of the market. Its user-friendly interface and wide compatibility have made it the default choice for many. However, in recent years, Linux has steadily gained traction, challenging the status quo with its unique offerings. What was once considered the domain of tech enthusiasts and developers is now...
      Yesterday, 06:52 AM
    • NGINX vs Apache; Web Server Comparison
      by Kasimba
      Overview of NGINX and Apache

      NGINX and Apache are leading web server solutions utilized for hosting websites and web applications. Apache, developed by the Apache Software Foundation, offers robust configuration options and extensibility. NGINX, created by Igor Sysoev, is known for its efficiency in handling numerous concurrent connections with low resource utilization. Both servers function not only as HTTP servers but also as reverse proxies, load balancers, and more.

      What is

      ...
      Yesterday, 03:54 AM
    • Monthly News – November 2024
      by Kasimba
      Hi everyone, I hope you are enjoying the BETA so far! This release introduces new features, tools, and artwork, so we anticipate a good number of bug reports. Every single fix helps us refine and improve the final release. Your feedback during the BETA phase is extremely important to us. Linux Mint 22.1 is our […]

      More...
      12-16-2024, 11:50 AM
    • Mastering OpenSSH for Remote Access on Debian Like a Pro
      by Kasimba



      by George Whittaker


      Introduction

      Remote access is a cornerstone of modern IT infrastructure, enabling administrators and users to manage systems, applications, and data from virtually anywhere. However, with great power comes great responsibility—ensuring that remote access remains secure is paramount. This is where OpenSSH steps in, providing robust, encrypted communication for secure remote management....
      12-13-2024, 10:31 PM
    • Unlocking the Full Potential of Linux's Most Versatile Search Tool
      by Kasimba



      by George Whittaker


      Introduction

      The grep command, short for "global regular expression print," is one of the most powerful and frequently used tools in Unix and Linux environments. From sifting through log files to finding patterns in text, grep is a Swiss Army knife for system administrators, developers, and data analysts alike. However, many users limit themselves to its basic functionality, unaware...
      12-13-2024, 09:24 PM
    • Linux Mint 22.1 “Xia” – BETA Release
      by Kasimba
      This is the BETA release for Linux Mint 22.1 “Xia”. Linux Mint 22.1 is a long term support release which will be supported until 2029. It comes with updated software and brings refinements and many new features to make your desktop even more comfortable to use. New features: This new version of Linux Mint contains […]

      More...
      12-12-2024, 09:31 AM
    Working...
    X