Created
July 3, 2014 12:44
-
-
Save kcmckell/40a1d61277e0b59c96b1 to your computer and use it in GitHub Desktop.
Output git log for each file to HTML
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
| for x in `git diff --name-only FROMCOMMIT TOCOMMIT | awk '{print $1}'`; do git log --word-diff --color -U2 FROMCOMMIT..TOCOMMIT $x|tmp/ansi2html.sh > change/$x.html; done |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ansi2html.shcan be found here: http://www.pixelbeat.org/scripts/ansi2html.sh