CodeBuddy
CodeBuddy

Reputation: 6639

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

I'm using git to track the wireshark project. I'd like to submit a patch, however the format required is the output of the following (see http://www.wireshark.org/develop.html):

svn diff > my-new-protocol.patch

Which is a different format what git-diff produces.

What are my options?

Upvotes: 4

Views: 689

Answers (1)

manojlds
manojlds

Reputation: 301087

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

Upvotes: 2

Related Questions