From: Junio C Hamano Date: Thu, 5 Jun 2025 23:05:01 +0000 (-0700) Subject: Meta/cook: show author date in localtime X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=af94769838271970b98d66c3c4f919efa10f0a75;p=thirdparty%2Fgit.git Meta/cook: show author date in localtime --- diff --git a/cook b/cook 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} = []; }