5 static struct refspec s_tag_refspec = {
13 const struct refspec *tag_refspec = &s_tag_refspec;
15 struct counted_string {
22 struct counted_string *instead_of;
27 static struct remote **remotes;
28 static int remotes_alloc;
29 static int remotes_nr;
31 static struct branch **branches;
32 static int branches_alloc;
33 static int branches_nr;
35 static struct branch *current_branch;
36 static const char *default_remote_name;
38 static struct rewrite **rewrite;
39 static int rewrite_alloc;
40 static int rewrite_nr;
42 #define BUF_SIZE (2048)
43 static char buffer[BUF_SIZE];
45 static const char *alias_url(const char *url)
49 struct counted_string *longest;
54 for (i = 0; i < rewrite_nr; i++) {
57 for (j = 0; j < rewrite[i]->instead_of_nr; j++) {
58 if (!prefixcmp(url, rewrite[i]->instead_of[j].s) &&
60 longest->len < rewrite[i]->instead_of[j].len)) {
61 longest = &(rewrite[i]->instead_of[j]);
69 ret = malloc(rewrite[longest_i]->baselen +
70 (strlen(url) - longest->len) + 1);
71 strcpy(ret, rewrite[longest_i]->base);
72 strcpy(ret + rewrite[longest_i]->baselen, url + longest->len);
76 static void add_push_refspec(struct remote *remote, const char *ref)
78 ALLOC_GROW(remote->push_refspec,
79 remote->push_refspec_nr + 1,
80 remote->push_refspec_alloc);
81 remote->push_refspec[remote->push_refspec_nr++] = ref;
84 static void add_fetch_refspec(struct remote *remote, const char *ref)
86 ALLOC_GROW(remote->fetch_refspec,
87 remote->fetch_refspec_nr + 1,
88 remote->fetch_refspec_alloc);
89 remote->fetch_refspec[remote->fetch_refspec_nr++] = ref;
92 static void add_url(struct remote *remote, const char *url)
94 ALLOC_GROW(remote->url, remote->url_nr + 1, remote->url_alloc);
95 remote->url[remote->url_nr++] = url;
98 static void add_url_alias(struct remote *remote, const char *url)
100 add_url(remote, alias_url(url));
103 static struct remote *make_remote(const char *name, int len)
108 for (i = 0; i < remotes_nr; i++) {
109 if (len ? (!strncmp(name, remotes[i]->name, len) &&
110 !remotes[i]->name[len]) :
111 !strcmp(name, remotes[i]->name))
115 ret = xcalloc(1, sizeof(struct remote));
116 ALLOC_GROW(remotes, remotes_nr + 1, remotes_alloc);
117 remotes[remotes_nr++] = ret;
119 ret->name = xstrndup(name, len);
121 ret->name = xstrdup(name);
125 static void add_merge(struct branch *branch, const char *name)
127 ALLOC_GROW(branch->merge_name, branch->merge_nr + 1,
128 branch->merge_alloc);
129 branch->merge_name[branch->merge_nr++] = name;
132 static struct branch *make_branch(const char *name, int len)
138 for (i = 0; i < branches_nr; i++) {
139 if (len ? (!strncmp(name, branches[i]->name, len) &&
140 !branches[i]->name[len]) :
141 !strcmp(name, branches[i]->name))
145 ALLOC_GROW(branches, branches_nr + 1, branches_alloc);
146 ret = xcalloc(1, sizeof(struct branch));
147 branches[branches_nr++] = ret;
149 ret->name = xstrndup(name, len);
151 ret->name = xstrdup(name);
152 refname = malloc(strlen(name) + strlen("refs/heads/") + 1);
153 strcpy(refname, "refs/heads/");
154 strcpy(refname + strlen("refs/heads/"), ret->name);
155 ret->refname = refname;
160 static struct rewrite *make_rewrite(const char *base, int len)
165 for (i = 0; i < rewrite_nr; i++) {
167 ? (len == rewrite[i]->baselen &&
168 !strncmp(base, rewrite[i]->base, len))
169 : !strcmp(base, rewrite[i]->base))
173 ALLOC_GROW(rewrite, rewrite_nr + 1, rewrite_alloc);
174 ret = xcalloc(1, sizeof(struct rewrite));
175 rewrite[rewrite_nr++] = ret;
177 ret->base = xstrndup(base, len);
181 ret->base = xstrdup(base);
182 ret->baselen = strlen(base);
187 static void add_instead_of(struct rewrite *rewrite, const char *instead_of)
189 ALLOC_GROW(rewrite->instead_of, rewrite->instead_of_nr + 1, rewrite->instead_of_alloc);
190 rewrite->instead_of[rewrite->instead_of_nr].s = instead_of;
191 rewrite->instead_of[rewrite->instead_of_nr].len = strlen(instead_of);
192 rewrite->instead_of_nr++;
195 static void read_remotes_file(struct remote *remote)
197 FILE *f = fopen(git_path("remotes/%s", remote->name), "r");
201 while (fgets(buffer, BUF_SIZE, f)) {
205 if (!prefixcmp(buffer, "URL:")) {
208 } else if (!prefixcmp(buffer, "Push:")) {
211 } else if (!prefixcmp(buffer, "Pull:")) {
223 while (isspace(p[-1]))
226 switch (value_list) {
228 add_url_alias(remote, xstrdup(s));
231 add_push_refspec(remote, xstrdup(s));
234 add_fetch_refspec(remote, xstrdup(s));
241 static void read_branches_file(struct remote *remote)
243 const char *slash = strchr(remote->name, '/');
245 struct strbuf branch;
246 int n = slash ? slash - remote->name : 1000;
247 FILE *f = fopen(git_path("branches/%.*s", n, remote->name), "r");
253 s = fgets(buffer, BUF_SIZE, f);
262 while (isspace(p[-1]))
266 len += strlen(slash);
267 p = xmalloc(len + 1);
273 * With "slash", e.g. "git fetch jgarzik/netdev-2.6" when
274 * reading from $GIT_DIR/branches/jgarzik fetches "HEAD" from
275 * the partial URL obtained from the branches file plus
276 * "/netdev-2.6" and does not store it in any tracking ref.
277 * #branch specifier in the file is ignored.
279 * Otherwise, the branches file would have URL and optionally
280 * #branch specified. The "master" (or specified) branch is
281 * fetched and stored in the local branch of the same name.
283 strbuf_init(&branch, 0);
284 frag = strchr(p, '#');
287 strbuf_addf(&branch, "refs/heads/%s", frag);
289 strbuf_addstr(&branch, "refs/heads/master");
291 strbuf_addf(&branch, ":refs/heads/%s", remote->name);
293 strbuf_reset(&branch);
294 strbuf_addstr(&branch, "HEAD:");
296 add_url_alias(remote, p);
297 add_fetch_refspec(remote, strbuf_detach(&branch, 0));
298 remote->fetch_tags = 1; /* always auto-follow */
301 static int handle_config(const char *key, const char *value, void *cb)
305 struct remote *remote;
306 struct branch *branch;
307 if (!prefixcmp(key, "branch.")) {
309 subkey = strrchr(name, '.');
312 branch = make_branch(name, subkey - name);
313 if (!strcmp(subkey, ".remote")) {
315 return config_error_nonbool(key);
316 branch->remote_name = xstrdup(value);
317 if (branch == current_branch)
318 default_remote_name = branch->remote_name;
319 } else if (!strcmp(subkey, ".merge")) {
321 return config_error_nonbool(key);
322 add_merge(branch, xstrdup(value));
326 if (!prefixcmp(key, "url.")) {
327 struct rewrite *rewrite;
329 subkey = strrchr(name, '.');
332 rewrite = make_rewrite(name, subkey - name);
333 if (!strcmp(subkey, ".insteadof")) {
335 return config_error_nonbool(key);
336 add_instead_of(rewrite, xstrdup(value));
339 if (prefixcmp(key, "remote."))
342 subkey = strrchr(name, '.');
344 return error("Config with no key for remote %s", name);
345 if (*subkey == '/') {
346 warning("Config remote shorthand cannot begin with '/': %s", name);
349 remote = make_remote(name, subkey - name);
350 if (!strcmp(subkey, ".mirror"))
351 remote->mirror = git_config_bool(key, value);
352 else if (!strcmp(subkey, ".skipdefaultupdate"))
353 remote->skip_default_update = git_config_bool(key, value);
355 else if (!strcmp(subkey, ".url")) {
357 if (git_config_string(&v, key, value))
360 } else if (!strcmp(subkey, ".push")) {
362 if (git_config_string(&v, key, value))
364 add_push_refspec(remote, v);
365 } else if (!strcmp(subkey, ".fetch")) {
367 if (git_config_string(&v, key, value))
369 add_fetch_refspec(remote, v);
370 } else if (!strcmp(subkey, ".receivepack")) {
372 if (git_config_string(&v, key, value))
374 if (!remote->receivepack)
375 remote->receivepack = v;
377 error("more than one receivepack given, using the first");
378 } else if (!strcmp(subkey, ".uploadpack")) {
380 if (git_config_string(&v, key, value))
382 if (!remote->uploadpack)
383 remote->uploadpack = v;
385 error("more than one uploadpack given, using the first");
386 } else if (!strcmp(subkey, ".tagopt")) {
387 if (!strcmp(value, "--no-tags"))
388 remote->fetch_tags = -1;
389 } else if (!strcmp(subkey, ".proxy")) {
390 return git_config_string((const char **)&remote->http_proxy,
396 static void alias_all_urls(void)
399 for (i = 0; i < remotes_nr; i++) {
402 for (j = 0; j < remotes[i]->url_nr; j++) {
403 remotes[i]->url[j] = alias_url(remotes[i]->url[j]);
408 static void read_config(void)
410 unsigned char sha1[20];
411 const char *head_ref;
413 if (default_remote_name) // did this already
415 default_remote_name = xstrdup("origin");
416 current_branch = NULL;
417 head_ref = resolve_ref("HEAD", sha1, 0, &flag);
418 if (head_ref && (flag & REF_ISSYMREF) &&
419 !prefixcmp(head_ref, "refs/heads/")) {
421 make_branch(head_ref + strlen("refs/heads/"), 0);
423 git_config(handle_config, NULL);
427 static struct refspec *parse_refspec_internal(int nr_refspec, const char **refspec, int fetch, int verify)
431 struct refspec *rs = xcalloc(sizeof(*rs), nr_refspec);
433 for (i = 0; i < nr_refspec; i++) {
436 const char *lhs, *rhs;
438 llen = rlen = is_glob = 0;
446 rhs = strrchr(lhs, ':');
449 * Before going on, special case ":" (or "+:") as a refspec
452 if (!fetch && rhs == lhs && rhs[1] == '\0') {
460 is_glob = (2 <= rlen && !strcmp(rhs + rlen - 2, "/*"));
463 rs[i].dst = xstrndup(rhs, rlen);
466 llen = (rhs ? (rhs - lhs - 1) : strlen(lhs));
467 if (2 <= llen && !memcmp(lhs + llen - 2, "/*", 2)) {
468 if ((rhs && !is_glob) || (!rhs && fetch))
472 } else if (rhs && is_glob) {
476 rs[i].pattern = is_glob;
477 rs[i].src = xstrndup(lhs, llen);
482 * - empty is allowed; it means HEAD.
483 * - otherwise it must be a valid looking ref.
488 st = check_ref_format(rs[i].src);
489 if (st && st != CHECK_REF_FORMAT_ONELEVEL)
494 * - missing is ok, and is same as empty.
495 * - empty is ok; it means not to store.
496 * - otherwise it must be a valid looking ref.
500 } else if (!*rs[i].dst) {
503 st = check_ref_format(rs[i].dst);
504 if (st && st != CHECK_REF_FORMAT_ONELEVEL)
510 * - empty is allowed; it means delete.
511 * - when wildcarded, it must be a valid looking ref.
512 * - otherwise, it must be an extended SHA-1, but
513 * there is no existing way to validate this.
518 st = check_ref_format(rs[i].src);
519 if (st && st != CHECK_REF_FORMAT_ONELEVEL)
523 ; /* anything goes, for now */
526 * - missing is allowed, but LHS then must be a
528 * - empty is not allowed.
529 * - otherwise it must be a valid looking ref.
532 st = check_ref_format(rs[i].src);
533 if (st && st != CHECK_REF_FORMAT_ONELEVEL)
535 } else if (!*rs[i].dst) {
538 st = check_ref_format(rs[i].dst);
539 if (st && st != CHECK_REF_FORMAT_ONELEVEL)
551 die("Invalid refspec '%s'", refspec[i]);
554 int valid_fetch_refspec(const char *fetch_refspec_str)
556 const char *fetch_refspec[] = { fetch_refspec_str };
557 struct refspec *refspec;
559 refspec = parse_refspec_internal(1, fetch_refspec, 1, 1);
565 struct refspec *parse_fetch_refspec(int nr_refspec, const char **refspec)
567 return parse_refspec_internal(nr_refspec, refspec, 1, 0);
570 struct refspec *parse_push_refspec(int nr_refspec, const char **refspec)
572 return parse_refspec_internal(nr_refspec, refspec, 0, 0);
575 static int valid_remote_nick(const char *name)
577 if (!name[0] || /* not empty */
578 (name[0] == '.' && /* not "." */
579 (!name[1] || /* not ".." */
580 (name[1] == '.' && !name[2]))))
582 return !strchr(name, '/'); /* no slash */
585 struct remote *remote_get(const char *name)
591 name = default_remote_name;
592 ret = make_remote(name, 0);
593 if (valid_remote_nick(name)) {
595 read_remotes_file(ret);
597 read_branches_file(ret);
600 add_url_alias(ret, name);
603 ret->fetch = parse_fetch_refspec(ret->fetch_refspec_nr, ret->fetch_refspec);
604 ret->push = parse_push_refspec(ret->push_refspec_nr, ret->push_refspec);
608 int for_each_remote(each_remote_fn fn, void *priv)
612 for (i = 0; i < remotes_nr && !result; i++) {
613 struct remote *r = remotes[i];
617 r->fetch = parse_fetch_refspec(r->fetch_refspec_nr,
620 r->push = parse_push_refspec(r->push_refspec_nr,
622 result = fn(r, priv);
627 void ref_remove_duplicates(struct ref *ref_map)
631 for (; ref_map; ref_map = ref_map->next) {
632 if (!ref_map->peer_ref)
634 posn = &ref_map->next;
636 if ((*posn)->peer_ref &&
637 !strcmp((*posn)->peer_ref->name,
638 ref_map->peer_ref->name)) {
639 if (strcmp((*posn)->name, ref_map->name))
640 die("%s tracks both %s and %s",
641 ref_map->peer_ref->name,
642 (*posn)->name, ref_map->name);
643 next = (*posn)->next;
644 free((*posn)->peer_ref);
648 posn = &(*posn)->next;
654 int remote_has_url(struct remote *remote, const char *url)
657 for (i = 0; i < remote->url_nr; i++) {
658 if (!strcmp(remote->url[i], url))
664 int remote_find_tracking(struct remote *remote, struct refspec *refspec)
666 int find_src = refspec->src == NULL;
667 char *needle, **result;
672 return error("find_tracking: need either src or dst");
673 needle = refspec->dst;
674 result = &refspec->src;
676 needle = refspec->src;
677 result = &refspec->dst;
680 for (i = 0; i < remote->fetch_refspec_nr; i++) {
681 struct refspec *fetch = &remote->fetch[i];
682 const char *key = find_src ? fetch->dst : fetch->src;
683 const char *value = find_src ? fetch->src : fetch->dst;
686 if (fetch->pattern) {
687 if (!prefixcmp(needle, key) &&
688 needle[strlen(key)] == '/') {
689 *result = xmalloc(strlen(value) +
692 strcpy(*result, value);
693 strcpy(*result + strlen(value),
694 needle + strlen(key));
695 refspec->force = fetch->force;
698 } else if (!strcmp(needle, key)) {
699 *result = xstrdup(value);
700 refspec->force = fetch->force;
707 struct ref *alloc_ref(unsigned namelen)
709 struct ref *ret = xmalloc(sizeof(struct ref) + namelen);
710 memset(ret, 0, sizeof(struct ref) + namelen);
714 struct ref *alloc_ref_from_str(const char* str)
716 struct ref *ret = alloc_ref(strlen(str) + 1);
717 strcpy(ret->name, str);
721 static struct ref *copy_ref(const struct ref *ref)
723 struct ref *ret = xmalloc(sizeof(struct ref) + strlen(ref->name) + 1);
724 memcpy(ret, ref, sizeof(struct ref) + strlen(ref->name) + 1);
729 struct ref *copy_ref_list(const struct ref *ref)
731 struct ref *ret = NULL;
732 struct ref **tail = &ret;
734 *tail = copy_ref(ref);
736 tail = &((*tail)->next);
741 void free_ref(struct ref *ref)
745 free(ref->remote_status);
750 void free_refs(struct ref *ref)
761 static int count_refspec_match(const char *pattern,
763 struct ref **matched_ref)
765 int patlen = strlen(pattern);
766 struct ref *matched_weak = NULL;
767 struct ref *matched = NULL;
771 for (weak_match = match = 0; refs; refs = refs->next) {
772 char *name = refs->name;
773 int namelen = strlen(name);
775 if (!refname_match(pattern, name, ref_rev_parse_rules))
778 /* A match is "weak" if it is with refs outside
779 * heads or tags, and did not specify the pattern
780 * in full (e.g. "refs/remotes/origin/master") or at
781 * least from the toplevel (e.g. "remotes/origin/master");
782 * otherwise "git push $URL master" would result in
783 * ambiguity between remotes/origin/master and heads/master
784 * at the remote site.
786 if (namelen != patlen &&
787 patlen != namelen - 5 &&
788 prefixcmp(name, "refs/heads/") &&
789 prefixcmp(name, "refs/tags/")) {
790 /* We want to catch the case where only weak
791 * matches are found and there are multiple
792 * matches, and where more than one strong
793 * matches are found, as ambiguous. One
794 * strong match with zero or more weak matches
795 * are acceptable as a unique match.
806 *matched_ref = matched_weak;
810 *matched_ref = matched;
815 static void tail_link_ref(struct ref *ref, struct ref ***tail)
823 static struct ref *try_explicit_object_name(const char *name)
825 unsigned char sha1[20];
830 strcpy(ref->name, "(delete)");
831 hashclr(ref->new_sha1);
834 if (get_sha1(name, sha1))
836 ref = alloc_ref_from_str(name);
837 hashcpy(ref->new_sha1, sha1);
841 static struct ref *make_linked_ref(const char *name, struct ref ***tail)
843 struct ref *ret = alloc_ref_from_str(name);
844 tail_link_ref(ret, tail);
848 static char *guess_ref(const char *name, struct ref *peer)
850 struct strbuf buf = STRBUF_INIT;
851 unsigned char sha1[20];
853 const char *r = resolve_ref(peer->name, sha1, 1, NULL);
857 if (!prefixcmp(r, "refs/heads/"))
858 strbuf_addstr(&buf, "refs/heads/");
859 else if (!prefixcmp(r, "refs/tags/"))
860 strbuf_addstr(&buf, "refs/tags/");
864 strbuf_addstr(&buf, name);
865 return strbuf_detach(&buf, NULL);
868 static int match_explicit(struct ref *src, struct ref *dst,
869 struct ref ***dst_tail,
873 struct ref *matched_src, *matched_dst;
875 const char *dst_value = rs->dst;
878 if (rs->pattern || rs->matching)
881 matched_src = matched_dst = NULL;
882 switch (count_refspec_match(rs->src, src, &matched_src)) {
886 /* The source could be in the get_sha1() format
887 * not a reference name. :refs/other is a
888 * way to delete 'other' ref at the remote end.
890 matched_src = try_explicit_object_name(rs->src);
892 error("src refspec %s does not match any.", rs->src);
896 error("src refspec %s matches more than one.", rs->src);
904 unsigned char sha1[20];
909 dst_value = resolve_ref(matched_src->name, sha1, 1, &flag);
911 ((flag & REF_ISSYMREF) &&
912 prefixcmp(dst_value, "refs/heads/")))
913 die("%s cannot be resolved to branch.",
917 switch (count_refspec_match(dst_value, dst, &matched_dst)) {
921 if (!memcmp(dst_value, "refs/", 5))
922 matched_dst = make_linked_ref(dst_value, dst_tail);
923 else if((dst_guess = guess_ref(dst_value, matched_src)))
924 matched_dst = make_linked_ref(dst_guess, dst_tail);
926 error("unable to push to unqualified destination: %s\n"
927 "The destination refspec neither matches an "
928 "existing ref on the remote nor\n"
929 "begins with refs/, and we are unable to "
930 "guess a prefix based on the source ref.",
935 error("dst refspec %s matches more than one.",
939 if (errs || !matched_dst)
941 if (matched_dst->peer_ref) {
943 error("dst ref %s receives from more than one src.",
947 matched_dst->peer_ref = matched_src;
948 matched_dst->force = rs->force;
953 static int match_explicit_refs(struct ref *src, struct ref *dst,
954 struct ref ***dst_tail, struct refspec *rs,
958 for (i = errs = 0; i < rs_nr; i++)
959 errs |= match_explicit(src, dst, dst_tail, &rs[i], errs);
963 static const struct refspec *check_pattern_match(const struct refspec *rs,
965 const struct ref *src)
968 int matching_refs = -1;
969 for (i = 0; i < rs_nr; i++) {
970 if (rs[i].matching &&
971 (matching_refs == -1 || rs[i].force)) {
977 !prefixcmp(src->name, rs[i].src) &&
978 src->name[strlen(rs[i].src)] == '/')
981 if (matching_refs != -1)
982 return rs + matching_refs;
988 * Note. This is used only by "push"; refspec matching rules for
989 * push and fetch are subtly different, so do not try to reuse it
992 int match_refs(struct ref *src, struct ref *dst, struct ref ***dst_tail,
993 int nr_refspec, const char **refspec, int flags)
996 int send_all = flags & MATCH_REFS_ALL;
997 int send_mirror = flags & MATCH_REFS_MIRROR;
998 static const char *default_refspec[] = { ":", 0 };
1002 refspec = default_refspec;
1004 rs = parse_push_refspec(nr_refspec, (const char **) refspec);
1005 if (match_explicit_refs(src, dst, dst_tail, rs, nr_refspec))
1008 /* pick the remainder */
1009 for ( ; src; src = src->next) {
1010 struct ref *dst_peer;
1011 const struct refspec *pat = NULL;
1016 pat = check_pattern_match(rs, nr_refspec, src);
1020 if (pat->matching) {
1022 * "matching refs"; traditionally we pushed everything
1023 * including refs outside refs/heads/ hierarchy, but
1024 * that does not make much sense these days.
1026 if (!send_mirror && prefixcmp(src->name, "refs/heads/"))
1028 dst_name = xstrdup(src->name);
1031 const char *dst_side = pat->dst ? pat->dst : pat->src;
1032 dst_name = xmalloc(strlen(dst_side) +
1034 strlen(pat->src) + 2);
1035 strcpy(dst_name, dst_side);
1036 strcat(dst_name, src->name + strlen(pat->src));
1038 dst_peer = find_ref_by_name(dst, dst_name);
1040 if (dst_peer->peer_ref)
1041 /* We're already sending something to this ref. */
1045 if (pat->matching && !(send_all || send_mirror))
1047 * Remote doesn't have it, and we have no
1048 * explicit pattern, and we don't have
1049 * --all nor --mirror.
1053 /* Create a new one and link it */
1054 dst_peer = make_linked_ref(dst_name, dst_tail);
1055 hashcpy(dst_peer->new_sha1, src->new_sha1);
1057 dst_peer->peer_ref = src;
1058 dst_peer->force = pat->force;
1065 struct branch *branch_get(const char *name)
1070 if (!name || !*name || !strcmp(name, "HEAD"))
1071 ret = current_branch;
1073 ret = make_branch(name, 0);
1074 if (ret && ret->remote_name) {
1075 ret->remote = remote_get(ret->remote_name);
1076 if (ret->merge_nr) {
1078 ret->merge = xcalloc(sizeof(*ret->merge),
1080 for (i = 0; i < ret->merge_nr; i++) {
1081 ret->merge[i] = xcalloc(1, sizeof(**ret->merge));
1082 ret->merge[i]->src = xstrdup(ret->merge_name[i]);
1083 remote_find_tracking(ret->remote,
1091 int branch_has_merge_config(struct branch *branch)
1093 return branch && !!branch->merge;
1096 int branch_merge_matches(struct branch *branch,
1098 const char *refname)
1100 if (!branch || i < 0 || i >= branch->merge_nr)
1102 return refname_match(branch->merge[i]->src, refname, ref_fetch_rules);
1105 static struct ref *get_expanded_map(const struct ref *remote_refs,
1106 const struct refspec *refspec)
1108 const struct ref *ref;
1109 struct ref *ret = NULL;
1110 struct ref **tail = &ret;
1112 int remote_prefix_len = strlen(refspec->src);
1113 int local_prefix_len = strlen(refspec->dst);
1115 for (ref = remote_refs; ref; ref = ref->next) {
1116 if (strchr(ref->name, '^'))
1117 continue; /* a dereference item */
1118 if (!prefixcmp(ref->name, refspec->src)) {
1120 struct ref *cpy = copy_ref(ref);
1121 match = ref->name + remote_prefix_len;
1123 cpy->peer_ref = alloc_ref(local_prefix_len +
1125 sprintf(cpy->peer_ref->name, "%s%s",
1126 refspec->dst, match);
1128 cpy->peer_ref->force = 1;
1137 static const struct ref *find_ref_by_name_abbrev(const struct ref *refs, const char *name)
1139 const struct ref *ref;
1140 for (ref = refs; ref; ref = ref->next) {
1141 if (refname_match(name, ref->name, ref_fetch_rules))
1147 struct ref *get_remote_ref(const struct ref *remote_refs, const char *name)
1149 const struct ref *ref = find_ref_by_name_abbrev(remote_refs, name);
1154 return copy_ref(ref);
1157 static struct ref *get_local_ref(const char *name)
1163 if (!prefixcmp(name, "refs/")) {
1164 return alloc_ref_from_str(name);
1167 if (!prefixcmp(name, "heads/") ||
1168 !prefixcmp(name, "tags/") ||
1169 !prefixcmp(name, "remotes/")) {
1170 ret = alloc_ref(strlen(name) + 6);
1171 sprintf(ret->name, "refs/%s", name);
1175 ret = alloc_ref(strlen(name) + 12);
1176 sprintf(ret->name, "refs/heads/%s", name);
1180 int get_fetch_map(const struct ref *remote_refs,
1181 const struct refspec *refspec,
1185 struct ref *ref_map, **rmp;
1187 if (refspec->pattern) {
1188 ref_map = get_expanded_map(remote_refs, refspec);
1190 const char *name = refspec->src[0] ? refspec->src : "HEAD";
1192 ref_map = get_remote_ref(remote_refs, name);
1193 if (!missing_ok && !ref_map)
1194 die("Couldn't find remote ref %s", name);
1196 ref_map->peer_ref = get_local_ref(refspec->dst);
1197 if (ref_map->peer_ref && refspec->force)
1198 ref_map->peer_ref->force = 1;
1202 for (rmp = &ref_map; *rmp; ) {
1203 if ((*rmp)->peer_ref) {
1204 int st = check_ref_format((*rmp)->peer_ref->name + 5);
1205 if (st && st != CHECK_REF_FORMAT_ONELEVEL) {
1206 struct ref *ignore = *rmp;
1207 error("* Ignoring funny ref '%s' locally",
1208 (*rmp)->peer_ref->name);
1209 *rmp = (*rmp)->next;
1210 free(ignore->peer_ref);
1215 rmp = &((*rmp)->next);
1219 tail_link_ref(ref_map, tail);
1224 int resolve_remote_symref(struct ref *ref, struct ref *list)
1228 for (; list; list = list->next)
1229 if (!strcmp(ref->symref, list->name)) {
1230 hashcpy(ref->old_sha1, list->old_sha1);