tests/test-diff-color
author Edouard Gomez <ed.gomez@free.fr>
Sat, 06 Jun 2009 00:08:37 +0200
changeset 8764 46b5b4301fcc
parent 7458 03dd55115985
child 9579 c06e7581bbaa
permissions -rwxr-xr-x
convert: default to file protocol when no :// found for svn repo url Edited by pmezard: add path separator normalization

#!/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