By the way, remember that svn diff commands work like other commands that follow the Unix modular philosophy, where each command has standard input and output. You can create your own script to list the files in which you want to include redirecting the output of this script to svn diff commands using pipes, and then redirecting the diff output to the desired file that you want to create. To be more clear: follow this example
svn diff `cat change_list.txt` > patch.diff
in change_list.txt - files that you want to include in diff, separated by a space. For example, the contents of a file may be as follows:
"domain / model / entity.java"
"web_app / controllers / controller.java"
So, following this approach, the only problem with your problem is to implement the script that Adam wrote above.
Hope this helps!
Vic.
Victor
source share