test-nested-repo.t
36 lines
| 461 B
| text/troff
|
Tads3Lexer
/ tests / test-nested-repo.t
Adrian Buehlmann
|
r12279 | $ 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' | ||||
$ hg add b/x | ||||
abort: path 'b/x' is inside repo 'b' | ||||
Should fail: | ||||
$ hg add b b/x | ||||
abort: path 'b/x' is inside repo 'b' | ||||
$ 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' | ||||
$ hg st | ||||