Is there a url parameter that I can pass to gitweb (or anything else I can do) to tell it not to show me whitespace changes?
Background: I have a file generation process that creates hundreds of files, which are then programmatically checked on git. I recently made some minor changes to this process, which led to the removal of empty spaces from each file that it generates, and some changes without spaces were made for only a few files that it generates. I am trying to use gitweb to verify that my changes without spaces are in these files, but it is very difficult to do because of all the changes to the spaces that I have to sift through before I see any real changes. I know if I was running git diff from the command line, I could just pass the -w option to it, but I'm really just trying to use gitweb for this.
source
share