tests/test-diffdir
author Bryan O'Sullivan <bos@serpentine.com>
Tue, 17 Jul 2007 09:39:30 -0700
changeset 4897 4574925db5c0
parent 4208 f80cf8b7bbd9
permissions -rwxr-xr-x
Add Chris Mason's mpatch library. The original repo is http://oss.oracle.com/mercurial/mason/mpatch

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