tests/test-annotate
author Matt Mackall <mpm@selenic.com>
Mon, 25 Sep 2006 16:43:21 -0500
changeset 3154 15d585dcdd1c
parent 2925 14b4ad613dd8
child 3165 5c93dd0ae413
permissions -rwxr-xr-x
context: change filectx repr to use @ Avoids confusion with rev:nodeid syntax used elsewhere

#!/bin/sh

echo % init
hg init

echo % commit
echo 'a' > a
hg ci -A -m test -u nobody -d '1 0'

echo % annotate -c
hg annotate -c a

echo % annotate -d
hg annotate -d a

echo % annotate -n
hg annotate -n a

echo % annotate -u
hg annotate -u a

echo % annotate -cdnu
hg annotate -cdnu a