If I create a branch:
hg branch branch-A
and fix it:
hg commit -m "improvement A-1"
and then create a second branch:
hg branch branch-B
and fix it:
hg commit -m "improvement B-1"
If I want to add my next change to branch-A, just type:
hg branch branch-A
and fix it as before:
hg commit -m "improvement A-2"
source
share