5 static struct remote
**remotes
;
6 static int allocated_remotes
;
8 static struct branch
**branches
;
9 static int allocated_branches
;
11 static struct branch
*current_branch
;
12 static const char *default_remote_name
;
14 #define BUF_SIZE (2048)
15 static char buffer
[BUF_SIZE
];
17 static void add_push_refspec(struct remote
*remote
, const char *ref
)
19 int nr
= remote
->push_refspec_nr
+ 1;
20 remote
->push_refspec
=
21 xrealloc(remote
->push_refspec
, nr
* sizeof(char *));
22 remote
->push_refspec
[nr
-1] = ref
;
23 remote
->push_refspec_nr
= nr
;
26 static void add_fetch_refspec(struct remote
*remote
, const char *ref
)
28 int nr
= remote
->fetch_refspec_nr
+ 1;
29 remote
->fetch_refspec
=
30 xrealloc(remote
->fetch_refspec
, nr
* sizeof(char *));
31 remote
->fetch_refspec
[nr
-1] = ref
;
32 remote
->fetch_refspec_nr
= nr
;
35 static void add_url(struct remote
*remote
, const char *url
)
37 int nr
= remote
->url_nr
+ 1;
39 xrealloc(remote
->url
, nr
* sizeof(char *));
40 remote
->url
[nr
-1] = url
;
44 static struct remote
*make_remote(const char *name
, int len
)
48 for (i
= 0; i
< allocated_remotes
; i
++) {
53 if (len
? (!strncmp(name
, remotes
[i
]->name
, len
) &&
54 !remotes
[i
]->name
[len
]) :
55 !strcmp(name
, remotes
[i
]->name
))
61 empty
= allocated_remotes
;
62 allocated_remotes
+= allocated_remotes
? allocated_remotes
: 1;
63 remotes
= xrealloc(remotes
,
64 sizeof(*remotes
) * allocated_remotes
);
65 memset(remotes
+ empty
, 0,
66 (allocated_remotes
- empty
) * sizeof(*remotes
));
68 remotes
[empty
] = xcalloc(1, sizeof(struct remote
));
70 remotes
[empty
]->name
= xstrndup(name
, len
);
72 remotes
[empty
]->name
= xstrdup(name
);
73 return remotes
[empty
];
76 static void add_merge(struct branch
*branch
, const char *name
)
78 int nr
= branch
->merge_nr
+ 1;
80 xrealloc(branch
->merge_name
, nr
* sizeof(char *));
81 branch
->merge_name
[nr
-1] = name
;
82 branch
->merge_nr
= nr
;
85 static struct branch
*make_branch(const char *name
, int len
)
90 for (i
= 0; i
< allocated_branches
; i
++) {
95 if (len
? (!strncmp(name
, branches
[i
]->name
, len
) &&
96 !branches
[i
]->name
[len
]) :
97 !strcmp(name
, branches
[i
]->name
))
103 empty
= allocated_branches
;
104 allocated_branches
+= allocated_branches
? allocated_branches
: 1;
105 branches
= xrealloc(branches
,
106 sizeof(*branches
) * allocated_branches
);
107 memset(branches
+ empty
, 0,
108 (allocated_branches
- empty
) * sizeof(*branches
));
110 branches
[empty
] = xcalloc(1, sizeof(struct branch
));
112 branches
[empty
]->name
= xstrndup(name
, len
);
114 branches
[empty
]->name
= xstrdup(name
);
115 refname
= malloc(strlen(name
) + strlen("refs/heads/") + 1);
116 strcpy(refname
, "refs/heads/");
117 strcpy(refname
+ strlen("refs/heads/"),
118 branches
[empty
]->name
);
119 branches
[empty
]->refname
= refname
;
121 return branches
[empty
];
124 static void read_remotes_file(struct remote
*remote
)
126 FILE *f
= fopen(git_path("remotes/%s", remote
->name
), "r");
130 while (fgets(buffer
, BUF_SIZE
, f
)) {
134 if (!prefixcmp(buffer
, "URL:")) {
137 } else if (!prefixcmp(buffer
, "Push:")) {
140 } else if (!prefixcmp(buffer
, "Pull:")) {
152 while (isspace(p
[-1]))
155 switch (value_list
) {
157 add_url(remote
, xstrdup(s
));
160 add_push_refspec(remote
, xstrdup(s
));
163 add_fetch_refspec(remote
, xstrdup(s
));
170 static void read_branches_file(struct remote
*remote
)
172 const char *slash
= strchr(remote
->name
, '/');
175 int n
= slash
? slash
- remote
->name
: 1000;
176 FILE *f
= fopen(git_path("branches/%.*s", n
, remote
->name
), "r");
182 s
= fgets(buffer
, BUF_SIZE
, f
);
191 while (isspace(p
[-1]))
195 len
+= strlen(slash
);
196 p
= xmalloc(len
+ 1);
200 frag
= strchr(p
, '#');
203 branch
= xmalloc(strlen(frag
) + 12);
204 strcpy(branch
, "refs/heads/");
205 strcat(branch
, frag
);
207 branch
= "refs/heads/master";
210 add_fetch_refspec(remote
, branch
);
211 remote
->fetch_tags
= 1; /* always auto-follow */
214 static int handle_config(const char *key
, const char *value
)
218 struct remote
*remote
;
219 struct branch
*branch
;
220 if (!prefixcmp(key
, "branch.")) {
222 subkey
= strrchr(name
, '.');
223 branch
= make_branch(name
, subkey
- name
);
228 if (!strcmp(subkey
, ".remote")) {
229 branch
->remote_name
= xstrdup(value
);
230 if (branch
== current_branch
)
231 default_remote_name
= branch
->remote_name
;
232 } else if (!strcmp(subkey
, ".merge"))
233 add_merge(branch
, xstrdup(value
));
236 if (prefixcmp(key
, "remote."))
239 subkey
= strrchr(name
, '.');
241 return error("Config with no key for remote %s", name
);
242 if (*subkey
== '/') {
243 warning("Config remote shorthand cannot begin with '/': %s", name
);
246 remote
= make_remote(name
, subkey
- name
);
248 /* if we ever have a boolean variable, e.g. "remote.*.disabled"
251 * is a valid way to set it to true; we get NULL in value so
252 * we need to handle it here.
254 * if (!strcmp(subkey, ".disabled")) {
255 * val = git_config_bool(key, value);
260 return 0; /* ignore unknown booleans */
262 if (!strcmp(subkey
, ".url")) {
263 add_url(remote
, xstrdup(value
));
264 } else if (!strcmp(subkey
, ".push")) {
265 add_push_refspec(remote
, xstrdup(value
));
266 } else if (!strcmp(subkey
, ".fetch")) {
267 add_fetch_refspec(remote
, xstrdup(value
));
268 } else if (!strcmp(subkey
, ".receivepack")) {
269 if (!remote
->receivepack
)
270 remote
->receivepack
= xstrdup(value
);
272 error("more than one receivepack given, using the first");
273 } else if (!strcmp(subkey
, ".uploadpack")) {
274 if (!remote
->uploadpack
)
275 remote
->uploadpack
= xstrdup(value
);
277 error("more than one uploadpack given, using the first");
278 } else if (!strcmp(subkey
, ".tagopt")) {
279 if (!strcmp(value
, "--no-tags"))
280 remote
->fetch_tags
= -1;
285 static void read_config(void)
287 unsigned char sha1
[20];
288 const char *head_ref
;
290 if (default_remote_name
) // did this already
292 default_remote_name
= xstrdup("origin");
293 current_branch
= NULL
;
294 head_ref
= resolve_ref("HEAD", sha1
, 0, &flag
);
295 if (head_ref
&& (flag
& REF_ISSYMREF
) &&
296 !prefixcmp(head_ref
, "refs/heads/")) {
298 make_branch(head_ref
+ strlen("refs/heads/"), 0);
300 git_config(handle_config
);
303 struct refspec
*parse_ref_spec(int nr_refspec
, const char **refspec
)
306 struct refspec
*rs
= xcalloc(sizeof(*rs
), nr_refspec
);
307 for (i
= 0; i
< nr_refspec
; i
++) {
308 const char *sp
, *ep
, *gp
;
314 gp
= strchr(sp
, '*');
315 ep
= strchr(sp
, ':');
316 if (gp
&& ep
&& gp
> ep
)
320 const char *glob
= strchr(ep
+ 1, '*');
324 rs
[i
].dst
= xstrndup(ep
+ 1,
327 rs
[i
].dst
= xstrdup(ep
+ 1);
330 ep
= sp
+ strlen(sp
);
336 rs
[i
].src
= xstrndup(sp
, ep
- sp
);
341 struct remote
*remote_get(const char *name
)
347 name
= default_remote_name
;
348 ret
= make_remote(name
, 0);
349 if (name
[0] != '/') {
351 read_remotes_file(ret
);
353 read_branches_file(ret
);
359 ret
->fetch
= parse_ref_spec(ret
->fetch_refspec_nr
, ret
->fetch_refspec
);
360 ret
->push
= parse_ref_spec(ret
->push_refspec_nr
, ret
->push_refspec
);
364 int for_each_remote(each_remote_fn fn
, void *priv
)
368 for (i
= 0; i
< allocated_remotes
&& !result
; i
++) {
369 struct remote
*r
= remotes
[i
];
373 r
->fetch
= parse_ref_spec(r
->fetch_refspec_nr
,
376 r
->push
= parse_ref_spec(r
->push_refspec_nr
,
378 result
= fn(r
, priv
);
383 void ref_remove_duplicates(struct ref
*ref_map
)
387 for (; ref_map
; ref_map
= ref_map
->next
) {
388 if (!ref_map
->peer_ref
)
390 posn
= &ref_map
->next
;
392 if ((*posn
)->peer_ref
&&
393 !strcmp((*posn
)->peer_ref
->name
,
394 ref_map
->peer_ref
->name
)) {
395 if (strcmp((*posn
)->name
, ref_map
->name
))
396 die("%s tracks both %s and %s",
397 ref_map
->peer_ref
->name
,
398 (*posn
)->name
, ref_map
->name
);
399 next
= (*posn
)->next
;
400 free((*posn
)->peer_ref
);
404 posn
= &(*posn
)->next
;
410 int remote_has_url(struct remote
*remote
, const char *url
)
413 for (i
= 0; i
< remote
->url_nr
; i
++) {
414 if (!strcmp(remote
->url
[i
], url
))
421 * Returns true if, under the matching rules for fetching, name is the
422 * same as the given full name.
424 static int ref_matches_abbrev(const char *name
, const char *full
)
426 if (!prefixcmp(name
, "refs/") || !strcmp(name
, "HEAD"))
427 return !strcmp(name
, full
);
428 if (prefixcmp(full
, "refs/"))
430 if (!prefixcmp(name
, "heads/") ||
431 !prefixcmp(name
, "tags/") ||
432 !prefixcmp(name
, "remotes/"))
433 return !strcmp(name
, full
+ 5);
434 if (prefixcmp(full
+ 5, "heads/"))
436 return !strcmp(full
+ 11, name
);
439 int remote_find_tracking(struct remote
*remote
, struct refspec
*refspec
)
441 int find_src
= refspec
->src
== NULL
;
442 char *needle
, **result
;
447 return error("find_tracking: need either src or dst");
448 needle
= refspec
->dst
;
449 result
= &refspec
->src
;
451 needle
= refspec
->src
;
452 result
= &refspec
->dst
;
455 for (i
= 0; i
< remote
->fetch_refspec_nr
; i
++) {
456 struct refspec
*fetch
= &remote
->fetch
[i
];
457 const char *key
= find_src
? fetch
->dst
: fetch
->src
;
458 const char *value
= find_src
? fetch
->src
: fetch
->dst
;
461 if (fetch
->pattern
) {
462 if (!prefixcmp(needle
, key
)) {
463 *result
= xmalloc(strlen(value
) +
466 strcpy(*result
, value
);
467 strcpy(*result
+ strlen(value
),
468 needle
+ strlen(key
));
469 refspec
->force
= fetch
->force
;
472 } else if (!strcmp(needle
, key
)) {
473 *result
= xstrdup(value
);
474 refspec
->force
= fetch
->force
;
481 struct ref
*alloc_ref(unsigned namelen
)
483 struct ref
*ret
= xmalloc(sizeof(struct ref
) + namelen
);
484 memset(ret
, 0, sizeof(struct ref
) + namelen
);
488 static struct ref
*copy_ref(const struct ref
*ref
)
490 struct ref
*ret
= xmalloc(sizeof(struct ref
) + strlen(ref
->name
) + 1);
491 memcpy(ret
, ref
, sizeof(struct ref
) + strlen(ref
->name
) + 1);
496 struct ref
*copy_ref_list(const struct ref
*ref
)
498 struct ref
*ret
= NULL
;
499 struct ref
**tail
= &ret
;
501 *tail
= copy_ref(ref
);
503 tail
= &((*tail
)->next
);
508 void free_refs(struct ref
*ref
)
520 static int count_refspec_match(const char *pattern
,
522 struct ref
**matched_ref
)
524 int patlen
= strlen(pattern
);
525 struct ref
*matched_weak
= NULL
;
526 struct ref
*matched
= NULL
;
530 for (weak_match
= match
= 0; refs
; refs
= refs
->next
) {
531 char *name
= refs
->name
;
532 int namelen
= strlen(name
);
534 if (namelen
< patlen
||
535 memcmp(name
+ namelen
- patlen
, pattern
, patlen
))
537 if (namelen
!= patlen
&& name
[namelen
- patlen
- 1] != '/')
540 /* A match is "weak" if it is with refs outside
541 * heads or tags, and did not specify the pattern
542 * in full (e.g. "refs/remotes/origin/master") or at
543 * least from the toplevel (e.g. "remotes/origin/master");
544 * otherwise "git push $URL master" would result in
545 * ambiguity between remotes/origin/master and heads/master
546 * at the remote site.
548 if (namelen
!= patlen
&&
549 patlen
!= namelen
- 5 &&
550 prefixcmp(name
, "refs/heads/") &&
551 prefixcmp(name
, "refs/tags/")) {
552 /* We want to catch the case where only weak
553 * matches are found and there are multiple
554 * matches, and where more than one strong
555 * matches are found, as ambiguous. One
556 * strong match with zero or more weak matches
557 * are acceptable as a unique match.
568 *matched_ref
= matched_weak
;
572 *matched_ref
= matched
;
577 static void tail_link_ref(struct ref
*ref
, struct ref
***tail
)
585 static struct ref
*try_explicit_object_name(const char *name
)
587 unsigned char sha1
[20];
593 strcpy(ref
->name
, "(delete)");
594 hashclr(ref
->new_sha1
);
597 if (get_sha1(name
, sha1
))
599 len
= strlen(name
) + 1;
600 ref
= alloc_ref(len
);
601 memcpy(ref
->name
, name
, len
);
602 hashcpy(ref
->new_sha1
, sha1
);
606 static struct ref
*make_linked_ref(const char *name
, struct ref
***tail
)
611 len
= strlen(name
) + 1;
612 ret
= alloc_ref(len
);
613 memcpy(ret
->name
, name
, len
);
614 tail_link_ref(ret
, tail
);
618 static int match_explicit(struct ref
*src
, struct ref
*dst
,
619 struct ref
***dst_tail
,
623 struct ref
*matched_src
, *matched_dst
;
625 const char *dst_value
= rs
->dst
;
630 matched_src
= matched_dst
= NULL
;
631 switch (count_refspec_match(rs
->src
, src
, &matched_src
)) {
635 /* The source could be in the get_sha1() format
636 * not a reference name. :refs/other is a
637 * way to delete 'other' ref at the remote end.
639 matched_src
= try_explicit_object_name(rs
->src
);
641 error("src refspec %s does not match any.", rs
->src
);
645 error("src refspec %s matches more than one.", rs
->src
);
655 dst_value
= matched_src
->name
;
658 switch (count_refspec_match(dst_value
, dst
, &matched_dst
)) {
662 if (!memcmp(dst_value
, "refs/", 5))
663 matched_dst
= make_linked_ref(dst_value
, dst_tail
);
665 error("dst refspec %s does not match any "
666 "existing ref on the remote and does "
667 "not start with refs/.", dst_value
);
671 error("dst refspec %s matches more than one.",
675 if (errs
|| !matched_dst
)
677 if (matched_dst
->peer_ref
) {
679 error("dst ref %s receives from more than one src.",
683 matched_dst
->peer_ref
= matched_src
;
684 matched_dst
->force
= rs
->force
;
689 static int match_explicit_refs(struct ref
*src
, struct ref
*dst
,
690 struct ref
***dst_tail
, struct refspec
*rs
,
694 for (i
= errs
= 0; i
< rs_nr
; i
++)
695 errs
|= match_explicit(src
, dst
, dst_tail
, &rs
[i
], errs
);
699 static const struct refspec
*check_pattern_match(const struct refspec
*rs
,
701 const struct ref
*src
)
704 for (i
= 0; i
< rs_nr
; i
++) {
705 if (rs
[i
].pattern
&& !prefixcmp(src
->name
, rs
[i
].src
))
712 * Note. This is used only by "push"; refspec matching rules for
713 * push and fetch are subtly different, so do not try to reuse it
716 int match_refs(struct ref
*src
, struct ref
*dst
, struct ref
***dst_tail
,
717 int nr_refspec
, const char **refspec
, int flags
)
720 parse_ref_spec(nr_refspec
, (const char **) refspec
);
721 int send_all
= flags
& MATCH_REFS_ALL
;
722 int send_mirror
= flags
& MATCH_REFS_MIRROR
;
724 if (match_explicit_refs(src
, dst
, dst_tail
, rs
, nr_refspec
))
727 /* pick the remainder */
728 for ( ; src
; src
= src
->next
) {
729 struct ref
*dst_peer
;
730 const struct refspec
*pat
= NULL
;
735 pat
= check_pattern_match(rs
, nr_refspec
, src
);
739 else if (!send_mirror
&& prefixcmp(src
->name
, "refs/heads/"))
741 * "matching refs"; traditionally we pushed everything
742 * including refs outside refs/heads/ hierarchy, but
743 * that does not make much sense these days.
748 const char *dst_side
= pat
->dst
? pat
->dst
: pat
->src
;
749 dst_name
= xmalloc(strlen(dst_side
) +
751 strlen(pat
->src
) + 2);
752 strcpy(dst_name
, dst_side
);
753 strcat(dst_name
, src
->name
+ strlen(pat
->src
));
755 dst_name
= xstrdup(src
->name
);
756 dst_peer
= find_ref_by_name(dst
, dst_name
);
757 if (dst_peer
&& dst_peer
->peer_ref
)
758 /* We're already sending something to this ref. */
761 if (!dst_peer
&& !nr_refspec
&& !(send_all
|| send_mirror
))
763 * Remote doesn't have it, and we have no
764 * explicit pattern, and we don't have
765 * --all nor --mirror.
769 /* Create a new one and link it */
770 dst_peer
= make_linked_ref(dst_name
, dst_tail
);
771 hashcpy(dst_peer
->new_sha1
, src
->new_sha1
);
773 dst_peer
->peer_ref
= src
;
775 dst_peer
->force
= pat
->force
;
782 struct branch
*branch_get(const char *name
)
787 if (!name
|| !*name
|| !strcmp(name
, "HEAD"))
788 ret
= current_branch
;
790 ret
= make_branch(name
, 0);
791 if (ret
&& ret
->remote_name
) {
792 ret
->remote
= remote_get(ret
->remote_name
);
795 ret
->merge
= xcalloc(sizeof(*ret
->merge
),
797 for (i
= 0; i
< ret
->merge_nr
; i
++) {
798 ret
->merge
[i
] = xcalloc(1, sizeof(**ret
->merge
));
799 ret
->merge
[i
]->src
= xstrdup(ret
->merge_name
[i
]);
800 remote_find_tracking(ret
->remote
,
808 int branch_has_merge_config(struct branch
*branch
)
810 return branch
&& !!branch
->merge
;
813 int branch_merge_matches(struct branch
*branch
,
817 if (!branch
|| i
< 0 || i
>= branch
->merge_nr
)
819 return ref_matches_abbrev(branch
->merge
[i
]->src
, refname
);
822 static struct ref
*get_expanded_map(const struct ref
*remote_refs
,
823 const struct refspec
*refspec
)
825 const struct ref
*ref
;
826 struct ref
*ret
= NULL
;
827 struct ref
**tail
= &ret
;
829 int remote_prefix_len
= strlen(refspec
->src
);
830 int local_prefix_len
= strlen(refspec
->dst
);
832 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
833 if (strchr(ref
->name
, '^'))
834 continue; /* a dereference item */
835 if (!prefixcmp(ref
->name
, refspec
->src
)) {
837 struct ref
*cpy
= copy_ref(ref
);
838 match
= ref
->name
+ remote_prefix_len
;
840 cpy
->peer_ref
= alloc_ref(local_prefix_len
+
842 sprintf(cpy
->peer_ref
->name
, "%s%s",
843 refspec
->dst
, match
);
845 cpy
->peer_ref
->force
= 1;
854 static const struct ref
*find_ref_by_name_abbrev(const struct ref
*refs
, const char *name
)
856 const struct ref
*ref
;
857 for (ref
= refs
; ref
; ref
= ref
->next
) {
858 if (ref_matches_abbrev(name
, ref
->name
))
864 struct ref
*get_remote_ref(const struct ref
*remote_refs
, const char *name
)
866 const struct ref
*ref
= find_ref_by_name_abbrev(remote_refs
, name
);
871 return copy_ref(ref
);
874 static struct ref
*get_local_ref(const char *name
)
880 if (!prefixcmp(name
, "refs/")) {
881 ret
= alloc_ref(strlen(name
) + 1);
882 strcpy(ret
->name
, name
);
886 if (!prefixcmp(name
, "heads/") ||
887 !prefixcmp(name
, "tags/") ||
888 !prefixcmp(name
, "remotes/")) {
889 ret
= alloc_ref(strlen(name
) + 6);
890 sprintf(ret
->name
, "refs/%s", name
);
894 ret
= alloc_ref(strlen(name
) + 12);
895 sprintf(ret
->name
, "refs/heads/%s", name
);
899 int get_fetch_map(const struct ref
*remote_refs
,
900 const struct refspec
*refspec
,
904 struct ref
*ref_map
, *rm
;
906 if (refspec
->pattern
) {
907 ref_map
= get_expanded_map(remote_refs
, refspec
);
909 const char *name
= refspec
->src
[0] ? refspec
->src
: "HEAD";
911 ref_map
= get_remote_ref(remote_refs
, name
);
912 if (!missing_ok
&& !ref_map
)
913 die("Couldn't find remote ref %s", name
);
915 ref_map
->peer_ref
= get_local_ref(refspec
->dst
);
916 if (ref_map
->peer_ref
&& refspec
->force
)
917 ref_map
->peer_ref
->force
= 1;
921 for (rm
= ref_map
; rm
; rm
= rm
->next
) {
922 if (rm
->peer_ref
&& check_ref_format(rm
->peer_ref
->name
+ 5))
923 die("* refusing to create funny ref '%s' locally",
928 tail_link_ref(ref_map
, tail
);