Basically, I have dev branch, and what I like to do is to create a feature branch while I implement something, and then merge it back. So situations like the following occurs
a
b
c
d - dev
/
e
f - feature
Since dev isn't a head, is it still possible to bring dev up to feature such that both dev and feature are pointing to f?
I'm pretty sure git can do this just fine, but can't seem to convince Mercurial to do the same...