Hi,
On 9/10/07, kbennett <[EMAIL PROTECTED]> wrote:
> For submission patches, will an svn diff work? Or is there another
> style/format required?
svn diff is perfect. I typically produce patch files like this:
$ cd my/project/directory
$ ... // edit source files
$ mvn clean package // rebuild/-test everything as a sanity check
$ svn status // check what files I've touched
$ svn add ... // if I've created any new files (shown as "?" by svn status)
$ svn diff > my-latest-changes.patch
BR,
Jukka Zitting