6 static const char ls_remote_usage[] =
7 "git ls-remote [--heads] [--tags] [-u <exec> | --upload-pack <exec>]\n"
8 " [-q|--quiet] [<repository> [<refs>...]]";
11 * Is there one among the list of patterns that match the tail part
14 static int tail_match(const char **pattern, const char *path)
17 char pathbuf[PATH_MAX];
20 return 1; /* no restriction */
22 if (snprintf(pathbuf, sizeof(pathbuf), "/%s", path) > sizeof(pathbuf))
23 return error("insanely long ref %.*s...", 20, path);
24 while ((p = *(pattern++)) != NULL) {
25 if (!fnmatch(p, pathbuf, 0))
31 int cmd_ls_remote(int argc, const char **argv, const char *prefix)
34 const char *dest = NULL;
38 const char *uploadpack = NULL;
39 const char **pattern = NULL;
41 struct remote *remote;
42 struct transport *transport;
43 const struct ref *ref;
45 for (i = 1; i < argc; i++) {
46 const char *arg = argv[i];
49 if (!prefixcmp(arg, "--upload-pack=")) {
50 uploadpack = arg + 14;
53 if (!prefixcmp(arg, "--exec=")) {
57 if (!strcmp("--tags", arg) || !strcmp("-t", arg)) {
61 if (!strcmp("--heads", arg) || !strcmp("-h", arg)) {
65 if (!strcmp("--refs", arg)) {
69 if (!strcmp("--quiet", arg) || !strcmp("-q", arg)) {
73 if (!strcmp("--get-url", arg)) {
77 usage(ls_remote_usage);
86 pattern = xcalloc(sizeof(const char *), argc - i + 1);
87 for (j = i; j < argc; j++) {
88 int len = strlen(argv[j]);
89 char *p = xmalloc(len + 3);
90 sprintf(p, "*/%s", argv[j]);
94 remote = remote_get(dest);
97 die("bad repository '%s'", dest);
98 die("No remote configured to list refs from.");
101 die("remote %s has no configured URL", dest);
104 printf("%s\n", *remote->url);
108 transport = transport_get(remote, NULL);
109 if (uploadpack != NULL)
110 transport_set_option(transport, TRANS_OPT_UPLOADPACK, uploadpack);
112 ref = transport_get_remote_refs(transport);
113 if (transport_disconnect(transport))
117 fprintf(stderr, "From %s\n", *remote->url);
118 for ( ; ref; ref = ref->next) {
119 if (!check_ref_type(ref, flags))
121 if (!tail_match(pattern, ref->name))
123 printf("%s %s\n", sha1_to_hex(ref->old_sha1), ref->name);