At the command line, you can do this as follows.
All files in a folder
Create a patch in your home folder containing all the changes between versions 123 and 124 of all the changed files in the my_project folder:
svn diff -r123:124 path/to/my_project > ~/my_project_changes_123_124.patch
One specific file
Create a patch in your home folder containing all the changes between versions 123 and 124 from only one file, the name is "my_project.php":
svn diff -r123:124 path/to/my_project/my_project.php > ~/my_project_changes_123_124.patch
batigolix Aug 13 '14 at 9:49 a.m. 2014-08-13 09:49
source share