I have a subversion repository, and it has 8 revisions in it with many, many changes between 7 and 8. How can I create patch files, per file, for the changes between 7 and 8?
I.E., not one massive patch file, but if x.php changed and y.php changed, I’d want a patch file for x.php and y.php
Is this possible? How can I do it?
you will need some kind of scripting to either get the list of filenames and request a patch for each one, or request a “massive” patch and split it at the
---lines…