tests/test-empty-dir
author Thomas Arendsen Hein <thomas@intevation.de>
Thu, 26 Jan 2006 16:37:31 +0100
changeset 1640 9a5b778f7e2d
parent 814 0902ffece4b4
child 1926 ba198d17eea9
permissions -rwxr-xr-x
Added hint to hg-ssh that you can use shell pattern matching.

#!/bin/sh

hg init
echo 123 > a
hg add a
hg commit -m "first" -d "0 0" a
mkdir sub
echo 321 > sub/b
hg add sub/b
hg commit -m "second" -d "0 0" sub/b
cat sub/b
hg co 0
cat sub/b
ls sub

true