I was trying use svn to find a checkin using “svn log”, but it seems like svn log is limited somehow. I started at the root of our source tree, and I did “svn log -l 10” and it gives me revision information for revisions 958 – 949. However, if I do “svn log -r HEAD:900 -l 10”, I get revision information for revisions 998 – 989. Why is that? It seems backwards to me – “svn log -l 10” should give the 10 latest, right? Why do I need all the other parameters to make this work? If I do “svn log -r HEAD” I get just one log entry. I want to be able to get all log entries, then I could grep the results. There must be an easier way?
Share
So, by design, it starts at
BASE. notHEADif you use a path.By all means, don’t limit then: