##// END OF EJS Templates
warn about new heads on commit (issue842)
warn about new heads on commit (issue842)

File last commit:

r6296:a9e6b887 default
r6336:4b0c9c67 default
Show More
test-rebuildstate
24 lines | 317 B | text/plain | TextLexer
#!/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
echo '% state dump'
hg debugstate --nodates | sort
echo '% status'
hg st -A
hg debugrebuildstate
echo '% state dump'
hg debugstate --nodates | sort
echo '% status'
hg st -A