tests/test-diff-subdir
author Martin Geisler <mg@daimi.au.dk>
Sat, 14 Feb 2009 01:07:44 +0100
changeset 7761 1e70db1825d2
parent 3199 096f1c73cdc3
permissions -rwxr-xr-x
i18n: add python-format comments to Japanese translation

#!/bin/sh

hg init

mkdir alpha
touch alpha/one
mkdir beta
touch beta/two

hg add alpha/one beta/two
hg ci -m "start" -d "1000000 0"

echo 1 > alpha/one
echo 2 > beta/two

echo EVERYTHING
hg diff --nodates

echo BETA ONLY
hg diff --nodates beta

echo INSIDE BETA
cd beta
hg diff --nodates .