Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

View topological heads in TortoiseHg

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?

like image 871
mo. Avatar asked Jun 11 '12 14:06

mo.


1 Answers

This can be done using revsets in TortoiseHg. To check for unmerged heads, I typically do something like this:

  1. Switch to the Revision Details view
  2. Turn on the Filter Toolbar
  3. Enter the following filter: heads(all()) and not closed()
like image 85
Tim Henigan Avatar answered Oct 08 '22 20:10

Tim Henigan