diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-05-15 18:03:44 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-05-15 18:03:44 -0400 |
commit | 0bf52484278b5afbc910a57d4842ed69f7c88222 (patch) | |
tree | dcdd6a16b8e61fae26eb3d1f750dc9316a728a97 /IkiWiki/Rcs | |
parent | 8a888a8fedd63622154865f0b67b3558879ae613 (diff) |
git: Skip over signed-off-by and similar lines in commit messages when generating recentchanges.
Diffstat (limited to 'IkiWiki/Rcs')
-rw-r--r-- | IkiWiki/Rcs/git.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/IkiWiki/Rcs/git.pm b/IkiWiki/Rcs/git.pm index 5668936dd..036900887 100644 --- a/IkiWiki/Rcs/git.pm +++ b/IkiWiki/Rcs/git.pm @@ -383,7 +383,10 @@ sub rcs_recentchanges ($) { #{{{ diffurl => $diffurl, }; } - push @messages, { line => $_ } foreach @{$ci->{'comment'}}; + + push @messages, { line => $_ } foreach grep { + ! m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i + } @{$ci->{'comment'}}; my ($user, $type) = (q{}, "web"); |