tests/test-diff-color
author Matt Mackall <mpm@selenic.com>
Thu, 07 May 2009 19:39:45 -0500
changeset 8318 6b8513f8274a
parent 7458 03dd55115985
child 9579 c06e7581bbaa
permissions -rwxr-xr-x
revlog: add cache priming for reconstructing delta chains

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