Is there a url parameter I can pass into gitweb (or anything else I can do) to tell it not to show me whitespace changes?
Backstory: I have a file-generating process that creates hundreds of files that it then programatically checks into git. Recently I made some minor changes to this process, which resulted in a bunch of whitespace being removed from every file that it generates, and some non-whitespace changes being made to just a few files that it generates. I am trying to use gitweb to verify that my non-whitespace changes are in these files, but it's really hard to do because of all the whitespace changes I have to sift through before I see any of the real changes. I know if I were doing a git diff from the command line I could just pass it the -w parameter, but I am really just trying to use gitweb for this.