In a batch file parse the 'svn log -r <rev> -q -v <url>' command (looking for lines starting ' A' or ' M') using the FOR command, then do a 'svn export <full url> <dest>' for each file.
Regards, Neil.
I want to get changeset recursively but each time get all files/folders that are not required in SVN.
Here is the scenario for better understanding.
There are total 10 folders in an application. There are 3 folders(like X,Y,Z) present at different hierarchy in the same application and each folder contains 20 files. Names of few files are same in these 3 folders. The developer change 2 any files from 3 different folders. By applying the changeset, SVN shows that mentioned 6 files along with the path are changed. [i][Till here it is good for us].[/i]
When we try to get these 6 files with the same hierarchy, there is no such option to get [i]ONLY[/i] these 6 files rather during Export(in windows platform), the mentioned options like Fully recursive, only file children, etc does not work for us.
So, can anyone let us know how to get these 6 changed files in the same hierarchy?
Thanks!