##// END OF EJS Templates
Declare bzr TERM=dumb to silence progress bars...
Declare bzr TERM=dumb to silence progress bars In theory, one could set BZR_PROGRESS_BAR=none but it does not work in 1.14rc2

File last commit:

r6344:ffeb926d default
r8211:5b4ff21c default
Show More
test-rebuildstate
19 lines | 246 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
hg debugrebuildstate
echo '% state dump after'
hg debugstate --nodates | sort
echo '% status'
hg st -A