If you use gitk --all, you can see all the commits of your repo, from all branches. I want something like that except only the descendants of a given commit.

link|improve this question

38% accept rate
1  
Though manojlds' first sentence is correct, it's not the entire truth: it would be possible to kludge something which checks to see if each ref has the given commit in its ancestry, and then display history starting from those refs. – Jefromi Dec 11 '11 at 3:44
feedback

2 Answers

I think this might do what you want. All commits in all branches, that have A as ancestor:

gitk --all --ancestry-path A..
link|improve this answer
feedback

A commit only knows about its parent ( and hence all the way up) but has no clue about its children / descendants. You must use a notation like A..B to find it.

For example if you want to find commits in current branch since the given commit A, you can do something like this:

git rev-list A..
link|improve this answer
gitk --all must work somehow. It seems possible to at least code it to first gitk --all and then omit every commit that doesn't have a given commit as its parent. – Pistos Dec 11 '11 at 4:49
feedback

Your Answer

 
or
required, but never shown

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