In order to view changes or diffs between commits, i use the following from the command line:
svn diff -r 3000:3025 > daychanges.diff
I want to modify the command so that it generates diffs between successive commits, concatenates them and outputs to file, something like
svn diff -r 3000:3001 > daychanges.diff
svn diff -r 3001:3002 >> daychanges.diff
svn diff -r 3002:3003 >> daychanges.diff
...
svn diff -r 3019:3020 >> daychanges.diff
how can i write such a script?