Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

svn log first 10 only

Tags:

svn

how do I get the first 10 entries on svn log for a file svn log myfile.php

thanks

like image 385
Asim Zaidi Avatar asked Sep 08 '10 19:09

Asim Zaidi


Video Answer


3 Answers

As described in the manual:

svn log -l10 myfile.php

like image 155
Ether Avatar answered Oct 12 '22 23:10

Ether


If you want first 10 logs, then

svn log -r 0:HEAD -l 10 myfile.php

like image 22
Anti Veeranna Avatar answered Oct 12 '22 22:10

Anti Veeranna


The command is the following:

svn log -l 10 filename
like image 37
khmarbaise Avatar answered Oct 13 '22 00:10

khmarbaise