I wanted a better way to visualize my local trees, so I put together an alias (thanks to some examples online).
```toml
[alias]
lg = log -G --template "{label('custom.rev', rev)} ({label('custom.node', node|short)}) - {label('custom.namedrefs', sub('\(\) ', '', '({separate(\', \', bookmarks, tags)}) '))}{desc|firstline} {label('custom.age', '({date|age} - {date|isodate})')} {label('custom.user', '<{author|person}>')} {label('custom.phase', '[{phase}]')}\n"
[color]
custom.rev = red bold
custom.node = red bold
custom.namedrefs = yellow
custom.phase = bold
custom.user = cyan
custom.age = green
custom.tag = bold yellow
```
> [!seealso] Mercurial Templating Documentation
> [Help: Template Usage](https://hg.octave.org/fem-fenics-eugenio/help/templating)