Re: [PATCH 1/1] Add feature to show log as a tree

2019-03-04 Thread Micha Nelissen
On 03-03-2019 14:16, Junio C Hamano wrote: I am not sure what you mean by a "tree". It definitely is not a tree perceived by Git users (which is what represents a directory structure), and abusing the established term is confusing. I called it tree because the output looks like (right half) of

Re: [PATCH 1/1] Add feature to show log as a tree

2019-03-03 Thread Junio C Hamano
Micha Nelissen writes: > Modifies the topo-order code to keep track of the first child, > using a heuristic. The heuristic works by assigning a (depth) > level to all nodes. The first child is the node of which this > node is a parent of and has the lowest level. Then it cuts all > the links that

[PATCH 1/1] Add feature to show log as a tree

2019-03-03 Thread Micha Nelissen
Modifies the topo-order code to keep track of the first child, using a heuristic. The heuristic works by assigning a (depth) level to all nodes. The first child is the node of which this node is a parent of and has the lowest level. Then it cuts all the links that are not the first child, resulting