I have the following situation in my repository:
A----B----F----G----(long time)----H <- default branch, H is what I'm working on
\
C----D <- default branch, long time ago
\
E <- non-default named branch
I'm working in the default branch, the current revision is H, the tip. Sadly in historic times, someone worked on D and then branched this into a named branch, in revision E. (This was actually an SVN import, but that doesn't matter).
Until now, that was not a problem, because D is not a topological head. But nowaday's I use buildbot to perform some testing and builtbot complains about multiple heads in the default branch. This is correct, because it uses hg heads to determine the default heads.
How can I get rid of D being a head of the default branch? I though about closing D via hg commit --close-branch. But doesn't that create an actual topological head?
