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.
| |||||
feedback
|
|
I think this might do what you want. All commits in all branches, that have A as ancestor:
| |||
|
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:
| ||||
feedback
|