tests/test-annotate
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Wed, 06 Sep 2006 02:15:33 +0200
changeset 3061 fe5c92529d1c
parent 2925 14b4ad613dd8
child 3165 5c93dd0ae413
permissions -rwxr-xr-x
hgk.py: fix warnings from pychecker - unused variables - usage of undefined variables (opts and filterfiles)

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