tests/test-revert
author Eung-Ju Park <eungju@gmail.com>
Tue, 28 Mar 2006 09:24:29 -0800
changeset 2013 65634e1038dd
parent 1933 7544700fd931
child 2029 d436b21b20dc
permissions -rwxr-xr-x
Fix error on Windows if "hg log | more" exits.

#!/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