view tests/test-rollback @ 2227:4f072bb06e89

deprecate undo command, replace with rollback command.
author Vadim Gelfer <vadim.gelfer@gmail.com>
date Mon, 08 May 2006 14:19:05 -0700
parents tests/test-undo@7544700fd931
children
line wrap: on
line source

#!/bin/sh

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