With mercurial it is easy to create a tag at a certain revision: hg tag -r <revision> <tag-name>. But how to create a branch at a certain revision?
With mercurial it is easy to create a tag at a certain revision: hg
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Preface: Mercurial branches are two types:
Named Branch
In order to get named branch BRANCHNAME, starting at REV
commit is a must, because
as noted in
hg help branchAnonymous branch
and current branch get additional head
And as a last step, use the following command to create a remote branch and push the changesets.