how do I get the first 10 entries on svn log for a file svn log myfile.php
开发者_Go百科thanks
As described in the manual:
svn log -l10 myfile.php
If you want first 10 logs, then
svn log -r 0:HEAD -l 10 myfile.php
The command is the following:
svn log -l 10 filename
精彩评论