Using SSH keys to clone a repository or branch in Git
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-gen
the command to generate an SSH public-private key pair.
ssh key-gen
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
.ssh
The keys are stored in a folder
on your machine . id_rsa
The file holds your private key, while id_rsa.pub
holds 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)"
We see that the agent 970
is running as a background process. We add our SSH private key to the SSH agent.
ssh-add ~/.ssh/id_rsa
Identity added : <path_to_private_key
The 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 PUBLIC
with anyone .PRIVATE
-
Go to your
GitHub
Account. -
Click
个人资料图片
. -
Select from the drop-down menu
设置
.
-
Click in the left column
SSH and GPG Keys
.
-
Click in the upper-right corner
New SSH Key
.
-
Add a description and
PUBLIC
paste the key intoKey
the field.
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
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.
- Copy your repository's SSH URL
In GitHub
your repository, click 代码
the green button in the upper right corner.
Click SSH
to display your SSH URL. Copy this SSH URL.
- 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.
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.
- 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>
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.
- 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>
- 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.
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.
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