How to tag and goes to a tag in hg
- by michael
Hi,
From here, it said 'hg tag 1.0' is to get my hg repository to a tag name.
http://wiki.pylonshq.com/display/pylonscookbook/Mercurial+for+Subversion+Users
How can I switch my repository to that tag name?
$ hg tag myTag1.0
$
$ hg commit -m "a message"
$ hg how to go back to that tag?
and if I make a new 'hg commit' here, what will happen? Will it goes to the branch of myTag1.0?
or it will stay with default branch?
Thank you.