tests/test-revert
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Fri, 17 Mar 2006 18:53:04 +0100
changeset 1969 6d17d420c46c
parent 1933 7544700fd931
child 2029 d436b21b20dc
permissions -rwxr-xr-x
write_bundle: close the file before removing it in case of failure

#!/bin/sh

hg init
echo 123 > a
echo 123 > c
hg add a c
hg commit -m "first" -d "1000000 0" a c
echo 123 > b
echo %% should show b unknown
hg status
echo 12 > c
echo %% should show b unknown and c modified
hg status
hg add b
echo %% should show b added and c modified
hg status
hg rm a
echo %% should show a removed, b added and c modified
hg status
hg revert a
echo %% should show b added and c modified
hg status
hg revert b
echo %% should show b unknown and c modified
hg status
hg revert c
echo %% should show b unknown
hg status
echo %% should show a b and c
ls

true