Mercurial > hgbook
view en/examples/branch-named @ 530:f809de31887a
more translation :D
added a term to the glossary
author | jerojasro@localhost |
---|---|
date | Sun, 30 Nov 2008 18:41:51 -0500 |
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