SVN terminal, list (log) the last (top) ‘n’ transactions
The followings are terminal commands for getting the details of the last ‘n’ changes to a SVN repository:
Step 1: Find the last revision number:
Use tomorrow date to include the transactions for today. If today is 7 Oct then
$ svn log -r {2010-10-08}
601 | amiraryani | 2010-10-07 18:40:23 +1100 (Thu, 07 Oct 2010) | 1 line
Step2: Now that we know the last revision number is 601, we can get the last 10 transaction between 601 and 591
svn log -r 601:591
also we can get more details by adding –verbose parameter.
svn log -r 601:591 --verbose
References:
fitz.blogspot.com
Advertisement
Categories: IT Support, Unix
SVN