mirror of
https://github.com/git/git.git
synced 2024-11-20 16:14:02 +01:00
gitweb: Handle commits with empty commit messages more reasonably
Currently those look very weird, you can't get easily at the commit view etc. This patch makes their title '(no commit message)'. Signed-off-by: Petr Baudis <pasky@suse.cz> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
689b7f5ccb
commit
7e0fe5c939
@ -1071,6 +1071,9 @@ sub parse_commit {
|
||||
last;
|
||||
}
|
||||
}
|
||||
if ($co{'title'} eq "") {
|
||||
$co{'title'} = $co{'title_short'} = '(no commit message)';
|
||||
}
|
||||
# remove added spaces
|
||||
foreach my $line (@commit_lines) {
|
||||
$line =~ s/^ //;
|
||||
|
Loading…
Reference in New Issue
Block a user