JIYIK CN >

Current Location:Home > Learning > OPERATING SYSTEM > Git >

Git merge-base determines the most recent common ancestor of two branches

Author:JIYIK Last Updated:2025/04/02 Views:

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 recent common ancestor of two branches in Git

What is the common ancestor of two branches in Git?

Take a look at the pictures below.

The common ancestor of the two branches

In the above image, we have the master branch, in which we created a feature branch and a new-feature branch. Let's get rid of the master branch and focus on feature and new-feature branches.

We can see that we created the new feature branch after the bd9172c commit. As you might have guessed, bd9172c commit is the most recent common ancestor of our feature and main branches.

So, how do we find the most recent common ancestor of these two branches?

You only need git merge-basethe command. From Git's documentation, git merge-basethe command helps us findgit merge the best common ancestor of .

However, we can enter two branches as arguments to display the most recent common ancestor of the provided branches.

grammar:

$ git merge-base <Branch 1> <Branch 2>

Let’s look at an example.

The example below shows the master and feature branches of our local repository. To find the common ancestor between the two, we will run git merge-basethe command as shown below.

$ git merge-base master feature

This command should show the commit hash of the common ancestor.

Output:

git merge-base

We can use the following command to get the visualization log.

$ git log --graph --oneline --all --decorate

You should get output like this:

visual log

We can see that our feature branch forked from master at commit 2dbe38d , which is consistent with what we did earlier when we rangit merge-base , which is the same commit hash we got when we ran the command earlier.

git merge-baseYou can find the nearest common ancestor commit of two branches in Git using the command when entering the branch at hand .

Note that this command only gets the most recent common ancestor.

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.

Article URL:

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

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

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Recommended

Tags

Scan the Code
Easier Access Tutorial