sapling/tests/test-diffdir
Alexis S. L. Carvalho 8e669882ac fix hg diff -r ''
2006-12-07 14:15:11 -02:00

21 lines
205 B
Bash
Executable File

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