Hi,
From here, it said hg tag 1.0
is to get my Mercurial repository to a tag name.
How can I switch my repository to that tag name?
$ hg tag myTag1.0
$ <edit more files>
$ 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.