tests/test-diffdir
author Patrick Mezard <pmezard@gmail.com>
Tue, 17 Jul 2007 23:33:42 +0200
changeset 5083 73169e5d2732
parent 4208 f80cf8b7bbd9
permissions -rwxr-xr-x
posixfile_nt: '+' was understood as read mode instead of update.

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