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;
37 const char *uploadpack = NULL;
38 const char **pattern = NULL;
40 struct remote *remote;
41 struct transport *transport;
42 const struct ref *ref;
44 for (i = 1; i < argc; i++) {
45 const char *arg = argv[i];
48 if (!prefixcmp(arg, "--upload-pack=")) {
49 uploadpack = arg + 14;
52 if (!prefixcmp(arg, "--exec=")) {
56 if (!strcmp("--tags", arg) || !strcmp("-t", arg)) {
60 if (!strcmp("--heads", arg) || !strcmp("-h", arg)) {
64 if (!strcmp("--refs", arg)) {
68 if (!strcmp("--quiet", arg) || !strcmp("-q", arg)) {
72 usage(ls_remote_usage);
81 pattern = xcalloc(sizeof(const char *), argc - i + 1);
82 for (j = i; j < argc; j++) {
83 int len = strlen(argv[j]);
84 char *p = xmalloc(len + 3);
85 sprintf(p, "*/%s", argv[j]);
89 remote = remote_get(dest);
92 die("bad repository '%s'", dest);
93 die("No remote configured to list refs from.");
96 die("remote %s has no configured URL", dest);
97 transport = transport_get(remote, NULL);
98 if (uploadpack != NULL)
99 transport_set_option(transport, TRANS_OPT_UPLOADPACK, uploadpack);
101 ref = transport_get_remote_refs(transport);
102 if (transport_disconnect(transport))
106 fprintf(stderr, "From %s\n", *remote->url);
107 for ( ; ref; ref = ref->next) {
108 if (!check_ref_type(ref, flags))
110 if (!tail_match(pattern, ref->name))
112 printf("%s %s\n", sha1_to_hex(ref->old_sha1), ref->name);