##// END OF EJS Templates
mq: more instructive use of "--" in qguard help (issue2040)
mq: more instructive use of "--" in qguard help (issue2040)

File last commit:

r8936:1de6e7e1 default
r10476:3113736d stable
Show More
test-issue352
24 lines | 265 B | text/plain | TextLexer
#!/bin/sh
# http://mercurial.selenic.com/bts/issue352
"$TESTDIR/hghave" eol-in-paths || exit 80
hg init foo
cd foo
A=`printf 'he\rllo'`
echo foo > "$A"
hg add
hg ci -A -m m
rm "$A"
echo foo > "hell
o"
hg add
hg ci -A -m m
echo foo > "$A"
hg debugwalk
exit 0