tests/test-diff-color
author Dirkjan Ochtman <dirkjan@ochtman.nl>
Tue, 12 May 2009 10:57:55 +0200
changeset 8359 07ddec2ea203
parent 7458 03dd55115985
child 9579 c06e7581bbaa
permissions -rwxr-xr-x
hgweb: trust config file passed into hgwebdir Before this patch, hgwebdir suddenly showed up empty for a webdir-conf file that was for some reason not trusted. This was previously not a problem because the trust mechanism wasn't required for the very separate webdir-conf.

#!/bin/sh

echo "[extensions]" >> $HGRCPATH
echo "color=" >> $HGRCPATH

hg init repo
cd repo
cat > a <<EOF
c
c
a
a
b
a
a
c
c
EOF
hg ci -Am adda
cat > a <<EOF
c
c
a
a
dd
a
a
c
c
EOF

echo '% default context'
hg diff --nodates --color=always

echo '% --unified=2'
hg diff --nodates -U 2  --color=always