##// END OF EJS Templates

File last commit:

r1236:67a28636 default
r1580:4737b36e merge default
Show More
test-revert-unknown
20 lines | 256 B | text/plain | TextLexer
/ tests / test-revert-unknown
mpm@selenic.com
Fix bug with co -C across branches, update tests
r1236 #!/bin/sh
hg init
touch unknown
touch a
hg add a
hg ci -m "1" -d "0 0"
touch b
hg add b
hg ci -m "2" -d "0 0"
echo %% Should show unknown
hg status
hg revert -r 0
echo %% Should show unknown and b removed
hg status
echo %% Should show a and unknown
ls