View merged and unmerged branches in Git
This article discusses how to list merged and unmerged branches in Git. Git branches encourage convergent evolution of code.
This is where we create a branch as a temporary space to work on a feature, and then merge the branch with its origin. How do we list merged and unmerged branches in Git?
View merged and unmerged branches in Git
We have created multiple branches outside of the master branch. How can we list all the branches that have been merged into the master branch?
We can use the git branch command to display a list of all branches merged into the master branch, as shown below.
$ git branch --merged master
This will list all local branches that have been merged into the master branch. What if we want to list the branches that have been merged into our HEAD, i.e. the current checkout branch?
We can run git branch
the command as shown below.
$ git branch --merged
This will list all branches that have been merged into the currently checked out branch.
请注意
, this command only shows local branches.
As shown in the image below, you can add the -r flag to show remote branches.
$ git branch -r merged
Suppose we want to list all branches that have not been merged yet. How can we do that?
We can git branch
add the --no-merged flag to the command as shown below.
$ git branch --no-merged
This will show you all HEAD
the branches that have not yet been merged into the current one.
In summary, as mentioned above, we can use git branch
the command to list merged and unmerged branches. Adding the -r flag will only show remote branches.
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
Git shows remote tracking branches
Publish Date:2025/04/03 Views:125 Category:Git
-
Branches on remote Git repositories are called remote branches. These are pointers to our remote repositories, including branches, tags, etc. Local branches only exist on each developer's local personal computer, but there is only one remot
Copy files from another branch in Git
Publish Date:2025/04/03 Views:52 Category:Git
-
In Git, merging various files can lead to a lot of conflicts. Through these merge conflicts, our files may be compromised, so we have to copy these files or folders from one branch to another to keep them safe. A popular approach is cherry
Push to a specific branch in Git
Publish Date:2025/04/02 Views:54 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:127 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:113 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:117 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:168 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