View topological heads in TortoiseHg

I like to check for any prominent topological heads ( hg heads -t ) that may need to be merged before I start a new job. I see no way to do this in TortoiseHg using revsets. I do not filter out often enough to become a source of strength, and they scare me.

Is it possible?

+6
source share
1 answer

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

  • Switch to the Revision Details view
  • Turn on the Filter Toolbar
  • Enter the following filter: heads(all()) and not closed()
+16
source

Source: https://habr.com/ru/post/917807/


All Articles