tests/test-diffdir
author Matt Mackall <mpm@selenic.com>
Sat, 21 Jul 2007 16:02:10 -0500
changeset 4960 5c5d23d93447
parent 4208 f80cf8b7bbd9
permissions -rwxr-xr-x
Use a weakref for recursive transactions

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