Mercurial > hgbook
view en/examples/tag @ 794:41bb6ec2ca27
Propagate c36a6f534b99
Fix named branching book section.
'hg update -C branchname' is no longer required to jump from one named
branch to another one; this can also be done simply using 'hg update
branchname'.
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Thu, 18 Jun 2009 16:23:58 +0900 |
parents | 4237e45506ee |
children |
line wrap: on
line source
#!/bin/bash #$ name: init hg init mytag cd mytag echo hello > myfile hg commit -A -m 'Initial commit' #$ name: tag hg tag v1.0 #$ name: tags hg tags #$ name: log hg log #$ name: log.v1.0 echo goodbye > myfile2 hg commit -A -m 'Second commit' hg log -r v1.0 #$ name: remove hg tag --remove v1.0 hg tags #$ name: replace hg tag -r 1 v1.1 hg tags hg tag -r 2 v1.1 hg tag -f -r 2 v1.1 hg tags #$ name: tip hg tip