tests/test-rebuildstate
author Adrian Buehlmann <adrian@cadifra.com>
Wed, 23 Apr 2008 19:40:15 +0200
changeset 6612 59e087f99920
parent 6344 ffeb926d57ce
permissions -rwxr-xr-x
gendoc: add anchors for commands Enables links into hg.1.html of the form: hg.1.html#command

#!/bin/sh
# basic test for hg debugrebuildstate

hg init repo
cd repo

touch foo bar
hg ci -Am 'add foo bar'

touch baz
hg add baz
hg rm bar

hg debugrebuildstate
echo '% state dump after'
hg debugstate --nodates | sort
echo '% status'
hg st -A