How do I see the last 10 commits in reverse-chronological order with SVN?

Lokesh Dhakar picture Lokesh Dhakar · Apr 20, 2010 · Viewed 92.4k times · Source

Using the SVN command line, is there a way to show the last X number of commits along with commit messages, in reverse-chronological order (newest commit first)?

Answer

Lokesh Dhakar picture Lokesh Dhakar · Apr 20, 2010
svn log --limit 10

or

svn log -l 10

Further googling uncovered the answer. svn log lists in reverse-chronological order by default.