tags:

views:

48

answers:

3

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

thanks

+3  A: 

The command is the following:

svn log -l 10 filename
khmarbaise
+4  A: 

As described in the manual:

svn log -l10 myfile.php

Ether
+1  A: 

If you want first 10 logs, then

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

Anti Veeranna