Created
January 26, 2015 11:43
-
-
Save hell0again/72a1ae6918f3261c9bf1 to your computer and use it in GitHub Desktop.
minify差分のdiffをみる
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
git diff > df | |
grep '^-' df | sed -e 's/\s/\n/g' > g.diff.a | |
grep '^+' df | sed -e 's/\s/\n/g' > g.diff.b | |
git diff --color --no-index -- g.diff.{a,b} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment