##// END OF EJS Templates
merge with crew-stable
merge with crew-stable

File last commit:

r4180:f80cf8b7 default
r4181:ac9e891f merge default
Show More
test-diffdir
21 lines | 283 B | text/plain | TextLexer
#!/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