1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 23:28:02 +00:00

Add Exclude Whitespace From GitHub Diffs as an internet til

This commit is contained in:
jbranchaud
2016-10-21 08:57:52 -05:00
parent 2c7398b81c
commit b445df5dbf
2 changed files with 22 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ variety of languages and technologies. These are things that don't really
warrant a full blog post. These are mostly things I learn by pairing with warrant a full blog post. These are mostly things I learn by pairing with
smart people at [Hashrocket](http://hashrocket.com/). smart people at [Hashrocket](http://hashrocket.com/).
_483 TILs and counting..._ _484 TILs and counting..._
--- ---
@@ -161,6 +161,7 @@ _483 TILs and counting..._
### Internet ### Internet
- [Add Emoji To GitHub Repository Description](internet/add-emoji-to-github-repository-description.md) - [Add Emoji To GitHub Repository Description](internet/add-emoji-to-github-repository-description.md)
- [Exclude Whitespace From GitHub Diffs](internet/exclude-whitespace-from-github-diffs.md)
### JavaScript ### JavaScript

View File

@@ -0,0 +1,20 @@
# Exclude Whitespace From GitHub Diffs
If you run a tidy ship and use plugins like
[vim-spacejam](https://github.com/rondale-sc/vim-spacejam), then whitespace
changes cluttering up your git diffs probably isn't much of an issue.
However, if you are working with other people or messier code bases, then
you may not be so lucky. If there are a bunch of whitespace changes in a
commit, then that is going to make the diff view of a commit on GitHub
annoying, and perhaps hard, to read.
You can cut to the chase by excluding whitespace changes from GitHub's diff
view by adding `w=1` to the diff URL.
Check out [this view of the
diff](https://github.com/jbranchaud/dotfiles/commit/fad58dfda91e61972b3c28e7e967bb631140e71e)
and then [this view of the diff that excludes
whitespace](https://github.com/jbranchaud/dotfiles/commit/fad58dfda91e61972b3c28e7e967bb631140e71e?w=1).
[source](https://twitter.com/ablwr/status/789141645098938368)