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;
281 } else if (!strcmp(subkey
, ".proxy")) {
282 remote
->http_proxy
= xstrdup(value
);
287 static void read_config(void)
289 unsigned char sha1
[20];
290 const char *head_ref
;
292 if (default_remote_name
) // did this already
294 default_remote_name
= xstrdup("origin");
295 current_branch
= NULL
;
296 head_ref
= resolve_ref("HEAD", sha1
, 0, &flag
);
297 if (head_ref
&& (flag
& REF_ISSYMREF
) &&
298 !prefixcmp(head_ref
, "refs/heads/")) {
300 make_branch(head_ref
+ strlen("refs/heads/"), 0);
302 git_config(handle_config
);
305 struct refspec
*parse_ref_spec(int nr_refspec
, const char **refspec
)
308 struct refspec
*rs
= xcalloc(sizeof(*rs
), nr_refspec
);
309 for (i
= 0; i
< nr_refspec
; i
++) {
310 const char *sp
, *ep
, *gp
;
316 gp
= strchr(sp
, '*');
317 ep
= strchr(sp
, ':');
318 if (gp
&& ep
&& gp
> ep
)
322 const char *glob
= strchr(ep
+ 1, '*');
326 rs
[i
].dst
= xstrndup(ep
+ 1,
329 rs
[i
].dst
= xstrdup(ep
+ 1);
332 ep
= sp
+ strlen(sp
);
338 rs
[i
].src
= xstrndup(sp
, ep
- sp
);
343 struct remote
*remote_get(const char *name
)
349 name
= default_remote_name
;
350 ret
= make_remote(name
, 0);
351 if (name
[0] != '/') {
353 read_remotes_file(ret
);
355 read_branches_file(ret
);
361 ret
->fetch
= parse_ref_spec(ret
->fetch_refspec_nr
, ret
->fetch_refspec
);
362 ret
->push
= parse_ref_spec(ret
->push_refspec_nr
, ret
->push_refspec
);
366 int for_each_remote(each_remote_fn fn
, void *priv
)
370 for (i
= 0; i
< allocated_remotes
&& !result
; i
++) {
371 struct remote
*r
= remotes
[i
];
375 r
->fetch
= parse_ref_spec(r
->fetch_refspec_nr
,
378 r
->push
= parse_ref_spec(r
->push_refspec_nr
,
380 result
= fn(r
, priv
);
385 void ref_remove_duplicates(struct ref
*ref_map
)
389 for (; ref_map
; ref_map
= ref_map
->next
) {
390 if (!ref_map
->peer_ref
)
392 posn
= &ref_map
->next
;
394 if ((*posn
)->peer_ref
&&
395 !strcmp((*posn
)->peer_ref
->name
,
396 ref_map
->peer_ref
->name
)) {
397 if (strcmp((*posn
)->name
, ref_map
->name
))
398 die("%s tracks both %s and %s",
399 ref_map
->peer_ref
->name
,
400 (*posn
)->name
, ref_map
->name
);
401 next
= (*posn
)->next
;
402 free((*posn
)->peer_ref
);
406 posn
= &(*posn
)->next
;
412 int remote_has_url(struct remote
*remote
, const char *url
)
415 for (i
= 0; i
< remote
->url_nr
; i
++) {
416 if (!strcmp(remote
->url
[i
], url
))
423 * Returns true if, under the matching rules for fetching, name is the
424 * same as the given full name.
426 static int ref_matches_abbrev(const char *name
, const char *full
)
428 if (!prefixcmp(name
, "refs/") || !strcmp(name
, "HEAD"))
429 return !strcmp(name
, full
);
430 if (prefixcmp(full
, "refs/"))
432 if (!prefixcmp(name
, "heads/") ||
433 !prefixcmp(name
, "tags/") ||
434 !prefixcmp(name
, "remotes/"))
435 return !strcmp(name
, full
+ 5);
436 if (prefixcmp(full
+ 5, "heads/"))
438 return !strcmp(full
+ 11, name
);
441 int remote_find_tracking(struct remote
*remote
, struct refspec
*refspec
)
443 int find_src
= refspec
->src
== NULL
;
444 char *needle
, **result
;
449 return error("find_tracking: need either src or dst");
450 needle
= refspec
->dst
;
451 result
= &refspec
->src
;
453 needle
= refspec
->src
;
454 result
= &refspec
->dst
;
457 for (i
= 0; i
< remote
->fetch_refspec_nr
; i
++) {
458 struct refspec
*fetch
= &remote
->fetch
[i
];
459 const char *key
= find_src
? fetch
->dst
: fetch
->src
;
460 const char *value
= find_src
? fetch
->src
: fetch
->dst
;
463 if (fetch
->pattern
) {
464 if (!prefixcmp(needle
, key
)) {
465 *result
= xmalloc(strlen(value
) +
468 strcpy(*result
, value
);
469 strcpy(*result
+ strlen(value
),
470 needle
+ strlen(key
));
471 refspec
->force
= fetch
->force
;
474 } else if (!strcmp(needle
, key
)) {
475 *result
= xstrdup(value
);
476 refspec
->force
= fetch
->force
;
483 struct ref
*alloc_ref(unsigned namelen
)
485 struct ref
*ret
= xmalloc(sizeof(struct ref
) + namelen
);
486 memset(ret
, 0, sizeof(struct ref
) + namelen
);
490 static struct ref
*copy_ref(const struct ref
*ref
)
492 struct ref
*ret
= xmalloc(sizeof(struct ref
) + strlen(ref
->name
) + 1);
493 memcpy(ret
, ref
, sizeof(struct ref
) + strlen(ref
->name
) + 1);
498 struct ref
*copy_ref_list(const struct ref
*ref
)
500 struct ref
*ret
= NULL
;
501 struct ref
**tail
= &ret
;
503 *tail
= copy_ref(ref
);
505 tail
= &((*tail
)->next
);
510 void free_refs(struct ref
*ref
)
522 static int count_refspec_match(const char *pattern
,
524 struct ref
**matched_ref
)
526 int patlen
= strlen(pattern
);
527 struct ref
*matched_weak
= NULL
;
528 struct ref
*matched
= NULL
;
532 for (weak_match
= match
= 0; refs
; refs
= refs
->next
) {
533 char *name
= refs
->name
;
534 int namelen
= strlen(name
);
536 if (namelen
< patlen
||
537 memcmp(name
+ namelen
- patlen
, pattern
, patlen
))
539 if (namelen
!= patlen
&& name
[namelen
- patlen
- 1] != '/')
542 /* A match is "weak" if it is with refs outside
543 * heads or tags, and did not specify the pattern
544 * in full (e.g. "refs/remotes/origin/master") or at
545 * least from the toplevel (e.g. "remotes/origin/master");
546 * otherwise "git push $URL master" would result in
547 * ambiguity between remotes/origin/master and heads/master
548 * at the remote site.
550 if (namelen
!= patlen
&&
551 patlen
!= namelen
- 5 &&
552 prefixcmp(name
, "refs/heads/") &&
553 prefixcmp(name
, "refs/tags/")) {
554 /* We want to catch the case where only weak
555 * matches are found and there are multiple
556 * matches, and where more than one strong
557 * matches are found, as ambiguous. One
558 * strong match with zero or more weak matches
559 * are acceptable as a unique match.
570 *matched_ref
= matched_weak
;
574 *matched_ref
= matched
;
579 static void tail_link_ref(struct ref
*ref
, struct ref
***tail
)
587 static struct ref
*try_explicit_object_name(const char *name
)
589 unsigned char sha1
[20];
595 strcpy(ref
->name
, "(delete)");
596 hashclr(ref
->new_sha1
);
599 if (get_sha1(name
, sha1
))
601 len
= strlen(name
) + 1;
602 ref
= alloc_ref(len
);
603 memcpy(ref
->name
, name
, len
);
604 hashcpy(ref
->new_sha1
, sha1
);
608 static struct ref
*make_linked_ref(const char *name
, struct ref
***tail
)
613 len
= strlen(name
) + 1;
614 ret
= alloc_ref(len
);
615 memcpy(ret
->name
, name
, len
);
616 tail_link_ref(ret
, tail
);
620 static int match_explicit(struct ref
*src
, struct ref
*dst
,
621 struct ref
***dst_tail
,
625 struct ref
*matched_src
, *matched_dst
;
627 const char *dst_value
= rs
->dst
;
632 matched_src
= matched_dst
= NULL
;
633 switch (count_refspec_match(rs
->src
, src
, &matched_src
)) {
637 /* The source could be in the get_sha1() format
638 * not a reference name. :refs/other is a
639 * way to delete 'other' ref at the remote end.
641 matched_src
= try_explicit_object_name(rs
->src
);
643 error("src refspec %s does not match any.", rs
->src
);
647 error("src refspec %s matches more than one.", rs
->src
);
657 dst_value
= matched_src
->name
;
660 switch (count_refspec_match(dst_value
, dst
, &matched_dst
)) {
664 if (!memcmp(dst_value
, "refs/", 5))
665 matched_dst
= make_linked_ref(dst_value
, dst_tail
);
667 error("dst refspec %s does not match any "
668 "existing ref on the remote and does "
669 "not start with refs/.", dst_value
);
673 error("dst refspec %s matches more than one.",
677 if (errs
|| !matched_dst
)
679 if (matched_dst
->peer_ref
) {
681 error("dst ref %s receives from more than one src.",
685 matched_dst
->peer_ref
= matched_src
;
686 matched_dst
->force
= rs
->force
;
691 static int match_explicit_refs(struct ref
*src
, struct ref
*dst
,
692 struct ref
***dst_tail
, struct refspec
*rs
,
696 for (i
= errs
= 0; i
< rs_nr
; i
++)
697 errs
|= match_explicit(src
, dst
, dst_tail
, &rs
[i
], errs
);
701 static const struct refspec
*check_pattern_match(const struct refspec
*rs
,
703 const struct ref
*src
)
706 for (i
= 0; i
< rs_nr
; i
++) {
707 if (rs
[i
].pattern
&& !prefixcmp(src
->name
, rs
[i
].src
))
714 * Note. This is used only by "push"; refspec matching rules for
715 * push and fetch are subtly different, so do not try to reuse it
718 int match_refs(struct ref
*src
, struct ref
*dst
, struct ref
***dst_tail
,
719 int nr_refspec
, const char **refspec
, int flags
)
722 parse_ref_spec(nr_refspec
, (const char **) refspec
);
723 int send_all
= flags
& MATCH_REFS_ALL
;
724 int send_mirror
= flags
& MATCH_REFS_MIRROR
;
726 if (match_explicit_refs(src
, dst
, dst_tail
, rs
, nr_refspec
))
729 /* pick the remainder */
730 for ( ; src
; src
= src
->next
) {
731 struct ref
*dst_peer
;
732 const struct refspec
*pat
= NULL
;
737 pat
= check_pattern_match(rs
, nr_refspec
, src
);
741 else if (!send_mirror
&& prefixcmp(src
->name
, "refs/heads/"))
743 * "matching refs"; traditionally we pushed everything
744 * including refs outside refs/heads/ hierarchy, but
745 * that does not make much sense these days.
750 const char *dst_side
= pat
->dst
? pat
->dst
: pat
->src
;
751 dst_name
= xmalloc(strlen(dst_side
) +
753 strlen(pat
->src
) + 2);
754 strcpy(dst_name
, dst_side
);
755 strcat(dst_name
, src
->name
+ strlen(pat
->src
));
757 dst_name
= xstrdup(src
->name
);
758 dst_peer
= find_ref_by_name(dst
, dst_name
);
759 if (dst_peer
&& dst_peer
->peer_ref
)
760 /* We're already sending something to this ref. */
763 if (!dst_peer
&& !nr_refspec
&& !(send_all
|| send_mirror
))
765 * Remote doesn't have it, and we have no
766 * explicit pattern, and we don't have
767 * --all nor --mirror.
771 /* Create a new one and link it */
772 dst_peer
= make_linked_ref(dst_name
, dst_tail
);
773 hashcpy(dst_peer
->new_sha1
, src
->new_sha1
);
775 dst_peer
->peer_ref
= src
;
777 dst_peer
->force
= pat
->force
;
784 struct branch
*branch_get(const char *name
)
789 if (!name
|| !*name
|| !strcmp(name
, "HEAD"))
790 ret
= current_branch
;
792 ret
= make_branch(name
, 0);
793 if (ret
&& ret
->remote_name
) {
794 ret
->remote
= remote_get(ret
->remote_name
);
797 ret
->merge
= xcalloc(sizeof(*ret
->merge
),
799 for (i
= 0; i
< ret
->merge_nr
; i
++) {
800 ret
->merge
[i
] = xcalloc(1, sizeof(**ret
->merge
));
801 ret
->merge
[i
]->src
= xstrdup(ret
->merge_name
[i
]);
802 remote_find_tracking(ret
->remote
,
810 int branch_has_merge_config(struct branch
*branch
)
812 return branch
&& !!branch
->merge
;
815 int branch_merge_matches(struct branch
*branch
,
819 if (!branch
|| i
< 0 || i
>= branch
->merge_nr
)
821 return ref_matches_abbrev(branch
->merge
[i
]->src
, refname
);
824 static struct ref
*get_expanded_map(const struct ref
*remote_refs
,
825 const struct refspec
*refspec
)
827 const struct ref
*ref
;
828 struct ref
*ret
= NULL
;
829 struct ref
**tail
= &ret
;
831 int remote_prefix_len
= strlen(refspec
->src
);
832 int local_prefix_len
= strlen(refspec
->dst
);
834 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
835 if (strchr(ref
->name
, '^'))
836 continue; /* a dereference item */
837 if (!prefixcmp(ref
->name
, refspec
->src
)) {
839 struct ref
*cpy
= copy_ref(ref
);
840 match
= ref
->name
+ remote_prefix_len
;
842 cpy
->peer_ref
= alloc_ref(local_prefix_len
+
844 sprintf(cpy
->peer_ref
->name
, "%s%s",
845 refspec
->dst
, match
);
847 cpy
->peer_ref
->force
= 1;
856 static const struct ref
*find_ref_by_name_abbrev(const struct ref
*refs
, const char *name
)
858 const struct ref
*ref
;
859 for (ref
= refs
; ref
; ref
= ref
->next
) {
860 if (ref_matches_abbrev(name
, ref
->name
))
866 struct ref
*get_remote_ref(const struct ref
*remote_refs
, const char *name
)
868 const struct ref
*ref
= find_ref_by_name_abbrev(remote_refs
, name
);
873 return copy_ref(ref
);
876 static struct ref
*get_local_ref(const char *name
)
882 if (!prefixcmp(name
, "refs/")) {
883 ret
= alloc_ref(strlen(name
) + 1);
884 strcpy(ret
->name
, name
);
888 if (!prefixcmp(name
, "heads/") ||
889 !prefixcmp(name
, "tags/") ||
890 !prefixcmp(name
, "remotes/")) {
891 ret
= alloc_ref(strlen(name
) + 6);
892 sprintf(ret
->name
, "refs/%s", name
);
896 ret
= alloc_ref(strlen(name
) + 12);
897 sprintf(ret
->name
, "refs/heads/%s", name
);
901 int get_fetch_map(const struct ref
*remote_refs
,
902 const struct refspec
*refspec
,
906 struct ref
*ref_map
, *rm
;
908 if (refspec
->pattern
) {
909 ref_map
= get_expanded_map(remote_refs
, refspec
);
911 const char *name
= refspec
->src
[0] ? refspec
->src
: "HEAD";
913 ref_map
= get_remote_ref(remote_refs
, name
);
914 if (!missing_ok
&& !ref_map
)
915 die("Couldn't find remote ref %s", name
);
917 ref_map
->peer_ref
= get_local_ref(refspec
->dst
);
918 if (ref_map
->peer_ref
&& refspec
->force
)
919 ref_map
->peer_ref
->force
= 1;
923 for (rm
= ref_map
; rm
; rm
= rm
->next
) {
924 if (rm
->peer_ref
&& check_ref_format(rm
->peer_ref
->name
+ 5))
925 die("* refusing to create funny ref '%s' locally",
930 tail_link_ref(ref_map
, tail
);