You can find whitespace with the help of Git with the following command: git diff-index –check –cached. You can have […]

Sometimes you want to remove trailing whitespace from a whole file if you notice some. Doing that by hand gets […]

Sometimes you want to review someones code but it’s riddled with whitespace changes that make it difficult to see what […]

Remove whitespace from metadata like comments: git stripspace For stripping unnecessary whitespace in code use: git apply –whitespace=fix You can […]