##// END OF EJS Templates
help/dates: use DATE as place-holder in help and abort texts...
help/dates: use DATE as place-holder in help and abort texts The use of "{datetime}" was unfortunate since I as a user never knew if I was expected to do hg log -d '>{2011-04-01}' or hg log -d '>2011-04-01' The word "datetime" is also confusing -- calling it a date it much simpler.

File last commit:

r12316:4134686b default
r13886:fe48c573 default
Show More
test-nested-repo.t
40 lines | 493 B | text/troff | Tads3Lexer
$ hg init a
$ cd a
$ hg init b
$ echo x > b/x
Should print nothing:
$ hg add b
$ hg st
Should fail:
$ hg st b/x
abort: path 'b/x' is inside repo 'b'
[255]
$ hg add b/x
abort: path 'b/x' is inside repo 'b'
[255]
Should fail:
$ hg add b b/x
abort: path 'b/x' is inside repo 'b'
[255]
$ hg st
Should arguably print nothing:
$ hg st b
$ echo a > a
$ hg ci -Ama a
Should fail:
$ hg mv a b
abort: path 'b/a' is inside repo 'b'
[255]
$ hg st