Copy commits from another branch in Git
When working in Git, we want to integrate a specific single commit from one branch into our current HEAD
branch. This could be because a customer wants some changes to the product or any reported bugs.
Either we committed it by mistake, or we don't want it in our previous branch anymore and want it in our current HEAD
branch instead.
The answer to the above question is CHERRY PICK. Therefore, in the next section, we will discuss cherry-pick
the command in detail.
Copy commits from another branch in Git
Extracting a specific commit from one branch and copying it into our current HEAD
branch is called cherry picking.
Git has a specific command for this, the git- cherry-pick
cherry-picking command. Another use of cherry-picking is to apply specific changes before we merge or develop a pull request.
This is useful for undoing changes.
This article will discuss cherry-picking a specific commit from one branch to another.
Use git log
the command to view the commit
First, we'll use git log
to investigate the commit we want to select. Here are git log
the branch results from the command:
d23216 - 953222 - 953219 - aa3s36 - 532d37 [master]
\
76cada - 66ecb3 - b886a0 [feature]
In feature
the branch, there is a commit from another branch 66ecb3
that we only want in our master
branch.
Let's cherry-pick that particular commit and move it to our current branch, master
the branch. We can then use that commit changes for our project in the future.
Run git cherry-pick
the command to copy the commit
Here, git cherry-pick
will help us. 66ecb3
is the cherry, we want to pick it from the huge number of pushes that have been done in the past.
Let's pick it from another branch by running the following command.
git checkout master
git cherry-pick 66ecb3
Once the commands listed above run successfully, 66ecb3
will now be available as a new commit in our master branch.
So Git copies the commit we need, master
containing the same commit message and changes on the branch. Finally, a new commit is created with a new ID.
Use git reset
the command to clean up other branches
If we switch to feature
the branch, we'll see the same commit in its old location. This is because Git has copied it to another branch instead of moving it.
It does not touch the original branch.
Now, to clean up and undo, we will use the command after checking out the desired branch git reset
.
$ git checkout Test
Switched to branch 'Test'
$ git reset --hard HEAD~1
HEAD is now at 66ecb3 Change the title and delete the error page
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
Push to a specific branch in Git
Publish Date:2025/04/02 Views:53 Category:Git
-
In Git, we use branches to develop independent features directly from the main workflow of the project. Since Git is considered to be the best version control system so far, we have local and remote branches in our repository for different
Solve the Git Push Everything Up-To-Date Problem
Publish Date:2025/04/02 Views:120 Category:Git
-
Git is a free, open source version control system designed to work with projects quickly and efficiently. You can make changes to your repo and push them to master branches. This article explains how to use git push the command to resolve e
Git merge development branch into feature branch
Publish Date:2025/04/02 Views:126 Category:Git
-
Creating new branches and merging them is considered to be the most powerful tool of Git. The ability of Git to create new branches and merge them into the development code is very useful for developers working in a team environment. This f
Understanding Git conflict markers
Publish Date:2025/04/02 Views:112 Category:Git
-
In this article, we will discuss git conflict markers. Understanding Git conflict markers When pulling changes from a remote repository, you may encounter merge conflicts. Merge conflict files can sometimes be confusing. A typical merge con
Selectively merge changes from different branches in Git
Publish Date:2025/04/02 Views:116 Category:Git
-
This article will discuss merging specific changes from one branch to another. As we know, when merging branches, Git merges all files without exception. You may find yourself in a scenario where you have some commits in one branch and you
Complete the merge after resolving conflicts in Git
Publish Date:2025/04/02 Views:63 Category:Git
-
This article describes the process of completing a merge after resolving merge conflicts in Git. We will go through the merge steps, resolve the conflicts, and complete the merge. Complete the merge after resolving conflicts in Git For a si
Merge the development branch into Master in Git
Publish Date:2025/04/02 Views:167 Category:Git
-
This article provides an overview of merging a development branch into the master branch. Often we find ourselves creating a branch outside of the master branch for development. Once we are happy with the changes, we can merge them into mas
Recovering a conflicting Git merge
Publish Date:2025/04/02 Views:160 Category:Git
-
This article explains the revert command when a merge conflict occurs git merge . We will also take a quick look at how to undo a git merge that was successful and has been pushed to a remote repository. Recovering a conflicting Git merge I
Git merge-base determines the most recent common ancestor of two branches
Publish Date:2025/04/02 Views:126 Category:Git
-
This article explains how we can find the most recent common ancestor commit in Git. This comes in handy when you create a branch or merge one branch into another. Without further ado, let’s get into today’s topic. Determine the most re