154

With Git, how can I tell if one commit in my branch is a descendant of another commit?

Joachim Sauer
  • 278,207
  • 54
  • 523
  • 586
engie
  • 2,089
  • 3
  • 15
  • 13
  • 2
    Same question asked the opposite: http://stackoverflow.com/questions/18345157/how-can-i-tell-if-one-commit-is-an-ancestor-of-another-commit-or-vice-versa – Chris Cleeland Dec 18 '14 at 16:06
  • 11
    Could you change your accepted answer? The majority likes the `--is-ancestor` solution. – Robert Siemer Nov 13 '15 at 19:14

8 Answers8

271

From Git 1.8.0, this is supported as an option to merge-base:

git merge-base --is-ancestor <maybe-ancestor-commit> <descendant-commit>

From the man page:

--is-ancestor

Check if the first is an ancestor of the second , and exit with status 0 if true, or with status 1 if not. Errors are signaled by a non-zero status that is not 1.

For example:

git merge-base --is-ancestor origin/master master; echo $?
rob mayoff
  • 342,380
  • 53
  • 730
  • 766
Matt R
  • 8,134
  • 6
  • 43
  • 70
  • 5
    Nice! Here's a shell script that wraps this answer up in something with human-reabable output: https://gist.github.com/simonwhitaker/6354592 – Simon Whitaker Aug 27 '13 at 14:58
  • 3
    In other words: `git merge-base THING --is-ancestor OF_THING && echo yes || echo no` e.g.: `git merge-base my-feature-branch --is-ancestor master && echo yes || echo no` – user1735594 Feb 14 '18 at 10:31
  • 2
    @smarber `git merge-base --is-ancestor -- commit commit` works for hashes at my side with `git` 2.1.4 (Debian/Devuan 7.10 jessie) and 1.9.1 (Ubuntu 14.04 trusty) which are rather ancient now. It works even for Debian wheezy, if you do `sudo apt-get install git/wheezy-backports`. – Tino Feb 18 '18 at 12:12
58

If you want to check this programmatically (e.g. in script), you can check if git merge-base A B is equal to git rev-parse --verify A (then A is reachable from B), or if it is git rev-parse --verify B (then B is reachable from A). git rev-parse is here needed to convert from commit name to commit SHA-1 / commit id.

Using git rev-list like in VonC answer is also possibility.

Edit: in modern Git there is explicit support for this query in the form of git merge-base --is-ancestor.


If one of commits you are asking about is a branch tip, then git branch --contains <commit> or git branch --merged <commit> might be better non-programmatic solution.

Jakub Narębski
  • 268,805
  • 58
  • 209
  • 228
  • 1
    Possibly the fastest way would be to `git checkout -b quickcheck ` and then `git branch --contains ` (and then `git branch -D quickcheck` to get rid of the temporary branch). – clee Jun 10 '10 at 20:23
  • 2
    Two possible approaches, both of them much worse than the one in @MattR's answer. – jwg Aug 09 '16 at 12:57
  • 6
    @jwg: MattR answer is better, but this answer (and probably it being accepted) predates git 1.8.0 and `git merge-base --is-ancestor` by 2 years. – Jakub Narębski Aug 18 '16 at 17:39
  • @JakubNarębski Fair enough, sorry. – jwg Aug 24 '16 at 14:15
  • 3
    In a large repository (2 million commits), I compared the speed of `git branch --contains ` and `git merge-base --is-ancestor ...`: 3m40s vs 0.14s – hagello Nov 14 '17 at 11:56
  • @JakubNarębski you're entirely right, but these days I think people would want to discover the newer option. Maybe you can edit your answer to incorporate the 1.8.0+ solution? – Jelle Fresen Aug 22 '19 at 10:20
16

This kind of operations relies on the notion of range of revisions detailed in the SO question: "Difference in ‘git log origin/master’ vs ‘git log origin/master..’".

git rev-list should be able to walk back from a commit, up until another if reachable.

So I would try:

git rev-list --boundary 85e54e2408..0815fcf18a
0815fcf18a19441c1c26fc3495c4047cf59a06b9
8a1658147a460a0230fb1990f0bc61130ab624b2
-85e54e240836e6efb46978e4a1780f0b45516b20

(Boundary commits are prefixed with -)

If the last commit displayed is the same than the first commit in the git rev-list command, then it is a commit reachable from the second commit.

If the first commit is not reachable from the second, git rev-list should return nothing.

git rev-list --boundary A..B

would finish by A, if A is reachable from B.
It is the same as:

git rev-list --boundary B --not A

