view tests/test-empty-dir @ 581:9db6d5455642

Fix up test-help for export -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Fix up test-help for export manifest hash: a178ced2f645770d11c88261489dd8e8d876d94c -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCx03xywK+sNU5EO8RAs1sAKCNgjEvBkGKaLi//pRy+NyNoDYKgQCghd6F RA+ydCpNoC9k2fvge29c8fc= =DoKn -----END PGP SIGNATURE-----
author mpm@selenic.com
date Sat, 02 Jul 2005 18:31:13 -0800
parents e33c85d2812a
children 7e4843b7efd2
line wrap: on
line source

#!/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