How to find the oldest modified files in SVN

I want to clear my code. I would like to do a full SVN search to find files that never changed (or changed a very long time ago) and listed everything in DESC order (the oldest was changed for the last time). Is there any way to do this?

Thank!

+3
source share
2 answers

A review of all files / folders reveals their most recent change, so simply use:

svn ls -Rv <URL_TO_REPO/PATH_TO_PROJECT>

You will get a list similar to this:

<REV>   <AUTHOR>  <SIZE>   <DATE>   <filename>

You can sort them by sorting the unix tool, easily convert them to a CSV file and import them to succeed or use the -xml switch and do even more complex processing.

. . .

+4

, . :

svn log URLReposRoot -v 

, XML, xml . XML .

svn log URLReposRoot -v  --xml >result.xml

script , , , ..

0

All Articles