I would like to see the branch topology of my git repository in a nutshell, without visualizing the whole commit history at the same time, which makes the branch visualization hard to read.
For example, here is what I get by following the command given here
$ git log --graph --full-history --all --pretty=format:"%h%x09%d%x20%s"
* 822458d (HEAD -> branch2) revision 5
* 1057127 revision 4
| * ae46e7e (branch1a) revision 3
| * 39cd7e2 (branch1) revision 2
| * 6802061 revision 1
|/
* f8c8522 (master) start
While what I want is just the topology of the branches, without the commit historym i.e. something like this
branch2
| branch1a
| /
| branch 1
|/
(master)
Do you guys know how to achieve this in git?
Thank you.