SVN create patch from committed code?

diff, svn

Solution

If you know commit number, then use

svn diff -c N path

Where `N` is commit number and `path` is path to your working copy.

Problem

Is it possible to create a patch (diff files) for all files that were affected during a commit AFTER the commit? These files would have same version number and I need the diff of each file from their prior version.

Original source

Related problems