tests/test-diffdir
author Giorgos Keramidas <keramida@ceid.upatras.gr>
Sun, 24 Jun 2007 10:08:38 -0500
changeset 4699 a6b62584d0b2
parent 4208 f80cf8b7bbd9
permissions -rwxr-xr-x
unbundle: accept multiple file arguments update test-bundle for multiple unbundle support

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