https://bugzilla.wikimedia.org/show_bug.cgi?id=16161
Ashar Voultoiz <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #7 from Ashar Voultoiz <[email protected]> 2010-11-22 19:50:15 UTC --- Just use '-x -wu' to ignore whitespace when svn diffing. I use the following script to review code: $ cat ~/bin/mw_review #!/bin/bash if [ $# -ne 1 ] then echo "Usage: $0 <revision number>" exit 1 fi pushd . svn diff -c $1 -x -wu | less -R popd Usage: mw_review 75333 -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
