summaryrefslogtreecommitdiff
path: root/builtin-ls-remote.c
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2007-11-07 01:29:20 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-11-07 06:51:04 (GMT)
commit7c2c6ee7e0259d591acb3d9841cf5417e6b7a8eb (patch)
tree03e4af1355fc8aae4472d8f972e814aabf704e6b /builtin-ls-remote.c
parent8951d7c1f1ae38f34617b6c2490bf65e73e371f7 (diff)
downloadgit-7c2c6ee7e0259d591acb3d9841cf5417e6b7a8eb.zip
git-7c2c6ee7e0259d591acb3d9841cf5417e6b7a8eb.tar.gz
git-7c2c6ee7e0259d591acb3d9841cf5417e6b7a8eb.tar.bz2
Reteach builtin-ls-remote to understand remotes
Prior to being made a builtin git-ls-remote understood that when it was given a remote name we wanted it to resolve that to the pre-configured URL and connect to that location. That changed when it was converted to a builtin and many of my automation tools broke. Signed-off-by: Shawn O. Pearce <spearce@spearce.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-ls-remote.c')
-rw-r--r--builtin-ls-remote.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/builtin-ls-remote.c b/builtin-ls-remote.c
index 003580c..56f3f88 100644
--- a/builtin-ls-remote.c
+++ b/builtin-ls-remote.c
@@ -14,6 +14,7 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix)
unsigned flags = 0;
const char *uploadpack = NULL;
+ struct remote *remote;
struct transport *transport;
const struct ref *ref;
@@ -52,7 +53,10 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix)
if (!dest || i != argc - 1)
usage(ls_remote_usage);
- transport = transport_get(NULL, dest);
+ remote = nongit ? NULL : remote_get(dest);
+ if (remote && !remote->url_nr)
+ die("remote %s has no configured URL", dest);
+ transport = transport_get(remote, remote ? remote->url[0] : dest);
if (uploadpack != NULL)
transport_set_option(transport, TRANS_OPT_UPLOADPACK, uploadpack);