Skip to content

Commit

Permalink
builtin-remote: Make "remote show" display all urls
Browse files Browse the repository at this point in the history
Currently, "git remote -v" lists all urls whereas "git remote show
$remote" shows only the first. Make it so that both show all.

Signed-off-by: Michael J Gruber <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
Michael J Gruber authored and gitster committed Jun 8, 2009
1 parent 801a011 commit 956d27a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions builtin-remote.c
Original file line number Diff line number Diff line change
Expand Up @@ -1003,9 +1003,12 @@ static int show(int argc, const char **argv)

get_remote_ref_states(*argv, &states, query_flag);

printf("* remote %s\n URL: %s\n", *argv,
states.remote->url_nr > 0 ?
states.remote->url[0] : "(no URL)");
printf("* remote %s\n", *argv);
if (states.remote->url_nr) {
for (i=0; i < states.remote->url_nr; i++)
printf(" URL: %s\n", states.remote->url[i]);
} else
printf(" URL: %s\n", "(no URL)");
if (no_query)
printf(" HEAD branch: (not queried)\n");
else if (!states.heads.nr)
Expand Down

0 comments on commit 956d27a

Please sign in to comment.