tests/test-diffdir
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Sun, 17 Dec 2006 05:00:22 +0100
changeset 3925 27230c29bfec
parent 3822 000d122071b5
child 4167 4574a8cb080f
permissions -rwxr-xr-x
fix calculation of new heads added during push with -r fix issue450

#!/bin/sh

hg init
touch a
hg add a
hg ci -m "a" -d "1000000 0"

echo 123 > b
hg add b
hg diff --nodates

hg diff --nodates -r tip

echo foo > a
hg diff --nodates

hg diff -r ""
hg diff -r tip -r ""

true