sapling/tests/test-diffdir

21 lines
205 B
Plaintext
Raw Normal View History

#!/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
2006-12-07 19:15:11 +03:00
hg diff -r ""
hg diff -r tip -r ""
true