diff options
author | Michael J Gruber <git@drmicha.warpmail.net> | 2009-06-06 17:16:30 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-06-08 15:01:12 -0700 |
commit | 956d27a872a70f40f98c3f710553ef619959e212 (patch) | |
tree | 46b1a16bd1adbb0ea29af1fc03a3bb37ec84d26d /builtin-remote.c | |
parent | 801a011dcf41f0415dee81f0500673e058bdee30 (diff) | |
download | git-956d27a872a70f40f98c3f710553ef619959e212.tar.gz |
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 <git@drmicha.warpmail.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-remote.c')
-rw-r--r-- | builtin-remote.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/builtin-remote.c b/builtin-remote.c index fda9a54a0c..d436412d9b 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) |