diff --git a/log2changes.pl b/log2changes.pl new file mode 100755 index 0000000000..53e005790e --- /dev/null +++ b/log2changes.pl @@ -0,0 +1,59 @@ +#!/usr/bin/perl + +# git log --pretty=fuller --no-color --date=short + +my @mname = ('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', + 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec' ); + +sub nicedate { + my ($date)=$_; + + if($date =~ /(\d\d\d\d)-(\d\d)-(\d\d)/) { + return sprintf("%d %s %4d", $3, $mname[$2-1], $1); + } + return $date; +} + +my $line; +while() { + my $l = $_; + + if($l =~/^commit (.*)/) { + $co = $1; + } + elsif($l =~ /^Author: *(.*) +