##// END OF EJS Templates
Allow the user to specify the fallback encoding for the changelog...
Allow the user to specify the fallback encoding for the changelog Example: use EUC-JP instead of ISO-8859-1: [ui] fallbackencoding = EUC-JP

File last commit:

r3387:2065789f default
r3835:d1ce5461 default
Show More
test-diff-hashes
26 lines | 323 B | text/plain | TextLexer
#!/bin/sh
hg init a
cd a
echo bar > foo
hg add foo
hg ci -m 'add foo' -d '1000000 0'
echo foobar > foo
hg ci -m 'change foo' -d '1000001 0'
echo 'quiet:'
hg --quiet diff -r 0 -r 1
echo
echo 'normal:'
hg diff -r 0 -r 1
echo
echo 'verbose:'
hg --verbose diff -r 0 -r 1
echo
echo 'debug:'
hg --debug diff -r 0 -r 1
echo