tags:

views:

152

answers:

1

Using the SVN commandline is there a way to show the last X number of commits along with commit messages in revere-chronological order?

+1  A: 

svn log --limit 10

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

Lokesh Dhakar
SVN has really useful built-in help. `svn help log` would probably be even faster than a Google search.
meagar