What is the best way to generate SVN compatible diff when using git svn?

I am using git to track the wirehark project. I would like to send a patch, however the required format is the result of the following (see http://www.wireshark.org/develop.html ):

svn diff > my-new-protocol.patch 

Which format is different from git-diff .

What are my options?

+4
source share
1 answer

There is a script helper for this: https://gist.github.com/44537

+2
source

All Articles