@leroysheep / BookAlchemy / commits / af94769838

Meta/cook: show author date in localtime

Junio C Hamano committed Jun 5, 2025 at 16:05 UTC af94769838271970b98d66c3c4f919efa10f0a75
1 file changed +2 -2
cook
+2 -2
index 77068c1273..f717dbba07 100755 --- a/cook +++ b/cook @@ -205,7 +205,7 @@ sub get_commit { my $fh; open($fh, '-|', qw(git for-each-ref), - "--format=%(refname:short) %(committerdate:iso8601)", + "--format=%(refname:short) %(authordate:format-local:%Y-%m-%d)", "refs/heads/??/*") or die "$!: open for-each-ref"; my @topic; @@ -840,7 +840,7 @@ sub wildo_queue { for ($in_section) { return if (/^Graduated to/ || /^Discarded$/); } - my $action = $topic->[6] || "Under discussion."; + my $action = $topic->[6] || "Unclassified."; if (!exists $what->{$action}) { $what->{$action} = []; }