tests/test-diffdir
author Brendan Cully <brendan@kublai.com>
Sat, 10 Mar 2007 17:36:27 -0800
changeset 4174 a2335e832e16
parent 4167 4574a8cb080f
child 4180 f80cf8b7bbd9
permissions -rwxr-xr-x
Make update with no node jump to the tip of the current branch

#!/bin/sh

hg init
hg branch dummy # needed so -r "" doesn't point to the unnamed/default branch
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