Mercurial > hg
annotate tests/test-empty-dir @ 1582:63799b01985c
fix the cat command
- improve localrepo.walk when passed a node
- make the differents walk commands in commands.py accept a node
- change commands.cat to walk over a revision
- add a test
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Tue, 06 Dec 2005 14:10:38 +0100 |
parents | 0902ffece4b4 |
children | ba198d17eea9 |
rev | line source |
---|---|
578 | 1 #!/bin/sh |
2 | |
3 hg init | |
4 echo 123 > a | |
5 hg add a | |
749
7e4843b7efd2
Update tests to use commit -m and default -u
mpm@selenic.com
parents:
578
diff
changeset
|
6 hg commit -m "first" -d "0 0" a |
578 | 7 mkdir sub |
8 echo 321 > sub/b | |
9 hg add sub/b | |
749
7e4843b7efd2
Update tests to use commit -m and default -u
mpm@selenic.com
parents:
578
diff
changeset
|
10 hg commit -m "second" -d "0 0" sub/b |
578 | 11 cat sub/b |
12 hg co 0 | |
13 cat sub/b | |
14 ls sub | |
15 | |
16 true |