Let's say you have this list of branches in a git repository:
* master
|
| * b2
|/
* b1
|
* b
// etc
I know that technically branches are only symbolic references in the DAG that is the commit graph.
If I am on the master branch here, is there a command to obtain a list of branches which are only direct ancestors of master? In the above, that would mean b1 and b, but not b2.