开发者

svn log first 10 only

开发者 https://www.devze.com 2023-01-15 22:27 出处:网络
how do I get the first 10 entries on svn log for a file svn log myfile.php 开发者_Go百科thanksAs described in the manual:

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
0

精彩评论

暂无评论...
验证码 换一张
取 消