Nikitha Annaji <nikitha.annaji <at> vayavyalabs.com> writes: > I was trying to display the log message between the dates 2013-06-13 and 2013-06-14 by the following command "svn log -r {2013-06-14}:{2013-06-13}", if no one has committed from the mentioned date then the log should be empty but it is showing the last commit which is was committed on 2013-06-11.
The notation -r {2013-06-13} means the "last revision at or before" that date. So unless you had a commit right at 2013-06-13 00:00 you will select a revision before that date. Ergo, this is not a bug. - Michael