Git push specific commits to remote repository
This article outlines the process of pushing a specific commit to a remote repository in Git. Suppose we have a Git repository with multiple commits, and we need to push only one commit, how would we go about it?
Push specific commits to the remote repository
To push a single commit to a remote repository, we use the Git push command in the context shown below.
$ git push <remote> <commit id>:<remote branch>
As always, we will use an example to illustrate this concept.
The example below shows a demo repository with four commits, as shown in the following image.
Let's say we want to push our initial commit to a remote repository. How would we go about doing this?
Assuming we are pushing to the remote repository for the first time, we will follow the steps below.
First, we add the remote repository to our local repository as shown below.
$ git remote add origin https://github.com/Wachira11ke/Demo.git
To push our initial commit to the remote, we will run:
$ git push origin 6b0f31a:refs/heads/master
Since we are pushing to the remote for the first time, we need to create a master branch in the remote repository using the refs/heads/master parameter. This command will only push our initial commits to the remote repository.
What if we only want to push the first commit, which is to update the license?
Running git push origin c87321d:master
will not produce the expected effect.
This is because Git will push all commits up to and including the specified commit. We don't want that, do we?
We need to reschedule the submissions so that the first submission is the last. Our updated license submission should go immediately after the initial submission.
We can do this by running the git rebase command in interactive mode as shown below.
$ git rebase -i HEAD~3
This command will open a text editor. We will use the pick command and rearrange the commits as shown below.
We can now exit our text editor and complete the rebase. Your commit history should not look like this:
We can now push our commits to the remote repository as shown below.
$ git push origin 20136f7:master
Our remote repository should contain only two commits.
- Initial Submission Submission
- Update license submission.
Let's confirm our situation.
Together, git push <remote> <commit id>:<remote branch>
this allows us to push specific commits to a remote repository.
However, this command will push all commits up to and including the specified commit. To fix this, you will need to use the git rebase command to rearrange your commits as we show.
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 a remote repository using submodules in Git
Publish Date:2025/03/29 Views:58 Category:Git
-
This article will discuss how to clone a remote Git repository using submodules. We will also create a submodule and push it to the remote repository before cloning it. Clone a remote repository using submodules in Git We clone our reposito
Using SSH keys to clone a repository or branch in Git
Publish Date:2025/03/29 Views:138 Category: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 u
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