tests/test-undo
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Sun, 13 Nov 2005 16:25:45 +0100
changeset 1539 5e47e42b14ba
parent 814 0902ffece4b4
child 1933 7544700fd931
permissions -rwxr-xr-x
use posix compliant option for head head -N is not posix compliant, head -n N should be used instead

#!/bin/sh

mkdir t
cd t
hg init
echo a > a
hg add a
hg commit -m "test" -d "0 0"
hg verify
hg parents
hg status
hg undo
hg verify
hg parents
hg status