Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I query git to find out which branches contain a given commit? gitk will usually list the branches, unless there are too many, in which case it just says "many (38)" or something like that. I need to know the full list, or at least whether certain branches contain the commit.

share|improve this question

1 Answer

up vote 189 down vote accepted

From the git branch manual page:

 git branch --contains <commit>

Only list branches which contain the specified commit.

See also this git ready article.

The --contains tag will figure out if a certain commit has been brought in yet into your branch. Perhaps you’ve got a commit SHA from a patch you thought you had applied, or you just want to check if commit for your favorite open source project that reduces memory usage by 75% is in yet.

$ git log -1 tests
commit d590f2ac0635ec0053c4a7377bd929943d475297
Author: Nick Quaranto <nick@quaran.to>
Date:   Wed Apr 1 20:38:59 2009 -0400

    Green all around, finally.

$ git branch --contains d590f2
  tests
* master

MatrixFrog comments that it only shows which branches contain that exact commit.
If you want to know which branches contain an "equivalent" commit (i.e. which branches have cherry-picked that commit) that's git cherry:

Because git cherry compares the changeset rather than the commit id (sha1), you can use git cherry to find out if a commit you made locally has been applied <upstream> under a different commit id.
For example, this will happen if you’re feeding patches <upstream> via email rather than pushing or pulling commits directly.

           __*__*__*__*__> <upstream>
          /
fork-point
          \__+__+__-__+__+__-__+__> <head>

(Here, the commit marked '-' wouldn't show up with git cherry, meaning there are already present in <upstream>)

share|improve this answer
3  
tests and master - master is the current branch, therefore the asterisk. – blueyed Mar 25 '11 at 13:31
10  
This only shows which branches contain that exact commit. If you want to know which branches contain an "equivalent" commit (i.e. which branches have cherry-picked that commit) that's git cherry: "Because git cherry compares the changeset rather than the commit id (sha1), you can use git cherry to find out if a commit you made locally has been applied <upstream> under a different commit id. For example, this will happen if you’re feeding patches <upstream> via email rather than pushing or pulling commits directly." kernel.org/pub/software/scm/git/docs/git-cherry.html – MatrixFrog Apr 14 '11 at 1:04
21  
Add a -a parameter to also check remote branches. – Raman Jan 25 '12 at 23:45
1  
You can also do git tag --contains <commit>. See Searching for all tags that contain a commit?. – Andrew Marshall Jan 18 at 17:42
1  
@UpAndAdam I would recommend making that a separate question (with a link referring back to this one). – VonC Apr 30 at 15:27
show 7 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.