##// END OF EJS Templates
locate: don't print "file not found" messages....
locate: don't print "file not found" messages. This should fix issue204.

File last commit:

r4180:f80cf8b7 default
r4308:a5cde03c 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