git diff --color-words --no-index orig.txt /tmp/edited.txt

I enjoy using git diff --color-words to clearly see the words that have changed in a file.

However I want to share that diff with someone without git or a colour terminal for that matter. So does anyone know of a tool or trick that can convert colour escaped terminal output into HTML?

link|improve this question

is there any chance you could re-upload this image to the stackexchange imgur? In case you delete this from flickr someday? – oers Feb 6 at 7:36
feedback

4 Answers

up vote 23 down vote accepted
wget http://www.pixelbeat.org/scripts/ansi2html.sh -O /tmp/ansi2html.sh
chmod +x /tmp/ansi2html.sh
git diff --color-words --no-index orig.txt edited.txt | /tmp/ansi2html.sh > 2beshared.html

What I really needed what a ANSI to HTML convertor. And I found a very decent one on http://www.pixelbeat.org/.

link|improve this answer
4  
Glad you like it :) You can see some example usage here: pixelbeat.org/docs/terminal_colours – pixelbeat Jan 9 '10 at 0:45
Two other duplicate questions, answered by "use the HTML::FromANSI Perl module on CPAN": stackoverflow.com/questions/1425738/… , stackoverflow.com/questions/245121/… – Adam Monsen Aug 26 '10 at 7:15
1  
I have been looking, for days, for something like this to generate automatic LaTex diffs. This is my best find of the week. Thanks! – Winterstream Feb 25 '11 at 10:12
feedback

download diff2html, extract it and convert diff to html with this command:

$ diff2html file1.txt file2.txt > diff-demo1.htm

There is more ... take a look at this question.

[EDIT] ... FINALLY ... I find the way :D

after gitting:

git diff --color-words --no-index orig.txt /tmp/edited.txt > myfile

download both ansifilter from this location. and use this command to convert myfile to html format

ansifilter -i myfile -H -o myfile2.html

so ... this is exactly what you want ;)

link|improve this answer
flickr.com/photos/hendry/4250699527 I am not accepting diff2html because it looks AWFUL. – hendry Jan 6 '10 at 16:09
what about this --> kafka.fr.free.fr/diff2html/diff-demo2.html – Michel Kogan Jan 6 '10 at 16:14
That looks awful too. I want it to look like my terminal screenshot above. – hendry Jan 6 '10 at 17:57
check my answer again. – Michel Kogan Jan 6 '10 at 18:58
I still don't like it. I am convince I need to write some sort of ANSI escape to HTML convertor. – hendry Jan 8 '10 at 21:05
show 1 more comment
feedback

Don't know any tool to do exactly what you want. But here's a piece of code I often use to output html formatted colored diff: simplediff

It's available in PHP and Python. The output tags the differences using <del> and <ins> tags so you can easily color them using CSS.

link|improve this answer
feedback

I have created a perl script to generate html table for the git diff. To use this script first you have to collect the diff by using git diff sha1s... > diff.file, then run diff2html.pl diff.file. Visit:

http://kernel-demystified.com/forum/index.php/topic,23.msg28.html#new

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.