##// END OF EJS Templates
convert: svn: remove debugging message
convert: svn: remove debugging message

File last commit:

r5075:2184378b default
r5122:487659a9 default
Show More
test-issue352
22 lines | 226 B | text/plain | TextLexer
#!/bin/sh
# http://www.selenic.com/mercurial/bts/issue352
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