View topological heads in TortoiseHg
mercurial, tortoisehg
Solution
This can be done using revsets in TortoiseHg. To check for unmerged heads, I typically do something like this:
- Switch to the `Revision Details` view
- Turn on the `Filter Toolbar`
- Enter the following filter: `heads(all()) and not closed()`
Problem
I like to check for any outstanding topological heads (`hg heads -t`), that might need merging, before I start new work. I don't see a way to do that in TortoiseHg using revsets. I don't filter often enough to become a revset poweruser, and they scare me. Is it possible?