What I\'m exactly looking for is: using svn diff, how to print more lines above and below the new code which is being added?
svn diff
By default it will print some l
You can do this within svn diff itself, which works on Windows too. Say you want 20 lines of context, you can do this:
svn diff -x -U20
Taken from svn diff how to only show changed line