List last X commits from subversion Print

  • SVN, Subversion, Commit, Listing
  • 19

The following command assuming you are one directory out of the actual svn repo will display the last 3 commits:

svn log ee -v --limit 3

Example output:

user1@user1-pc:/opt/lampp/htdocs$ svn log ee -v --limit 3
------------------------------------------------------------------------
r96 | penny | 2017-06-23 18:30:27 +0300 (Fri, 23 Jun 2017) | 1 line
Changed paths:
M /trunk/themes/website1/default_site/dashboard.group/index.html


------------------------------------------------------------------------
r95 | penny | 2017-06-23 18:28:37 +0300 (Fri, 23 Jun 2017) | 1 line
Changed paths:
M /trunk/themes/website1/default_site/hotels.group/index.html


------------------------------------------------------------------------
r94 | penny | 2017-06-23 18:25:53 +0300 (Fri, 23 Jun 2017) | 1 line
Changed paths:
M /trunk/themes/website1/default_site/common.group/header-bar.html


-----------------------------------------------------------------------


Was this answer helpful?

« Back