comparison tests/test-empty-dir @ 578:e33c85d2812a

Remove empty directories on update -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Remove empty directories on update manifest hash: 113969ec14c75eb9e1013b23cf096f722932b84d -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCxyVoywK+sNU5EO8RAklKAKCzSUhuFClkHN85qlnDp5iVscZbtgCeJVwx dqaqG20GjPMWBg0d1ggI/ro= =o2Uv -----END PGP SIGNATURE-----
author mpm@selenic.com
date Sat, 02 Jul 2005 15:38:16 -0800
parents
children 7e4843b7efd2
comparison
equal deleted inserted replaced
577:5291a16324c0 578:e33c85d2812a
1 #!/bin/sh
2
3 hg init
4 echo 123 > a
5 hg add a
6 hg commit -t "first" -u test -d "0 0" a
7 mkdir sub
8 echo 321 > sub/b
9 hg add sub/b
10 hg commit -t "second" -u test -d "0 0" sub/b
11 cat sub/b
12 hg co 0
13 cat sub/b
14 ls sub
15
16 true