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
| sub new_hl { | |
| my @l = (); | |
| return \@l; | |
| } | |
| @args = @ARGV; | |
| shift @args; | |
| print "<html><body><pre>\n"; | |
| open REVLIST, "git log " . join(' ',@args) . " --cc --parents --topo-order|" || die "Cannot get log"; | |
| while(<REVLIST>){ |