Allow ':/<oneline-prefix>' syntax to work with save_commit_buffer == 0
[gitweb.git] / builtin-ls-remote.c
index 003580c26a32d00c818c7f1e26b209645ff61ab4..56f3f880238e79a92ac35b4112e425a05c3fe916 100644 (file)
@@ -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);