Search code examples
gitgit-branch

Git: Find the most recent common ancestor of two branches


How to find the most recent common ancestor of two Git branches?


Solution

  • You are looking for git merge-base. Usage:

    $ git merge-base branch2 branch3
    050dc022f3a65bdc78d97e2b1ac9b595a924c3f2