tests/test-rebuildstate
author Bryan O'Sullivan <bos@serpentine.com>
Fri, 11 Apr 2008 22:19:52 -0700
changeset 6526 cfeeac24fc1e
parent 6344 ffeb926d57ce
permissions -rwxr-xr-x
repo: add rjoin method

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