tests/test-rollback
author Thomas Arendsen Hein <thomas@intevation.de>
Mon, 20 Nov 2006 21:03:02 +0100
changeset 3689 25e549e9b7d0
parent 2227 4f072bb06e89
permissions -rwxr-xr-x
Improved examples for network support in README. - Simplified 'hg serve' example, -p80 needs root anyway. - Example for ssh:// with relative or absolute path. - merges need to be committed.

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