##// END OF EJS Templates
formatter: add pickle format...
formatter: add pickle format This gives convenient Python2 output. Python 3 users will need encoding=bytes.

File last commit:

r16913:f2719b38 default
r22430:968247e8 default
Show More
test-issue1089.t
26 lines | 321 B | text/troff | Tads3Lexer
http://mercurial.selenic.com/bts/issue1089
$ hg init
$ mkdir a
$ echo a > a/b
$ hg ci -Am m
adding a/b
$ hg rm a
removing a/b (glob)
$ 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 (glob)
$ cd b
Relative delete:
$ hg ci -m m ../a
$ cd ..