Search code examples
svncommit

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


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)?


Solution

  • svn log --limit 10
    

    or

    svn log -l 10
    

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