Add -v|--verbose to git remote to show remote url

Many other commands already have such an option, and I find it
practical to see where all the remotes actually come from.

Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Alex Riesen 2007-07-06 00:06:56 +02:00 committed by Junio C Hamano
parent 6cb93bf478
commit 09ff69bb39

View File

@ -319,9 +319,21 @@ sub add_usage {
exit(1);
}
local $VERBOSE = 0;
@ARGV = grep {
if ($_ eq '-v' or $_ eq '--verbose') {
$VERBOSE=1;
0
} else {
1
}
} @ARGV;
if (!@ARGV) {
for (sort keys %$remote) {
print "$_\n";
print "$_";
print "\t$remote->{$_}->{URL}" if $VERBOSE;
print "\n";
}
}
elsif ($ARGV[0] eq 'show') {