view tests/test-nested-repo @ 2099:cd7cb896396b

Merge with cmason
author Thomas Arendsen Hein <thomas@intevation.de>
date Wed, 19 Apr 2006 21:37:43 +0200
parents 5987c1eac2ce
children 3335564f2518
line wrap: on
line source

#!/bin/sh

hg init a
cd a
hg init b
echo x > b/x
echo '# should print nothing'
hg st
echo '# should print ? b/x'
hg st b/x

hg add b/x

echo '# should print A b/x'
hg st
echo '# should forget b/x'
hg forget
echo '# should print nothing'
hg st b