If I have n git branches, how do I easily show the relationship between these branches?
Basically I am interested in seeing a tree of a subset of al
You can give this a try:
git log --graph --all --decorate --simplify-by-decoration
It will only show commits that are branch heads or tagged.