How can I get the graph of a multibranches Git revision history for which:
- commits of one branch are gathered together ordered by date, and therefore
- commits of all branches are are not ordered by date.
Illustration:
EXAMPLE 1 EXAMPLE 2
BAD BETTER BAD BETTER
* * | * *
|\ |\ | * *
* | | * * | *
| * | * * | *
| * | * * | *
* | | * * | *
| * | * * | *
| * | * * | *
* | * | | * *
| * * | * | | *
| * * | * | | *
* | * | * | | *
|/ |/ |/ |/
* * * *
This is slightly better for reading and understanding big graphs revision history.
I am looking this kind of display for:
- git log
--graph
will implicitly cause a--topo-order
and solve the example 1
- sourcetree
- gitKraken.