Something I don't understand about how SVN displays log output. Suppose I have a project at revision 10. I then alter a subfile in the project, which is now at revision 11. The svn log command now shows me the following:
svn log -vv
r10 ...
------
r9 ...
------
r8 ...
However, the lastest change (r11) shows up only if I specify the filename:
svn log -vv ChangedFilename
r11 ...
Shouldn't r11 show up in the first command as well?