How can I find all the commits that have a given commit as parent?
For instance, if I have this Git commit graph,
G H I J
\ / \ /
D E F
\ | / \
\ | / |
\|/ |
B C
\ /
\ /
A
I'd like to get a list of all the direct descendants of B
: D
, E
and F
.
D
is a child ofB
, but a sibling ofE
– Cliff