I'm currently using the following command:
git diff --no-prefix -w trunk > my_beautiful_code.patch
but get the following error when I upload the diff in reviewboard:
No valid separator after the filename was found in the diff header
Is there a way to wrangle git into doing the right thing? The reviewboard is looking for the exact svn format, I believe. I could clone the svn repo, apply the patch, then make the patch with svn but that is tedious and I'd like a cleaner workflow...
Thanks!