I want to combine multiple 'diff' svn files, into one big one, all of which are non-sequential.
I believe i need to convert the svn diff files to a new format where some other tool can combine them. I do not want to use merge i just want a unified diff of multiple non-sequential commits.
svn diff -c 1002 > diff2.txt
svn diff -c 1001 > diff1.txt
The above code produces 2 good 'svn diff files'. How would I combine them? I see that svn diff has a '--git' optinon so i am generating a diff file that is compatible with git. How would i take multiple .gittdiff files and combine them to get a unified git file.
http://svnbook.red-bean.com/en/1.8/svn.ref.svn.html#svn.ref.svn.sw.git
Note: I am on windows, so i need a windows solution.