hgbook
annotate es/examples/daily.rename @ 390:c3a867bba34a
modified definitions to allow optional arguments for the inclusion of images.
This needs to be tested for html generation.
translated up to section 2.2.1 ot tour-merge
This needs to be tested for html generation.
translated up to section 2.2.1 ot tour-merge
author | Javier Rojas <jerojasro@devnull.li> |
---|---|
date | Sun Nov 02 20:08:45 2008 -0500 (2008-11-02) |
parents | |
children |
rev | line source |
---|---|
igor@333 | 1 #!/bin/bash |
igor@333 | 2 |
igor@333 | 3 hg init a |
igor@333 | 4 cd a |
igor@333 | 5 echo a > a |
igor@333 | 6 hg ci -Ama |
igor@333 | 7 |
igor@333 | 8 #$ name: rename |
igor@333 | 9 |
igor@333 | 10 hg rename a b |
igor@333 | 11 |
igor@333 | 12 #$ name: status |
igor@333 | 13 |
igor@333 | 14 hg status |
igor@333 | 15 |
igor@333 | 16 #$ name: status-copy |
igor@333 | 17 |
igor@333 | 18 hg status -C |