How can I export changed files in SVN that have changed between two revisions. I need a solution either via command line or by using any scripts (with proper folder structure). In addition, I need windows based solution.
e.g. sth like:
export {svn diff --summarize -r 50:HEAD}
I want a directory tree with a copy of the files that where changed in any revision from 50 on
As far as I know, svn does not provide such a feature. But you may write a simple c# program using SharpSVN to do it. Here is a sample that you can use. In this sample, I am getting the whole changed file from revision 100 to 200.