hgbook
annotate es/examples/daily.rename @ 349:a0d0a802c712
modifications to use the babel package for spanish
author | jerojasro@localhost |
---|---|
date | Sun Oct 19 23:44:02 2008 -0500 (2008-10-19) |
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 |