show/hide this revision's text 2 added 326 characters in body

There is afaik now direct way to get just the changed files and not all.

My idea would be: use the verbose output of the list (which shows the last changed version), filter it through awk, and checkout the rest. E.g. to search the files which changed in version 42 I would use this

VERSION=42
svn list -v -R -r $VERSION svn://... |  awk "/^[ ]*$VERSION/ {print \$7}" > files_to_checkout

And later do a svn update -r $VERSION 'cat files_to_checkout'(or a co on the url, depending on where you will run the command).

EDIT: Additional even shorter: use the svn diff command, and replace with -x and --diff-cmd the diff command with svn co. This requires some argument shifting hacking (which I wont elaborate here), but needs just one line and no intermedate file (which you could save above too, but that would have cost readability)

show/hide this revision's text 1

There is afaik now direct way to get just the changed files and not all.

My idea would be: use the verbose output of the list (which shows the last changed version), filter it through awk, and checkout the rest. E.g. to search the files which changed in version 42 I would use this

VERSION=42
svn list -v -R -r $VERSION svn://... |  awk "/^[ ]*$VERSION/ {print \$7}" > files_to_checkout

And later do a svn update -r $VERSION 'cat files_to_checkout'(or a co on the url, depending on where you will run the command).