5 struct counted_string
{
12 struct counted_string
*instead_of
;
17 static struct remote
**remotes
;
18 static int remotes_alloc
;
19 static int remotes_nr
;
21 static struct branch
**branches
;
22 static int branches_alloc
;
23 static int branches_nr
;
25 static struct branch
*current_branch
;
26 static const char *default_remote_name
;
28 static struct rewrite
**rewrite
;
29 static int rewrite_alloc
;
30 static int rewrite_nr
;
32 #define BUF_SIZE (2048)
33 static char buffer
[BUF_SIZE
];
35 static const char *alias_url(const char *url
)
39 struct counted_string
*longest
;
44 for (i
= 0; i
< rewrite_nr
; i
++) {
47 for (j
= 0; j
< rewrite
[i
]->instead_of_nr
; j
++) {
48 if (!prefixcmp(url
, rewrite
[i
]->instead_of
[j
].s
) &&
50 longest
->len
< rewrite
[i
]->instead_of
[j
].len
)) {
51 longest
= &(rewrite
[i
]->instead_of
[j
]);
59 ret
= malloc(rewrite
[longest_i
]->baselen
+
60 (strlen(url
) - longest
->len
) + 1);
61 strcpy(ret
, rewrite
[longest_i
]->base
);
62 strcpy(ret
+ rewrite
[longest_i
]->baselen
, url
+ longest
->len
);
66 static void add_push_refspec(struct remote
*remote
, const char *ref
)
68 ALLOC_GROW(remote
->push_refspec
,
69 remote
->push_refspec_nr
+ 1,
70 remote
->push_refspec_alloc
);
71 remote
->push_refspec
[remote
->push_refspec_nr
++] = ref
;
74 static void add_fetch_refspec(struct remote
*remote
, const char *ref
)
76 ALLOC_GROW(remote
->fetch_refspec
,
77 remote
->fetch_refspec_nr
+ 1,
78 remote
->fetch_refspec_alloc
);
79 remote
->fetch_refspec
[remote
->fetch_refspec_nr
++] = ref
;
82 static void add_url(struct remote
*remote
, const char *url
)
84 ALLOC_GROW(remote
->url
, remote
->url_nr
+ 1, remote
->url_alloc
);
85 remote
->url
[remote
->url_nr
++] = url
;
88 static void add_url_alias(struct remote
*remote
, const char *url
)
90 add_url(remote
, alias_url(url
));
93 static struct remote
*make_remote(const char *name
, int len
)
98 for (i
= 0; i
< remotes_nr
; i
++) {
99 if (len
? (!strncmp(name
, remotes
[i
]->name
, len
) &&
100 !remotes
[i
]->name
[len
]) :
101 !strcmp(name
, remotes
[i
]->name
))
105 ret
= xcalloc(1, sizeof(struct remote
));
106 ALLOC_GROW(remotes
, remotes_nr
+ 1, remotes_alloc
);
107 remotes
[remotes_nr
++] = ret
;
109 ret
->name
= xstrndup(name
, len
);
111 ret
->name
= xstrdup(name
);
115 static void add_merge(struct branch
*branch
, const char *name
)
117 ALLOC_GROW(branch
->merge_name
, branch
->merge_nr
+ 1,
118 branch
->merge_alloc
);
119 branch
->merge_name
[branch
->merge_nr
++] = name
;
122 static struct branch
*make_branch(const char *name
, int len
)
128 for (i
= 0; i
< branches_nr
; i
++) {
129 if (len
? (!strncmp(name
, branches
[i
]->name
, len
) &&
130 !branches
[i
]->name
[len
]) :
131 !strcmp(name
, branches
[i
]->name
))
135 ALLOC_GROW(branches
, branches_nr
+ 1, branches_alloc
);
136 ret
= xcalloc(1, sizeof(struct branch
));
137 branches
[branches_nr
++] = ret
;
139 ret
->name
= xstrndup(name
, len
);
141 ret
->name
= xstrdup(name
);
142 refname
= malloc(strlen(name
) + strlen("refs/heads/") + 1);
143 strcpy(refname
, "refs/heads/");
144 strcpy(refname
+ strlen("refs/heads/"), ret
->name
);
145 ret
->refname
= refname
;
150 static struct rewrite
*make_rewrite(const char *base
, int len
)
155 for (i
= 0; i
< rewrite_nr
; i
++) {
157 ? (len
== rewrite
[i
]->baselen
&&
158 !strncmp(base
, rewrite
[i
]->base
, len
))
159 : !strcmp(base
, rewrite
[i
]->base
))
163 ALLOC_GROW(rewrite
, rewrite_nr
+ 1, rewrite_alloc
);
164 ret
= xcalloc(1, sizeof(struct rewrite
));
165 rewrite
[rewrite_nr
++] = ret
;
167 ret
->base
= xstrndup(base
, len
);
171 ret
->base
= xstrdup(base
);
172 ret
->baselen
= strlen(base
);
177 static void add_instead_of(struct rewrite
*rewrite
, const char *instead_of
)
179 ALLOC_GROW(rewrite
->instead_of
, rewrite
->instead_of_nr
+ 1, rewrite
->instead_of_alloc
);
180 rewrite
->instead_of
[rewrite
->instead_of_nr
].s
= instead_of
;
181 rewrite
->instead_of
[rewrite
->instead_of_nr
].len
= strlen(instead_of
);
182 rewrite
->instead_of_nr
++;
185 static void read_remotes_file(struct remote
*remote
)
187 FILE *f
= fopen(git_path("remotes/%s", remote
->name
), "r");
191 while (fgets(buffer
, BUF_SIZE
, f
)) {
195 if (!prefixcmp(buffer
, "URL:")) {
198 } else if (!prefixcmp(buffer
, "Push:")) {
201 } else if (!prefixcmp(buffer
, "Pull:")) {
213 while (isspace(p
[-1]))
216 switch (value_list
) {
218 add_url_alias(remote
, xstrdup(s
));
221 add_push_refspec(remote
, xstrdup(s
));
224 add_fetch_refspec(remote
, xstrdup(s
));
231 static void read_branches_file(struct remote
*remote
)
233 const char *slash
= strchr(remote
->name
, '/');
235 struct strbuf branch
;
236 int n
= slash
? slash
- remote
->name
: 1000;
237 FILE *f
= fopen(git_path("branches/%.*s", n
, remote
->name
), "r");
243 s
= fgets(buffer
, BUF_SIZE
, f
);
252 while (isspace(p
[-1]))
256 len
+= strlen(slash
);
257 p
= xmalloc(len
+ 1);
263 * With "slash", e.g. "git fetch jgarzik/netdev-2.6" when
264 * reading from $GIT_DIR/branches/jgarzik fetches "HEAD" from
265 * the partial URL obtained from the branches file plus
266 * "/netdev-2.6" and does not store it in any tracking ref.
267 * #branch specifier in the file is ignored.
269 * Otherwise, the branches file would have URL and optionally
270 * #branch specified. The "master" (or specified) branch is
271 * fetched and stored in the local branch of the same name.
273 strbuf_init(&branch
, 0);
274 frag
= strchr(p
, '#');
277 strbuf_addf(&branch
, "refs/heads/%s", frag
);
279 strbuf_addstr(&branch
, "refs/heads/master");
281 strbuf_addf(&branch
, ":refs/heads/%s", remote
->name
);
283 strbuf_reset(&branch
);
284 strbuf_addstr(&branch
, "HEAD:");
286 add_url_alias(remote
, p
);
287 add_fetch_refspec(remote
, strbuf_detach(&branch
, 0));
288 remote
->fetch_tags
= 1; /* always auto-follow */
291 static int handle_config(const char *key
, const char *value
)
295 struct remote
*remote
;
296 struct branch
*branch
;
297 if (!prefixcmp(key
, "branch.")) {
299 subkey
= strrchr(name
, '.');
302 branch
= make_branch(name
, subkey
- name
);
303 if (!strcmp(subkey
, ".remote")) {
305 return config_error_nonbool(key
);
306 branch
->remote_name
= xstrdup(value
);
307 if (branch
== current_branch
)
308 default_remote_name
= branch
->remote_name
;
309 } else if (!strcmp(subkey
, ".merge")) {
311 return config_error_nonbool(key
);
312 add_merge(branch
, xstrdup(value
));
316 if (!prefixcmp(key
, "url.")) {
317 struct rewrite
*rewrite
;
319 subkey
= strrchr(name
, '.');
322 rewrite
= make_rewrite(name
, subkey
- name
);
323 if (!strcmp(subkey
, ".insteadof")) {
325 return config_error_nonbool(key
);
326 add_instead_of(rewrite
, xstrdup(value
));
329 if (prefixcmp(key
, "remote."))
332 subkey
= strrchr(name
, '.');
334 return error("Config with no key for remote %s", name
);
335 if (*subkey
== '/') {
336 warning("Config remote shorthand cannot begin with '/': %s", name
);
339 remote
= make_remote(name
, subkey
- name
);
340 if (!strcmp(subkey
, ".mirror"))
341 remote
->mirror
= git_config_bool(key
, value
);
342 else if (!strcmp(subkey
, ".skipdefaultupdate"))
343 remote
->skip_default_update
= git_config_bool(key
, value
);
345 else if (!strcmp(subkey
, ".url")) {
347 if (git_config_string(&v
, key
, value
))
350 } else if (!strcmp(subkey
, ".push")) {
352 if (git_config_string(&v
, key
, value
))
354 add_push_refspec(remote
, v
);
355 } else if (!strcmp(subkey
, ".fetch")) {
357 if (git_config_string(&v
, key
, value
))
359 add_fetch_refspec(remote
, v
);
360 } else if (!strcmp(subkey
, ".receivepack")) {
362 if (git_config_string(&v
, key
, value
))
364 if (!remote
->receivepack
)
365 remote
->receivepack
= v
;
367 error("more than one receivepack given, using the first");
368 } else if (!strcmp(subkey
, ".uploadpack")) {
370 if (git_config_string(&v
, key
, value
))
372 if (!remote
->uploadpack
)
373 remote
->uploadpack
= v
;
375 error("more than one uploadpack given, using the first");
376 } else if (!strcmp(subkey
, ".tagopt")) {
377 if (!strcmp(value
, "--no-tags"))
378 remote
->fetch_tags
= -1;
379 } else if (!strcmp(subkey
, ".proxy")) {
380 return git_config_string((const char **)&remote
->http_proxy
,
386 static void alias_all_urls(void)
389 for (i
= 0; i
< remotes_nr
; i
++) {
392 for (j
= 0; j
< remotes
[i
]->url_nr
; j
++) {
393 remotes
[i
]->url
[j
] = alias_url(remotes
[i
]->url
[j
]);
398 static void read_config(void)
400 unsigned char sha1
[20];
401 const char *head_ref
;
403 if (default_remote_name
) // did this already
405 default_remote_name
= xstrdup("origin");
406 current_branch
= NULL
;
407 head_ref
= resolve_ref("HEAD", sha1
, 0, &flag
);
408 if (head_ref
&& (flag
& REF_ISSYMREF
) &&
409 !prefixcmp(head_ref
, "refs/heads/")) {
411 make_branch(head_ref
+ strlen("refs/heads/"), 0);
413 git_config(handle_config
);
417 static struct refspec
*parse_refspec_internal(int nr_refspec
, const char **refspec
, int fetch
, int verify
)
421 struct refspec
*rs
= xcalloc(sizeof(*rs
), nr_refspec
);
423 for (i
= 0; i
< nr_refspec
; i
++) {
426 const char *lhs
, *rhs
;
428 llen
= rlen
= is_glob
= 0;
436 rhs
= strrchr(lhs
, ':');
440 is_glob
= (2 <= rlen
&& !strcmp(rhs
+ rlen
- 2, "/*"));
443 rs
[i
].dst
= xstrndup(rhs
, rlen
);
446 llen
= (rhs
? (rhs
- lhs
- 1) : strlen(lhs
));
447 if (2 <= llen
&& !memcmp(lhs
+ llen
- 2, "/*", 2)) {
448 if ((rhs
&& !is_glob
) || (!rhs
&& fetch
))
452 } else if (rhs
&& is_glob
) {
456 rs
[i
].pattern
= is_glob
;
457 rs
[i
].src
= xstrndup(lhs
, llen
);
462 * - empty is allowed; it means HEAD.
463 * - otherwise it must be a valid looking ref.
468 st
= check_ref_format(rs
[i
].src
);
469 if (st
&& st
!= CHECK_REF_FORMAT_ONELEVEL
)
474 * - missing is ok, and is same as empty.
475 * - empty is ok; it means not to store.
476 * - otherwise it must be a valid looking ref.
480 } else if (!*rs
[i
].dst
) {
483 st
= check_ref_format(rs
[i
].dst
);
484 if (st
&& st
!= CHECK_REF_FORMAT_ONELEVEL
)
490 * - empty is allowed; it means delete.
491 * - when wildcarded, it must be a valid looking ref.
492 * - otherwise, it must be an extended SHA-1, but
493 * there is no existing way to validate this.
498 st
= check_ref_format(rs
[i
].src
);
499 if (st
&& st
!= CHECK_REF_FORMAT_ONELEVEL
)
503 ; /* anything goes, for now */
506 * - missing is allowed, but LHS then must be a
508 * - empty is not allowed.
509 * - otherwise it must be a valid looking ref.
512 st
= check_ref_format(rs
[i
].src
);
513 if (st
&& st
!= CHECK_REF_FORMAT_ONELEVEL
)
515 } else if (!*rs
[i
].dst
) {
518 st
= check_ref_format(rs
[i
].dst
);
519 if (st
&& st
!= CHECK_REF_FORMAT_ONELEVEL
)
531 die("Invalid refspec '%s'", refspec
[i
]);
534 int valid_fetch_refspec(const char *fetch_refspec_str
)
536 const char *fetch_refspec
[] = { fetch_refspec_str
};
537 struct refspec
*refspec
;
539 refspec
= parse_refspec_internal(1, fetch_refspec
, 1, 1);
545 struct refspec
*parse_fetch_refspec(int nr_refspec
, const char **refspec
)
547 return parse_refspec_internal(nr_refspec
, refspec
, 1, 0);
550 struct refspec
*parse_push_refspec(int nr_refspec
, const char **refspec
)
552 return parse_refspec_internal(nr_refspec
, refspec
, 0, 0);
555 static int valid_remote_nick(const char *name
)
557 if (!name
[0] || /* not empty */
558 (name
[0] == '.' && /* not "." */
559 (!name
[1] || /* not ".." */
560 (name
[1] == '.' && !name
[2]))))
562 return !strchr(name
, '/'); /* no slash */
565 struct remote
*remote_get(const char *name
)
571 name
= default_remote_name
;
572 ret
= make_remote(name
, 0);
573 if (valid_remote_nick(name
)) {
575 read_remotes_file(ret
);
577 read_branches_file(ret
);
580 add_url_alias(ret
, name
);
583 ret
->fetch
= parse_fetch_refspec(ret
->fetch_refspec_nr
, ret
->fetch_refspec
);
584 ret
->push
= parse_push_refspec(ret
->push_refspec_nr
, ret
->push_refspec
);
588 int for_each_remote(each_remote_fn fn
, void *priv
)
592 for (i
= 0; i
< remotes_nr
&& !result
; i
++) {
593 struct remote
*r
= remotes
[i
];
597 r
->fetch
= parse_fetch_refspec(r
->fetch_refspec_nr
,
600 r
->push
= parse_push_refspec(r
->push_refspec_nr
,
602 result
= fn(r
, priv
);
607 void ref_remove_duplicates(struct ref
*ref_map
)
611 for (; ref_map
; ref_map
= ref_map
->next
) {
612 if (!ref_map
->peer_ref
)
614 posn
= &ref_map
->next
;
616 if ((*posn
)->peer_ref
&&
617 !strcmp((*posn
)->peer_ref
->name
,
618 ref_map
->peer_ref
->name
)) {
619 if (strcmp((*posn
)->name
, ref_map
->name
))
620 die("%s tracks both %s and %s",
621 ref_map
->peer_ref
->name
,
622 (*posn
)->name
, ref_map
->name
);
623 next
= (*posn
)->next
;
624 free((*posn
)->peer_ref
);
628 posn
= &(*posn
)->next
;
634 int remote_has_url(struct remote
*remote
, const char *url
)
637 for (i
= 0; i
< remote
->url_nr
; i
++) {
638 if (!strcmp(remote
->url
[i
], url
))
644 int remote_find_tracking(struct remote
*remote
, struct refspec
*refspec
)
646 int find_src
= refspec
->src
== NULL
;
647 char *needle
, **result
;
652 return error("find_tracking: need either src or dst");
653 needle
= refspec
->dst
;
654 result
= &refspec
->src
;
656 needle
= refspec
->src
;
657 result
= &refspec
->dst
;
660 for (i
= 0; i
< remote
->fetch_refspec_nr
; i
++) {
661 struct refspec
*fetch
= &remote
->fetch
[i
];
662 const char *key
= find_src
? fetch
->dst
: fetch
->src
;
663 const char *value
= find_src
? fetch
->src
: fetch
->dst
;
666 if (fetch
->pattern
) {
667 if (!prefixcmp(needle
, key
) &&
668 needle
[strlen(key
)] == '/') {
669 *result
= xmalloc(strlen(value
) +
672 strcpy(*result
, value
);
673 strcpy(*result
+ strlen(value
),
674 needle
+ strlen(key
));
675 refspec
->force
= fetch
->force
;
678 } else if (!strcmp(needle
, key
)) {
679 *result
= xstrdup(value
);
680 refspec
->force
= fetch
->force
;
687 struct ref
*alloc_ref(unsigned namelen
)
689 struct ref
*ret
= xmalloc(sizeof(struct ref
) + namelen
);
690 memset(ret
, 0, sizeof(struct ref
) + namelen
);
694 struct ref
*alloc_ref_from_str(const char* str
)
696 struct ref
*ret
= alloc_ref(strlen(str
) + 1);
697 strcpy(ret
->name
, str
);
701 static struct ref
*copy_ref(const struct ref
*ref
)
703 struct ref
*ret
= xmalloc(sizeof(struct ref
) + strlen(ref
->name
) + 1);
704 memcpy(ret
, ref
, sizeof(struct ref
) + strlen(ref
->name
) + 1);
709 struct ref
*copy_ref_list(const struct ref
*ref
)
711 struct ref
*ret
= NULL
;
712 struct ref
**tail
= &ret
;
714 *tail
= copy_ref(ref
);
716 tail
= &((*tail
)->next
);
721 void free_ref(struct ref
*ref
)
725 free(ref
->remote_status
);
730 void free_refs(struct ref
*ref
)
741 static int count_refspec_match(const char *pattern
,
743 struct ref
**matched_ref
)
745 int patlen
= strlen(pattern
);
746 struct ref
*matched_weak
= NULL
;
747 struct ref
*matched
= NULL
;
751 for (weak_match
= match
= 0; refs
; refs
= refs
->next
) {
752 char *name
= refs
->name
;
753 int namelen
= strlen(name
);
755 if (!refname_match(pattern
, name
, ref_rev_parse_rules
))
758 /* A match is "weak" if it is with refs outside
759 * heads or tags, and did not specify the pattern
760 * in full (e.g. "refs/remotes/origin/master") or at
761 * least from the toplevel (e.g. "remotes/origin/master");
762 * otherwise "git push $URL master" would result in
763 * ambiguity between remotes/origin/master and heads/master
764 * at the remote site.
766 if (namelen
!= patlen
&&
767 patlen
!= namelen
- 5 &&
768 prefixcmp(name
, "refs/heads/") &&
769 prefixcmp(name
, "refs/tags/")) {
770 /* We want to catch the case where only weak
771 * matches are found and there are multiple
772 * matches, and where more than one strong
773 * matches are found, as ambiguous. One
774 * strong match with zero or more weak matches
775 * are acceptable as a unique match.
786 *matched_ref
= matched_weak
;
790 *matched_ref
= matched
;
795 static void tail_link_ref(struct ref
*ref
, struct ref
***tail
)
803 static struct ref
*try_explicit_object_name(const char *name
)
805 unsigned char sha1
[20];
810 strcpy(ref
->name
, "(delete)");
811 hashclr(ref
->new_sha1
);
814 if (get_sha1(name
, sha1
))
816 ref
= alloc_ref_from_str(name
);
817 hashcpy(ref
->new_sha1
, sha1
);
821 static struct ref
*make_linked_ref(const char *name
, struct ref
***tail
)
823 struct ref
*ret
= alloc_ref_from_str(name
);
824 tail_link_ref(ret
, tail
);
828 static char *guess_ref(const char *name
, struct ref
*peer
)
830 struct strbuf buf
= STRBUF_INIT
;
831 unsigned char sha1
[20];
833 const char *r
= resolve_ref(peer
->name
, sha1
, 1, NULL
);
837 if (!prefixcmp(r
, "refs/heads/"))
838 strbuf_addstr(&buf
, "refs/heads/");
839 else if (!prefixcmp(r
, "refs/tags/"))
840 strbuf_addstr(&buf
, "refs/tags/");
844 strbuf_addstr(&buf
, name
);
845 return strbuf_detach(&buf
, NULL
);
848 static int match_explicit(struct ref
*src
, struct ref
*dst
,
849 struct ref
***dst_tail
,
853 struct ref
*matched_src
, *matched_dst
;
855 const char *dst_value
= rs
->dst
;
861 matched_src
= matched_dst
= NULL
;
862 switch (count_refspec_match(rs
->src
, src
, &matched_src
)) {
866 /* The source could be in the get_sha1() format
867 * not a reference name. :refs/other is a
868 * way to delete 'other' ref at the remote end.
870 matched_src
= try_explicit_object_name(rs
->src
);
872 error("src refspec %s does not match any.", rs
->src
);
876 error("src refspec %s matches more than one.", rs
->src
);
884 unsigned char sha1
[20];
889 dst_value
= resolve_ref(matched_src
->name
, sha1
, 1, &flag
);
891 ((flag
& REF_ISSYMREF
) &&
892 prefixcmp(dst_value
, "refs/heads/")))
893 die("%s cannot be resolved to branch.",
897 switch (count_refspec_match(dst_value
, dst
, &matched_dst
)) {
901 if (!memcmp(dst_value
, "refs/", 5))
902 matched_dst
= make_linked_ref(dst_value
, dst_tail
);
903 else if((dst_guess
= guess_ref(dst_value
, matched_src
)))
904 matched_dst
= make_linked_ref(dst_guess
, dst_tail
);
906 error("unable to push to unqualified destination: %s\n"
907 "The destination refspec neither matches an "
908 "existing ref on the remote nor\n"
909 "begins with refs/, and we are unable to "
910 "guess a prefix based on the source ref.",
915 error("dst refspec %s matches more than one.",
919 if (errs
|| !matched_dst
)
921 if (matched_dst
->peer_ref
) {
923 error("dst ref %s receives from more than one src.",
927 matched_dst
->peer_ref
= matched_src
;
928 matched_dst
->force
= rs
->force
;
933 static int match_explicit_refs(struct ref
*src
, struct ref
*dst
,
934 struct ref
***dst_tail
, struct refspec
*rs
,
938 for (i
= errs
= 0; i
< rs_nr
; i
++)
939 errs
|= match_explicit(src
, dst
, dst_tail
, &rs
[i
], errs
);
943 static const struct refspec
*check_pattern_match(const struct refspec
*rs
,
945 const struct ref
*src
)
948 for (i
= 0; i
< rs_nr
; i
++) {
950 !prefixcmp(src
->name
, rs
[i
].src
) &&
951 src
->name
[strlen(rs
[i
].src
)] == '/')
958 * Note. This is used only by "push"; refspec matching rules for
959 * push and fetch are subtly different, so do not try to reuse it
962 int match_refs(struct ref
*src
, struct ref
*dst
, struct ref
***dst_tail
,
963 int nr_refspec
, const char **refspec
, int flags
)
966 parse_push_refspec(nr_refspec
, (const char **) refspec
);
967 int send_all
= flags
& MATCH_REFS_ALL
;
968 int send_mirror
= flags
& MATCH_REFS_MIRROR
;
970 if (match_explicit_refs(src
, dst
, dst_tail
, rs
, nr_refspec
))
973 /* pick the remainder */
974 for ( ; src
; src
= src
->next
) {
975 struct ref
*dst_peer
;
976 const struct refspec
*pat
= NULL
;
981 pat
= check_pattern_match(rs
, nr_refspec
, src
);
985 else if (!send_mirror
&& prefixcmp(src
->name
, "refs/heads/"))
987 * "matching refs"; traditionally we pushed everything
988 * including refs outside refs/heads/ hierarchy, but
989 * that does not make much sense these days.
994 const char *dst_side
= pat
->dst
? pat
->dst
: pat
->src
;
995 dst_name
= xmalloc(strlen(dst_side
) +
997 strlen(pat
->src
) + 2);
998 strcpy(dst_name
, dst_side
);
999 strcat(dst_name
, src
->name
+ strlen(pat
->src
));
1001 dst_name
= xstrdup(src
->name
);
1002 dst_peer
= find_ref_by_name(dst
, dst_name
);
1003 if (dst_peer
&& dst_peer
->peer_ref
)
1004 /* We're already sending something to this ref. */
1007 if (!dst_peer
&& !nr_refspec
&& !(send_all
|| send_mirror
))
1009 * Remote doesn't have it, and we have no
1010 * explicit pattern, and we don't have
1011 * --all nor --mirror.
1015 /* Create a new one and link it */
1016 dst_peer
= make_linked_ref(dst_name
, dst_tail
);
1017 hashcpy(dst_peer
->new_sha1
, src
->new_sha1
);
1019 dst_peer
->peer_ref
= src
;
1021 dst_peer
->force
= pat
->force
;
1028 struct branch
*branch_get(const char *name
)
1033 if (!name
|| !*name
|| !strcmp(name
, "HEAD"))
1034 ret
= current_branch
;
1036 ret
= make_branch(name
, 0);
1037 if (ret
&& ret
->remote_name
) {
1038 ret
->remote
= remote_get(ret
->remote_name
);
1039 if (ret
->merge_nr
) {
1041 ret
->merge
= xcalloc(sizeof(*ret
->merge
),
1043 for (i
= 0; i
< ret
->merge_nr
; i
++) {
1044 ret
->merge
[i
] = xcalloc(1, sizeof(**ret
->merge
));
1045 ret
->merge
[i
]->src
= xstrdup(ret
->merge_name
[i
]);
1046 remote_find_tracking(ret
->remote
,
1054 int branch_has_merge_config(struct branch
*branch
)
1056 return branch
&& !!branch
->merge
;
1059 int branch_merge_matches(struct branch
*branch
,
1061 const char *refname
)
1063 if (!branch
|| i
< 0 || i
>= branch
->merge_nr
)
1065 return refname_match(branch
->merge
[i
]->src
, refname
, ref_fetch_rules
);
1068 static struct ref
*get_expanded_map(const struct ref
*remote_refs
,
1069 const struct refspec
*refspec
)
1071 const struct ref
*ref
;
1072 struct ref
*ret
= NULL
;
1073 struct ref
**tail
= &ret
;
1075 int remote_prefix_len
= strlen(refspec
->src
);
1076 int local_prefix_len
= strlen(refspec
->dst
);
1078 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
1079 if (strchr(ref
->name
, '^'))
1080 continue; /* a dereference item */
1081 if (!prefixcmp(ref
->name
, refspec
->src
)) {
1083 struct ref
*cpy
= copy_ref(ref
);
1084 match
= ref
->name
+ remote_prefix_len
;
1086 cpy
->peer_ref
= alloc_ref(local_prefix_len
+
1088 sprintf(cpy
->peer_ref
->name
, "%s%s",
1089 refspec
->dst
, match
);
1091 cpy
->peer_ref
->force
= 1;
1100 static const struct ref
*find_ref_by_name_abbrev(const struct ref
*refs
, const char *name
)
1102 const struct ref
*ref
;
1103 for (ref
= refs
; ref
; ref
= ref
->next
) {
1104 if (refname_match(name
, ref
->name
, ref_fetch_rules
))
1110 struct ref
*get_remote_ref(const struct ref
*remote_refs
, const char *name
)
1112 const struct ref
*ref
= find_ref_by_name_abbrev(remote_refs
, name
);
1117 return copy_ref(ref
);
1120 static struct ref
*get_local_ref(const char *name
)
1126 if (!prefixcmp(name
, "refs/")) {
1127 return alloc_ref_from_str(name
);
1130 if (!prefixcmp(name
, "heads/") ||
1131 !prefixcmp(name
, "tags/") ||
1132 !prefixcmp(name
, "remotes/")) {
1133 ret
= alloc_ref(strlen(name
) + 6);
1134 sprintf(ret
->name
, "refs/%s", name
);
1138 ret
= alloc_ref(strlen(name
) + 12);
1139 sprintf(ret
->name
, "refs/heads/%s", name
);
1143 int get_fetch_map(const struct ref
*remote_refs
,
1144 const struct refspec
*refspec
,
1148 struct ref
*ref_map
, **rmp
;
1150 if (refspec
->pattern
) {
1151 ref_map
= get_expanded_map(remote_refs
, refspec
);
1153 const char *name
= refspec
->src
[0] ? refspec
->src
: "HEAD";
1155 ref_map
= get_remote_ref(remote_refs
, name
);
1156 if (!missing_ok
&& !ref_map
)
1157 die("Couldn't find remote ref %s", name
);
1159 ref_map
->peer_ref
= get_local_ref(refspec
->dst
);
1160 if (ref_map
->peer_ref
&& refspec
->force
)
1161 ref_map
->peer_ref
->force
= 1;
1165 for (rmp
= &ref_map
; *rmp
; ) {
1166 if ((*rmp
)->peer_ref
) {
1167 int st
= check_ref_format((*rmp
)->peer_ref
->name
+ 5);
1168 if (st
&& st
!= CHECK_REF_FORMAT_ONELEVEL
) {
1169 struct ref
*ignore
= *rmp
;
1170 error("* Ignoring funny ref '%s' locally",
1171 (*rmp
)->peer_ref
->name
);
1172 *rmp
= (*rmp
)->next
;
1173 free(ignore
->peer_ref
);
1178 rmp
= &((*rmp
)->next
);
1182 tail_link_ref(ref_map
, tail
);
1187 int resolve_remote_symref(struct ref
*ref
, struct ref
*list
)
1191 for (; list
; list
= list
->next
)
1192 if (!strcmp(ref
->symref
, list
->name
)) {
1193 hashcpy(ref
->old_sha1
, list
->old_sha1
);