How to get a list of all files in a subversion workspace sorted by last modified date / rev?

I would like to get a complete list of files in the workspace (approximately the same as the output of "find."), Ordered by date (or revision number of the same) of the last commit of this file. The goal is to determine which files are most and least actively modified. Svn information provides an appropriate date but does not work recursively. I have access to the svn command line client, the standard * nix and php command line utilities, although I would prefer a single liner to be a long script.

+3
source share
1 answer

Sort of

$ svn list -v -R | sort | sort -n

must work.

+2
source

Source: https://habr.com/ru/post/1731457/


All Articles