From: Michael J Gruber Date: Sat, 6 Jun 2009 15:16:30 +0000 (+0200) Subject: builtin-remote: Make "remote show" display all urls X-Git-Tag: v1.6.3.3~19 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=956d27a872a70f40f98c3f710553ef619959e212;p=git.git builtin-remote: Make "remote show" display all urls 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 Signed-off-by: Junio C Hamano --- diff --git a/builtin-remote.c b/builtin-remote.c index fda9a54a0..d436412d9 100644 --- a/builtin-remote.c +++ b/builtin-remote.c @@ -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)