Mercurial > hgbook
view en/examples/branch-named @ 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 | 2936cb7eae7a |
children |
line wrap: on
line source
#!/bin/bash hg init a cd a echo hello > myfile hg commit -A -m 'Initial commit' #$ name: branches hg tip hg branches #$ name: branch hg branch #$ name: create hg branch foo hg branch #$ name: status hg status hg tip #$ name: commit echo 'hello again' >> myfile hg commit -m 'Second commit' hg tip #$ name: rebranch hg branch hg branch bar echo new file > newfile hg commit -A -m 'Third commit' hg tip #$ name: parents hg parents hg branches #$ name: update-switchy hg update foo hg parents hg update bar hg parents #$ name: update-nothing hg update foo hg update #$ name: foo-commit echo something > somefile hg commit -A -m 'New file' hg heads #$ name: update-bar hg update bar #$ name: merge hg branch hg merge foo hg commit -m 'Merge' hg tip