,with B a positive reference, and A a negative reference.
It will starts at B and walks back through the graph until it encounters a revision that is reachable from A.
I would argue that if A is directly reachable from B, it will encounter (and display, because of the --boundary option) A itself.

Community
  • 1
  • 1
VonC
  • 1,042,979
  • 435
  • 3,649
  • 4,283
  • This sounds like a common-enough use-case that I'm surprised that git hasn't yet published a "porcelain" command that does exactly this. – Lawrence I. Siden Jul 15 '12 at 16:42
  • 1
    @lsiden: true. Side-note: don't forget that to check something *programmatically*, you aren't supposed to use porcelain command, (as in http://stackoverflow.com/questions/6976473/what-does-the-term-porcelain-mean-in-git/6978402#6978402), but plumbing commands (as illustrated in http://stackoverflow.com/questions/3878624/how-do-i-programmatically-determine-if-there-are-uncommited-changes/3879077#3879077) – VonC Jul 15 '12 at 17:15
  • Oh, man, it looks like I have to go back and work on my Shell scripting chops! – Lawrence I. Siden Jul 17 '12 at 11:22
  • 1
    question: why does the `-85e54e2...` in the snippet have a minus? also a possible typo: "... is the same than the first commit ..." – sdaau Mar 15 '15 at 19:34
  • 1
    @sdaau `-` means it is a boundary commit. I have edited the answer to make that clearer, as well as to refresh doc links and fix the typo for this 5 years-old answer. – VonC Mar 15 '15 at 19:50
  • >If the first commit is not reachable from the second, git rev-list should return nothing. then, first commit is ascendent or descendent? – ealeon Jun 05 '20 at 02:50
  • @ealeon not descendant. You would need to check if the second commit is reachable from the first to know if the first commit is ascendant. If not, the first and second commit are not related at all. – VonC Jun 05 '20 at 06:05
13

Another way would be to use git log and grep.

git log --pretty=format:%H abc123 | grep def456

This will produce one line of output if commit def456 is an ancestor of commit abc123, or no output otherwise.

You can usually get away with omitting the --pretty argument, but it is needed if you want to make sure that you only search through actual commit hashes and not through log comments and so on.

Michael
  • 5,910
  • 4
  • 52
  • 74
itub
  • 1,054
  • 1
  • 9
  • 11
3

https://stackoverflow.com/a/13526591/895245 mentions it, now to make it more human friendly:

git-is-ancestor() (
  if git merge-base --is-ancestor "$1" "$2"; then
      echo 'ancestor'
  elif git merge-base --is-ancestor "$2" "$1"; then
      echo 'descendant'
  else
      echo 'unrelated'
  fi
)
alias giia='git-is-ancestor'
Community
  • 1
  • 1
1

git show-branch branch-sha1 commit-sha1

Where:

  • branch-sha1: the sha1 in your branch you want to check
  • commit-sha1: the sha1 of the commit you want to check against
viq
  • 1,219
  • 1
  • 8
  • 4
1

If you are using git merge-base --is-ancestor, make sure to use Git 2.28 (Q3 2020)

With Git 2.28 (Q3 2020), a few fields in "struct commit" that do not have to always be present have been moved to commit slabs.

See commit c752ad0, commit c49c82a, commit 4844812, commit 6da43d9 (17 Jun 2020) by Abhishek Kumar (abhishekkumar2718).
(Merged by Junio C Hamano -- gitster -- in commit d80bea4, 06 Jul 2020)

commit-graph: introduce commit_graph_data_slab

Signed-off-by: Abhishek Kumar

The struct commit is used in many contexts. However, members generation and graph_pos are only used for commit-graph related operations and otherwise waste memory.

This wastage would have been more pronounced as we transition to generation number v2, which uses 64-bit generation number instead of current 32-bits.

As they are often accessed together, let's introduce struct commit_graph_data and move them to a commit_graph_data slab.

While the overall test suite runs just as fast as master, (series: 26m48s, master: 27m34s, faster by 2.87%), certain commands like git merge-base --is-ancestor were slowed by 40% as discovered by Szeder Gábor.
After minimizing commit-slab access, the slow down persists but is closer to 20%.

Derrick Stolee believes the slow down is attributable to the underlying algorithm rather than the slowness of commit-slab access and we will follow-up in a later series.

VonC
  • 1,042,979
  • 435
  • 3,649
  • 4,283
-1

Building up on itub's answer, in case you need to do this for all the tags in the repository:

for i in `git tag` ; do echo -ne $i "\t" ; git log --pretty=format:%H $i | (grep <commit to find> || echo ""); done
ocroquette
  • 2,315
  • 1
  • 17
  • 20