Does anybody now a quick way to ask svn the list of t开发者_如何学编程he top n most recent filenames added the last commits?
svn log {path} -v --limit {number}
More info: svn log
If you want only the added files you could grep them:
svn log {path} -v -l {number} | grep "^\s+A\s+"
Because the --limit parameter only limits the revisions you could use grep to count the added files for you:
svn log {path} -v | grep -m {max_count} "^\s+A\s+"
But be careful! This could take a long time, because all changes are logged to the console. So I think it's better to set a limit for svn log.
Another way is to add the --xml option and use a XSLT script to parse the added entries.
You might also be interested in this question about generating an RSS feed from SVN
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论