##// END OF EJS Templates
config: gather the path to edit through rcutil...
config: gather the path to edit through rcutil Using the common logic helps to reduce potential error when it changes

File last commit:

r50516:55c6ebd1 stable
r53324:8c509a70 default
Show More
test-issue1089.t
27 lines | 315 B | text/troff | Tads3Lexer
https://bz.mercurial-scm.org/1089
$ hg init repo
$ cd repo
$ mkdir a
$ echo a > a/b
$ hg ci -Am m
adding a/b
$ hg rm a
removing a/b
$ hg ci -m m a
$ mkdir a b
$ echo a > a/b
$ hg ci -Am m
adding a/b
$ hg rm a
removing a/b
$ cd b
Relative delete:
$ hg ci -m m ../a
$ cd ..