Last active
August 29, 2015 14:12
-
-
Save rsrchboy/032318c8fed70fd9a622 to your computer and use it in GitHub Desktop.
text-diff your 02packages.txt.gz via gut automagically
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# make git recognize *.txt.gz files as compressed text, such that git knows to | |
# use the "gz" diff driver on them | |
*.txt.gz diff=gz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[diff "gz"] | |
# behold, the power of zcat! | |
textconv = zcat | |
# and the lovely laziness! | |
cachetextconv = true | |
binary = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment