Remove usernames from all commit messages, not just when using svmprops
Signed-off-by: Sam Vilain <sam.vilain@catalyst.net.nz> Signed-off-by: Adam Roben <aroben@apple.com> Acked-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:

committed by
Junio C Hamano

parent
7d4f4a2f0d
commit
ce11873921
@ -1866,11 +1866,14 @@ sub make_log_entry {
|
|||||||
} elsif ($self->use_svnsync_props) {
|
} elsif ($self->use_svnsync_props) {
|
||||||
my $full_url = $self->svnsync->{url};
|
my $full_url = $self->svnsync->{url};
|
||||||
$full_url .= "/$self->{path}" if length $self->{path};
|
$full_url .= "/$self->{path}" if length $self->{path};
|
||||||
|
remove_username($full_url);
|
||||||
my $uuid = $self->svnsync->{uuid};
|
my $uuid = $self->svnsync->{uuid};
|
||||||
$log_entry{metadata} = "$full_url\@$rev $uuid";
|
$log_entry{metadata} = "$full_url\@$rev $uuid";
|
||||||
$email ||= "$author\@$uuid"
|
$email ||= "$author\@$uuid"
|
||||||
} else {
|
} else {
|
||||||
$log_entry{metadata} = $self->metadata_url. "\@$rev " .
|
my $url = $self->metadata_url;
|
||||||
|
remove_username($url);
|
||||||
|
$log_entry{metadata} = "$url\@$rev " .
|
||||||
$self->ra->get_uuid;
|
$self->ra->get_uuid;
|
||||||
$email ||= "$author\@" . $self->ra->get_uuid;
|
$email ||= "$author\@" . $self->ra->get_uuid;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user