Selectively merge changes from different branches in 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 have to pick some and merge them into another branch. Let's see how to solve this problem.
Selectively merge changes from different branches in Git
To understand better, we will simulate a scenario where we need to merge some commits from one branch to another. This is how we will solve it.
example:
In our local repository Delftscopetech, we have two branches, namely:
To keep things as realistic as possible, let's assume that we found some bugs in our project that we need to fix. After fixing the bug, we realize that we checked out on the Dev_Branch branch instead of the Main branch.
A normal merge would break our project. What do we do?
In this case, we will first run the git log command to display our commit history in Dev_Branch . Make sure you are in the branch that contains the changes you want.
$ git checkout Dev_Branch
Here is our commit history:
$ git log --oneline
We will then identify the commits we want to merge into our main branch. Here is the commit history in our Main branch:
$ git checkout Main
$ git log --oneline
We can see that our Main branch does not have the following commits:
- edcb8ae Second Bug Fix
- cefb7bb First Bug Fix
To merge two commits, we will use the git cherry-pick command and provide the commit IDs for both commits. Make sure you have checked out in the branch you want to merge into, in our case it is the Main branch.
$ git checkout Main
We can now run cherry-pick as follows:
$ git cherry-pick edcb8ae cefb7bb
The output is as follows:
If you have no merge conflicts, you should get output similar to the one above. Let’s confirm the merge.
$ git log --oneline
The output shows that Git has created two new commits with different commit IDs but the same description. We can now push the branch to the remote repository by running the git push command as follows:
$ git push origin Main
To summarize, git cherry-pick
we can selectively merge in Git thanks to the git merge command. All you need is the commit ID of the changes you want to merge and make sure you are checked out in the right branch.
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
Pushing an empty commit to a remote in Git
Publish Date:2025/04/02 Views:65 Category:Git
-
This article will teach you how to push an empty commit to a remote repository. A commit with no changes is an empty commit because it only contains the commit message. This is useful if we need to push changes to a remote branch to trigger
Moving commits to another branch in Git
Publish Date:2025/04/01 Views:201 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
Git push using SSH keys
Publish Date:2025/04/01 Views:94 Category:Git
-
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,
Delete commits but keep changes in Git
Publish Date:2025/04/01 Views:180 Category:Git
-
This article outlines the steps necessary to undo a Git commit while preserving the changes introduced by the same commit. We'll cover two commands we can use that have the same effect. Without further ado, let’s jump right in. Remove com
Different ways to commit untracked files in Git
Publish Date:2025/04/01 Views:199 Category:Git
-
This article discusses the different methods we can use to commit untracked files in Git. If you introduce new files in your project in Git, these files will fall under the category of untracked files. With respect to the Git version contro