hgbook
annotate fr/examples/daily.rename @ 964:6b680d569bb4
deleting a bunch of files not longer necessary to build the documentation.
Adding missing newly files needed to build the documentation
Adding missing newly files needed to build the documentation
author | Romain PELISSE <belaran@gmail.com> |
---|---|
date | Sun Aug 16 04:58:01 2009 +0200 (2009-08-16) |
parents | 1ee53cb37a99 |
children |
rev | line source |
---|---|
bos@118 | 1 #!/bin/bash |
bos@118 | 2 |
bos@118 | 3 hg init a |
bos@118 | 4 cd a |
bos@118 | 5 echo a > a |
bos@118 | 6 hg ci -Ama |
bos@118 | 7 |
bos@118 | 8 #$ name: rename |
bos@118 | 9 |
bos@118 | 10 hg rename a b |
bos@118 | 11 |
bos@118 | 12 #$ name: status |
bos@118 | 13 |
bos@118 | 14 hg status |
bos@118 | 15 |
bos@118 | 16 #$ name: status-copy |
bos@118 | 17 |
bos@118 | 18 hg status -C |