From 5908b0ae469e5d20d6b05eb3aabf2ea7b3d65311 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 8 Sep 2021 22:11:15 -0400 Subject: Handle dirty lines in git-comment --- bin/git-comment.pl | 1 + 1 file changed, 1 insertion(+) (limited to 'bin') diff --git a/bin/git-comment.pl b/bin/git-comment.pl index d4058804..01f7171d 100644 --- a/bin/git-comment.pl +++ b/bin/git-comment.pl @@ -61,6 +61,7 @@ while (<$pipe>) { chomp; if (/^([[:xdigit:]]+) \d+ (\d+) (\d+)/) { ($commit, $nr, $group, $printed) = ($1, $2, $3, 0); + $abbrev{$commit} = 'dirty' if $commit =~ /^0+$/; next if $abbrev{$commit}; my @body = $repo->command( 'show', '--no-patch', '--pretty=format:%h%n%b', $commit -- cgit 1.4.1