##// END OF EJS Templates
scmutil: add join method to opener to construct path relative to base...
scmutil: add join method to opener to construct path relative to base Useful when we only have the opener without the base path used when it was constructed.

File last commit:

r15440:9ab2b3b7 default
r16199:8181bd80 stable
Show More
test-rebuildstate.t
29 lines | 356 B | text/troff | Tads3Lexer
/ tests / test-rebuildstate.t
Nicolas Dumazet
tests: unify test-rebuildstate
r12121 basic test for hg debugrebuildstate
$ hg init repo
$ cd repo
$ touch foo bar
$ hg ci -Am 'add foo bar'
adding bar
adding foo
$ touch baz
$ hg add baz
$ hg rm bar
$ hg debugrebuildstate
state dump after
$ hg debugstate --nodates | sort
Mads Kiilerich
windows: use umask 022 in debugstate output...
r15440 n 644 -1 bar
n 644 -1 foo
Nicolas Dumazet
tests: unify test-rebuildstate
r12121
status
$ hg st -A
! bar
? baz
C foo