test-empty-dir
16 lines
| 207 B
| text/plain
|
TextLexer
/ tests / test-empty-dir
mpm@selenic.com
|
r578 | #!/bin/sh | ||
hg init | ||||
echo 123 > a | ||||
hg add a | ||||
hg commit -t "first" -u test -d "0 0" a | ||||
mkdir sub | ||||
echo 321 > sub/b | ||||
hg add sub/b | ||||
hg commit -t "second" -u test -d "0 0" sub/b | ||||
cat sub/b | ||||
hg co 0 | ||||
cat sub/b | ||||
ls sub | ||||
true | ||||