I have a local repository just for me (no remotes) for tracking changes to a website. The website has a staging server and a live server, and the branching methodology I'd like to use is to have a named "live" branch that is the literal representation of the state of the live server (live server could clone the head of that branch and should have no changes). Current development changes as side branches off of 'live' (named for long projects, unnamed (technically also 'live') for short projects), and 'live' merges them back in when they're ready to move off the staging server. So the ideal branching I'd like is something like:
--A---------E------------L----------O-- live
\ / \ / \ /
B--C--D F--I--J--K \ / minor features
\ \ /
G--H---------M--N major feature
However, If I have my working directory updated to revision A (on branch 'live'), and I want to start a new minor project, how do I branch to B?
I can create a new branch name, and then commit on top of A (which leaves the head of 'live' at A, and creates a new branch/head at B), do my work, and then merge the two branches to create the A-E that I want, but now there's a named branch that I need to close. And if I'm creating many smaller features, I need unique names for them all, since "closed" branches are still really there and claiming their name, just marked inactive.
If I just commit B on top of A without a new branch name, the "tip" and "live" tags move up to revision B, and A is no longer a head (meaning after C and D are created, it can't merge with D to make E). Plus, if I clone the head of 'live', it's not representing the live server (which is back at A).
--A--B--C--D live
After creating B, I could update my working directory to A and do a no-changes commit, which would create a new head, but that means I'd have to do a useless commit on my live branch every time I started a new feature.
--A--A' live
\
B--C
So is there a way to submit a commit as a new, unnamed, head in Mercurial?