tests/test-diff-color
author Matt Mackall <mpm@selenic.com>
Tue, 02 Dec 2008 13:06:18 -0600
changeset 7463 6aafd75fb924
parent 7458 03dd55115985
child 9579 c06e7581bbaa
permissions -rwxr-xr-x
Added signature for changeset 2a67430f92f1

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