Browse Source

git-remote: do not complain on multiple URLs for a remote

Having more than one URL for a remote is perfectly normal when
the remote is defined to push to multiple places.  Get rid of
the annoying "Warning" message.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Junio C Hamano 17 years ago
parent
commit
95775e5377
  1. 6
      git-remote.perl

6
git-remote.perl

@ -7,10 +7,10 @@ my $git = Git->repository();
sub add_remote_config { sub add_remote_config {
my ($hash, $name, $what, $value) = @_; my ($hash, $name, $what, $value) = @_;
if ($what eq 'url') { if ($what eq 'url') {
if (exists $hash->{$name}{'URL'}) { # Having more than one is Ok -- it is used for push.
print STDERR "Warning: more than one remote.$name.url\n"; if (! exists $hash->{'URL'}) {
$hash->{$name}{'URL'} = $value;
} }
$hash->{$name}{'URL'} = $value;
} }
elsif ($what eq 'fetch') { elsif ($what eq 'fetch') {
$hash->{$name}{'FETCH'} ||= []; $hash->{$name}{'FETCH'} ||= [];

Loading…
Cancel
Save