tests/test-586
author Thomas Arendsen Hein <thomas@intevation.de>
Sat, 21 Jul 2007 10:43:29 +0200
changeset 4942 c79e3fa6dc29
parent 4536 720ae5085ee3
permissions -rwxr-xr-x
Remove unused pprint import and the commented line which used it before.

#!/bin/sh
# a test for issue586

hg init a
cd a
echo a > a
hg ci -Ama

hg init ../b
cd ../b
echo b > b
hg ci -Amb

hg pull -f ../a
hg merge
hg rm -f a
hg ci -Amc

hg st -A