test-rebuildstate
19 lines
| 246 B
| text/plain
|
TextLexer
/ tests / test-rebuildstate
Alexis S. L. Carvalho
|
r5065 | #!/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 | ||||
Matt Mackall
|
r6344 | hg debugrebuildstate | ||
echo '% state dump after' | ||||
Alexis S. L. Carvalho
|
r6296 | hg debugstate --nodates | sort | ||
Alexis S. L. Carvalho
|
r5065 | echo '% status' | ||
hg st -A | ||||