System Grab Bag

View all TLDR pages from common (or from all pages)

git merge-base

Find a common ancestor of two commits. More information: https://git-scm.com/docs/git-merge-base.
  • Print the best common ancestor of two commits:
    git merge-base {{commit_1}} {{commit_2}}
  • Output all best common ancestors of two commits:
    git merge-base --all {{commit_1}} {{commit_2}}
  • Check if a commit is an ancestor of a specific commit:
    git merge-base --is-ancestor {{ancestor_commit}} {{commit}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.