tests/test-diffdir
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
Sat, 17 Feb 2007 09:54:59 -0200
changeset 4105 ed46895aa38c
parent 3825 000d122071b5
child 4167 4574a8cb080f
permissions -rwxr-xr-x
git binary patches: use hashes to detect identical files

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