Git push using SSH keys
SSH stands for Secure Shell. It is the key that provides us with the credentials to access the SSH network protocol.
It provides access to remote servers between engines on an unsecured open network. It is used for transferring data, files, and network management, and provides access to remote servers from the source.
When a developer wants to securely push, pull, or copy files between a local Git installation and a remote Git repository, the first thing the developer needs to do is to create an SSH key pair on that server. Through this key, the developer and the authenticated developer's Git installation on the remote server will be identified.
Let's see how to generate an SSH key pair and then use this SSH key to push the modified work to the remote repository. Here are the details to generate an SSH key pair:
Generate SSH key pair
To create an SSH key pair, we will go to Git Bash; once opened, we will use the following command with our email ID:
$ ssh-keygen -t rsa -b 4096 -C "email@test.com"
Now we have to enter the location of the file and the password as requested.
As shown in the previous section, you can see that based on the details provided input, the key is generated using the RSA method specified above. After the key is generated, we have to use this key and push the necessary work to the remote repository.
Specifying SSH Keys
Sometimes, developers need another SSH key to be able to push their work to a given Git repository. Since ~/.ssh/id_rsa is the default server SSH deploy key, it does not allow developers to push local repositories in the developer workspace to a Git server that may have a unique host.
For this case where the username and hostname are the same, the developer should specify another SSH key and permissions in their ~/.ssh/config. Assume the configuration looks like the following definition.
Host git-as-anaa
HostName git.com
User git
IdentityFile ~/home/key/xsshfile.thuc
IdentitiesOnly yes
Host git-as-tomi
HostName git.com
User git
IdentityFile /home/key/sshfile.ten
IdentitiesOnly yes
If configured like this, developers will simply use github-as-anaa
and github-as-tomi
, replacing the original hostname (git.anaa.com) in their URLs.
$ git remote add anaa git@git-as-anaa:your-repo.git
$ git remote add tomi git@git-as-tomi:your-repo.git
The option IdentitiesOnly yes
is used to stop using the default identity. On the other hand, if we also have identity files with the same name as the default, they will definitely be tried first, because the option IdentityFile is different from other configuration options and is appended to the list of identities to try.
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
Moving commits to another branch in Git
Publish Date:2025/04/01 Views:200 Category:Git
-
Git is a very useful and powerful tool in the modern software world. Many types of files and codes can be stored through branches and commits in Git. Branches are a different concept depending on the version control system you use. Many dev
Use Git Prune command to clean up Git repository
Publish Date:2025/04/01 Views:73 Category:Git
-
In this article, we will discuss git prune the command and its uses. We know that Git is very careful with our data. When we delete data like commits, Git doesn't easily lose them. This can lead to stale data piling up in our machines. This
Git diff shows diff details of uncommitted changes
Publish Date:2025/03/31 Views:105 Category:Git
-
This article outlines how we can get diff details of uncommitted work in Git. We use the git diff command to show the differences between various Git references, such as commits, the index, and the working tree. We can use this command to d
Staging area in Git
Publish Date:2025/03/31 Views:152 Category:Git
-
In this article, we will learn about the staging area in Git . Git is a version control system that maintains a history of changes made to a project directory. Git uses commits to track changes. Git has three internal management systems, on
Add all files in a folder to commit in Git
Publish Date:2025/03/31 Views:159 Category:Git
-
This article will discuss the necessary steps to add all of your files into one folder for submission. If you have a folder with a dozen files, adding the files one by one can be tedious. Fortunately, Git allows us to add all the contents o
Meaning of Fetch_Head in Git
Publish Date:2025/03/31 Views:64 Category:Git
-
This article defines Fetch_HEAD in Git . This reference is an integral part of the git pull command and is important when merging changes from a remote repository into a local repository or branch. If you're not sure what Fetch_Head means,
Get all branches in Git
Publish Date:2025/03/31 Views:63 Category:Git
-
This article discusses how to fetch all branches from a remote repository. The git fetch command is a useful utility when you want to download changes from a remote repository without having to update your local branches. Sometimes, you may
Clone a Git repository with a specific revision
Publish Date:2025/03/31 Views:83 Category:Git
-
This article discussed various methods that we can use to clone a Git repository with a specific revision or changeset. This comes in handy when you have a repository with large files and you only need a specific version of the code. Instea
Squash commits pushed in Git
Publish Date:2025/03/31 Views:87 Category:Git
-
This article outlines the process of squashing commits that we have pushed to a remote repository. We squash the commits into one to reduce clutter in the repository. To squash the commits, we run git rebase in interactive mode . Squash com