JIYIK CN >

Current Location:Home > Learning > OPERATING SYSTEM > Git >

Using SSH keys to clone a repository or branch in Git

Author:JIYIK Last Updated:2025/03/29 Views:

SSH Git cloning provides a secure way to clone remote repositories. This tutorial shows the complete method of Git cloning using SSH keys - how to generate SSH keys, set up SSH in Git, and use SSH keys for Git cloning.

We also showed some useful options to extend that functionality - cloning just a branch, cloning to a selected directory, or cloning just a few commits for a large repository.


What is SSH

SSH or Secure Shell Protocol is a network protocol for using secure services over an insecure network. It uses a public-private key pair - your private key is only accessible to you when you send your public key to the service you want to use.

Any data encrypted with your public key can only be opened with your private key, and vice versa.


Why use SSH keys to clone Git?

SSH Git Clone provides an easy way to securely clone a remote repository over an insecure public network.

If you use SSH keys for Git cloning, you don't have to re-enter your password every time to identify yourself to the remote server. Once the server authenticates the SSH agent, it remembers the details - you don't have to re-enter your SSH key every time.

Generate SSH key pair

We use ssh key-genthe command to generate an SSH public-private key pair.

ssh key-gen

Generate ssh keys

It will prompt you for a password to protect access to the key on client machines - you can choose to leave it blank, or enter a password of your preference.

Pro Tip: No characters will be displayed as you type your password. This is to hide the length of your password and increase security.

Pro Tip 2: Write down your password somewhere. If you forget it, you will not be able to recover your access.

We leave the command at its default here ssh key-gen, but we can also pass in different options - the encryption algorithm we want (e.g. ed2559), a label, and a specific location to save the key.

Check the saved SSH key pair

Let's check that our SSH keys were generated and saved correctly.

ls -al ~/.ssh

Check ssh keys

.sshThe keys are stored in a folder on your machine . id_rsaThe file holds your private key, while id_rsa.pubholds your public key.

If you see these two files in the output, you have successfully created and saved an SSH key pair.

Adding SSH keys to the SSH agent

We start the SSH agent as a background process.

eval "$(ssh-agent -s)"

Start ssh agent

We see that the agent 970is running as a background process. We add our SSH private key to the SSH agent.

ssh-add ~/.ssh/id_rsa

Add private key sshagent

Identity added : <path_to_private_keyThe agent confirms that it has added the private key with the message .

Add your public key to the remote GitHub account

Copy the public key to your clipboard.

clip < ~/.ssh/id_rsa.pub

Pro Tip: Always copy your KEY. Never share your KEY PUBLICwith anyone .PRIVATE

  1. Go to your GitHubAccount.
  2. Click 个人资料图片.
  3. Select from the drop-down menu 设置.

github settings

  1. Click in the left column SSH and GPG Keys.

Select ssh and gpg keys

  1. Click in the upper-right corner New SSH Key.

New ssh key click

  1. Add a description and PUBLICpaste the key into Keythe field.

Paste the public sshkey into github

You have now successfully identified your SSH agent with your GitHub account.

Testing the SSH connection to GitHub

We test the SSH connection to GitHub.

ssh -T git@github.com

Testing SSH connection

This message confirms that you have been successfully authenticated.


Using SSH keys to clone a repository in Git

Next, we clone our remote repository using SSH.

  1. Copy your repository's SSH URL

In GitHubyour repository, click 代码the green button in the upper right corner.

Click SSHto display your SSH URL. Copy this SSH URL.

Copy the ssh URL

  1. Git Clone SSH in Git Terminal

Use SSH in the Git terminal to clone the remote.

git clone <remote_repo_ssh_url>

<remote_repo_ssh_url>is the URL you copied above.

git clone ssh

You have successfully cloned a repository in Git using SSH keys.


Extending Git Clone SSH with options

You may need to use a specific type of clone for your use case. There are options available to extend Git cloning over SSH.

  1. Git Clone SSH Only a specific branch

To clone only one branch using SSH keys:

git clone --branch <branch_to_clone> <remote_repo_ssh_url>

git clone a specific branch

This is very useful in case of large repositories. To save time and space on your local machine, you may want to clone only the branch you work on or clone only a few branches of interest.

  1. Use SSH keys to clone Git to a specific location

You may want to clone to a specific folder to keep your local directory structure organized.

To clone to a specific location:

git clone <remote_repo_ssh_url> <specific_location_local>

git clone specific location

  1. Shallow Git clone using SSH keys - clone only a few commits

For large repositories, you may want to reduce cloning time or save local disk space. You can do this by cloning only a selected set of the last few commits.

To clone only the most recent commits:

git clone --depth=<n> <remote_repo_ssh_url>

Here <n>is the number of the most recent commit you want to clone.

For example, if n = 2, it will clone only the last two commits.

git shallow clone ssh

For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.

Article URL:

Related Articles

Fatal: Refusing to Merge Unrelated Histories error in Git

Publish Date:2025/03/29 Views:123 Category:Git

This article outlines the steps required to resolve the fatal: refusing to merge unrelated histories error in Git. We usually encounter such errors when trying to merge two unrelated Git projects into one branch. It pops up when the receivi

Clone the repository in Git

Publish Date:2025/03/29 Views:146 Category:Git

Git is known as one of the best and most demanding version control systems for all developers around the world. As of now, it is a distributed version control system that utilizes its local repository and delegates the typical version contr

Clone Git using username and password

Publish Date:2025/03/29 Views:75 Category:Git

In this article, we will learn how to clone an existing repository using username and password in Git. In Git, we use the command git clone to clone an existing remote repository to our local computer. When we call git clone the command, we

Clone into a non-empty Git directory

Publish Date:2025/03/29 Views:108 Category:Git

This article will show you how to clone a Git repository to a non-empty folder. This operation comes in handy when you want to merge files from a remote repository with files in your current local repository. In Git, clone into a non-empty

Clone all branches in Git

Publish Date:2025/03/29 Views:132 Category:Git

When developing software using Git, you can create different branches for different features. This article will explain how to clone all different branches from remote to local in Git. Git clone all branches When using Git, you may need to

Clone a private repository in Git

Publish Date:2025/03/29 Views:106 Category:Git

This article will teach you how to use Git to clone a private repository hosted on Github. Git is a version control system used to track changes in a project directory. Git uses commits for such purposes. Github provides Internet hosting fo

Force pull overwrite in Git

Publish Date:2025/03/29 Views:119 Category:Git

Git is the most popular and demanded version control system today. The user interface of Git is similar to other version control systems. We can log in, clone the repository and make commits. However, Git has some significant differences th

Git authentication

Publish Date:2025/03/28 Views:163 Category:Git

This article demonstrates connecting a local repository to a remote repository on GitHub/Gitlab without getting 身份验证失败 error messages. Creating a local repository from scratch in Git To create a local repository from scratch, fo

Log graphs in Git

Publish Date:2025/03/28 Views:96 Category:Git

This article shows you how to use git log the command to graphically view the commit history in Git. Viewing log graphs in Git The command git log displays all the repository history at once snapshots(commits) . This command has a default f

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Recommended

Tags

Scan the Code
Easier Access Tutorial