9 #include "string-list.h"
11 static struct refspec s_tag_refspec
= {
19 const struct refspec
*tag_refspec
= &s_tag_refspec
;
21 struct counted_string
{
28 struct counted_string
*instead_of
;
33 struct rewrite
**rewrite
;
38 static struct remote
**remotes
;
39 static int remotes_alloc
;
40 static int remotes_nr
;
42 static struct branch
**branches
;
43 static int branches_alloc
;
44 static int branches_nr
;
46 static struct branch
*current_branch
;
47 static const char *default_remote_name
;
48 static int explicit_default_remote_name
;
50 static struct rewrites rewrites
;
51 static struct rewrites rewrites_push
;
53 #define BUF_SIZE (2048)
54 static char buffer
[BUF_SIZE
];
56 static const char *alias_url(const char *url
, struct rewrites
*r
)
60 struct counted_string
*longest
;
65 for (i
= 0; i
< r
->rewrite_nr
; i
++) {
68 for (j
= 0; j
< r
->rewrite
[i
]->instead_of_nr
; j
++) {
69 if (!prefixcmp(url
, r
->rewrite
[i
]->instead_of
[j
].s
) &&
71 longest
->len
< r
->rewrite
[i
]->instead_of
[j
].len
)) {
72 longest
= &(r
->rewrite
[i
]->instead_of
[j
]);
80 ret
= xmalloc(r
->rewrite
[longest_i
]->baselen
+
81 (strlen(url
) - longest
->len
) + 1);
82 strcpy(ret
, r
->rewrite
[longest_i
]->base
);
83 strcpy(ret
+ r
->rewrite
[longest_i
]->baselen
, url
+ longest
->len
);
87 static void add_push_refspec(struct remote
*remote
, const char *ref
)
89 ALLOC_GROW(remote
->push_refspec
,
90 remote
->push_refspec_nr
+ 1,
91 remote
->push_refspec_alloc
);
92 remote
->push_refspec
[remote
->push_refspec_nr
++] = ref
;
95 static void add_fetch_refspec(struct remote
*remote
, const char *ref
)
97 ALLOC_GROW(remote
->fetch_refspec
,
98 remote
->fetch_refspec_nr
+ 1,
99 remote
->fetch_refspec_alloc
);
100 remote
->fetch_refspec
[remote
->fetch_refspec_nr
++] = ref
;
103 static void add_url(struct remote
*remote
, const char *url
)
105 ALLOC_GROW(remote
->url
, remote
->url_nr
+ 1, remote
->url_alloc
);
106 remote
->url
[remote
->url_nr
++] = url
;
109 static void add_pushurl(struct remote
*remote
, const char *pushurl
)
111 ALLOC_GROW(remote
->pushurl
, remote
->pushurl_nr
+ 1, remote
->pushurl_alloc
);
112 remote
->pushurl
[remote
->pushurl_nr
++] = pushurl
;
115 static void add_pushurl_alias(struct remote
*remote
, const char *url
)
117 const char *pushurl
= alias_url(url
, &rewrites_push
);
119 add_pushurl(remote
, pushurl
);
122 static void add_url_alias(struct remote
*remote
, const char *url
)
124 add_url(remote
, alias_url(url
, &rewrites
));
125 add_pushurl_alias(remote
, url
);
128 static struct remote
*make_remote(const char *name
, int len
)
133 for (i
= 0; i
< remotes_nr
; i
++) {
134 if (len
? (!strncmp(name
, remotes
[i
]->name
, len
) &&
135 !remotes
[i
]->name
[len
]) :
136 !strcmp(name
, remotes
[i
]->name
))
140 ret
= xcalloc(1, sizeof(struct remote
));
141 ALLOC_GROW(remotes
, remotes_nr
+ 1, remotes_alloc
);
142 remotes
[remotes_nr
++] = ret
;
144 ret
->name
= xstrndup(name
, len
);
146 ret
->name
= xstrdup(name
);
150 static void add_merge(struct branch
*branch
, const char *name
)
152 ALLOC_GROW(branch
->merge_name
, branch
->merge_nr
+ 1,
153 branch
->merge_alloc
);
154 branch
->merge_name
[branch
->merge_nr
++] = name
;
157 static struct branch
*make_branch(const char *name
, int len
)
163 for (i
= 0; i
< branches_nr
; i
++) {
164 if (len
? (!strncmp(name
, branches
[i
]->name
, len
) &&
165 !branches
[i
]->name
[len
]) :
166 !strcmp(name
, branches
[i
]->name
))
170 ALLOC_GROW(branches
, branches_nr
+ 1, branches_alloc
);
171 ret
= xcalloc(1, sizeof(struct branch
));
172 branches
[branches_nr
++] = ret
;
174 ret
->name
= xstrndup(name
, len
);
176 ret
->name
= xstrdup(name
);
177 refname
= xmalloc(strlen(name
) + strlen("refs/heads/") + 1);
178 strcpy(refname
, "refs/heads/");
179 strcpy(refname
+ strlen("refs/heads/"), ret
->name
);
180 ret
->refname
= refname
;
185 static struct rewrite
*make_rewrite(struct rewrites
*r
, const char *base
, int len
)
190 for (i
= 0; i
< r
->rewrite_nr
; i
++) {
192 ? (len
== r
->rewrite
[i
]->baselen
&&
193 !strncmp(base
, r
->rewrite
[i
]->base
, len
))
194 : !strcmp(base
, r
->rewrite
[i
]->base
))
195 return r
->rewrite
[i
];
198 ALLOC_GROW(r
->rewrite
, r
->rewrite_nr
+ 1, r
->rewrite_alloc
);
199 ret
= xcalloc(1, sizeof(struct rewrite
));
200 r
->rewrite
[r
->rewrite_nr
++] = ret
;
202 ret
->base
= xstrndup(base
, len
);
206 ret
->base
= xstrdup(base
);
207 ret
->baselen
= strlen(base
);
212 static void add_instead_of(struct rewrite
*rewrite
, const char *instead_of
)
214 ALLOC_GROW(rewrite
->instead_of
, rewrite
->instead_of_nr
+ 1, rewrite
->instead_of_alloc
);
215 rewrite
->instead_of
[rewrite
->instead_of_nr
].s
= instead_of
;
216 rewrite
->instead_of
[rewrite
->instead_of_nr
].len
= strlen(instead_of
);
217 rewrite
->instead_of_nr
++;
220 static void read_remotes_file(struct remote
*remote
)
222 FILE *f
= fopen(git_path("remotes/%s", remote
->name
), "r");
226 remote
->origin
= REMOTE_REMOTES
;
227 while (fgets(buffer
, BUF_SIZE
, f
)) {
231 if (!prefixcmp(buffer
, "URL:")) {
234 } else if (!prefixcmp(buffer
, "Push:")) {
237 } else if (!prefixcmp(buffer
, "Pull:")) {
249 while (isspace(p
[-1]))
252 switch (value_list
) {
254 add_url_alias(remote
, xstrdup(s
));
257 add_push_refspec(remote
, xstrdup(s
));
260 add_fetch_refspec(remote
, xstrdup(s
));
267 static void read_branches_file(struct remote
*remote
)
269 const char *slash
= strchr(remote
->name
, '/');
271 struct strbuf branch
= STRBUF_INIT
;
272 int n
= slash
? slash
- remote
->name
: 1000;
273 FILE *f
= fopen(git_path("branches/%.*s", n
, remote
->name
), "r");
279 s
= fgets(buffer
, BUF_SIZE
, f
);
287 remote
->origin
= REMOTE_BRANCHES
;
289 while (isspace(p
[-1]))
293 len
+= strlen(slash
);
294 p
= xmalloc(len
+ 1);
300 * With "slash", e.g. "git fetch jgarzik/netdev-2.6" when
301 * reading from $GIT_DIR/branches/jgarzik fetches "HEAD" from
302 * the partial URL obtained from the branches file plus
303 * "/netdev-2.6" and does not store it in any tracking ref.
304 * #branch specifier in the file is ignored.
306 * Otherwise, the branches file would have URL and optionally
307 * #branch specified. The "master" (or specified) branch is
308 * fetched and stored in the local branch of the same name.
310 frag
= strchr(p
, '#');
313 strbuf_addf(&branch
, "refs/heads/%s", frag
);
315 strbuf_addstr(&branch
, "refs/heads/master");
317 strbuf_addf(&branch
, ":refs/heads/%s", remote
->name
);
319 strbuf_reset(&branch
);
320 strbuf_addstr(&branch
, "HEAD:");
322 add_url_alias(remote
, p
);
323 add_fetch_refspec(remote
, strbuf_detach(&branch
, NULL
));
325 * Cogito compatible push: push current HEAD to remote #branch
326 * (master if missing)
328 strbuf_init(&branch
, 0);
329 strbuf_addstr(&branch
, "HEAD");
331 strbuf_addf(&branch
, ":refs/heads/%s", frag
);
333 strbuf_addstr(&branch
, ":refs/heads/master");
334 add_push_refspec(remote
, strbuf_detach(&branch
, NULL
));
335 remote
->fetch_tags
= 1; /* always auto-follow */
338 static int handle_config(const char *key
, const char *value
, void *cb
)
342 struct remote
*remote
;
343 struct branch
*branch
;
344 if (!prefixcmp(key
, "branch.")) {
346 subkey
= strrchr(name
, '.');
349 branch
= make_branch(name
, subkey
- name
);
350 if (!strcmp(subkey
, ".remote")) {
352 return config_error_nonbool(key
);
353 branch
->remote_name
= xstrdup(value
);
354 if (branch
== current_branch
) {
355 default_remote_name
= branch
->remote_name
;
356 explicit_default_remote_name
= 1;
358 } else if (!strcmp(subkey
, ".merge")) {
360 return config_error_nonbool(key
);
361 add_merge(branch
, xstrdup(value
));
365 if (!prefixcmp(key
, "url.")) {
366 struct rewrite
*rewrite
;
368 subkey
= strrchr(name
, '.');
371 if (!strcmp(subkey
, ".insteadof")) {
372 rewrite
= make_rewrite(&rewrites
, name
, subkey
- name
);
374 return config_error_nonbool(key
);
375 add_instead_of(rewrite
, xstrdup(value
));
376 } else if (!strcmp(subkey
, ".pushinsteadof")) {
377 rewrite
= make_rewrite(&rewrites_push
, name
, subkey
- name
);
379 return config_error_nonbool(key
);
380 add_instead_of(rewrite
, xstrdup(value
));
383 if (prefixcmp(key
, "remote."))
387 warning("Config remote shorthand cannot begin with '/': %s",
391 subkey
= strrchr(name
, '.');
394 remote
= make_remote(name
, subkey
- name
);
395 remote
->origin
= REMOTE_CONFIG
;
396 if (!strcmp(subkey
, ".mirror"))
397 remote
->mirror
= git_config_bool(key
, value
);
398 else if (!strcmp(subkey
, ".skipdefaultupdate"))
399 remote
->skip_default_update
= git_config_bool(key
, value
);
401 else if (!strcmp(subkey
, ".url")) {
403 if (git_config_string(&v
, key
, value
))
406 } else if (!strcmp(subkey
, ".pushurl")) {
408 if (git_config_string(&v
, key
, value
))
410 add_pushurl(remote
, v
);
411 } else if (!strcmp(subkey
, ".push")) {
413 if (git_config_string(&v
, key
, value
))
415 add_push_refspec(remote
, v
);
416 } else if (!strcmp(subkey
, ".fetch")) {
418 if (git_config_string(&v
, key
, value
))
420 add_fetch_refspec(remote
, v
);
421 } else if (!strcmp(subkey
, ".receivepack")) {
423 if (git_config_string(&v
, key
, value
))
425 if (!remote
->receivepack
)
426 remote
->receivepack
= v
;
428 error("more than one receivepack given, using the first");
429 } else if (!strcmp(subkey
, ".uploadpack")) {
431 if (git_config_string(&v
, key
, value
))
433 if (!remote
->uploadpack
)
434 remote
->uploadpack
= v
;
436 error("more than one uploadpack given, using the first");
437 } else if (!strcmp(subkey
, ".tagopt")) {
438 if (!strcmp(value
, "--no-tags"))
439 remote
->fetch_tags
= -1;
440 } else if (!strcmp(subkey
, ".proxy")) {
441 return git_config_string((const char **)&remote
->http_proxy
,
447 static void alias_all_urls(void)
450 for (i
= 0; i
< remotes_nr
; i
++) {
451 int add_pushurl_aliases
;
454 for (j
= 0; j
< remotes
[i
]->pushurl_nr
; j
++) {
455 remotes
[i
]->pushurl
[j
] = alias_url(remotes
[i
]->pushurl
[j
], &rewrites
);
457 add_pushurl_aliases
= remotes
[i
]->pushurl_nr
== 0;
458 for (j
= 0; j
< remotes
[i
]->url_nr
; j
++) {
459 if (add_pushurl_aliases
)
460 add_pushurl_alias(remotes
[i
], remotes
[i
]->url
[j
]);
461 remotes
[i
]->url
[j
] = alias_url(remotes
[i
]->url
[j
], &rewrites
);
466 static void read_config(void)
468 unsigned char sha1
[20];
469 const char *head_ref
;
471 if (default_remote_name
) // did this already
473 default_remote_name
= xstrdup("origin");
474 current_branch
= NULL
;
475 head_ref
= resolve_ref("HEAD", sha1
, 0, &flag
);
476 if (head_ref
&& (flag
& REF_ISSYMREF
) &&
477 !prefixcmp(head_ref
, "refs/heads/")) {
479 make_branch(head_ref
+ strlen("refs/heads/"), 0);
481 git_config(handle_config
, NULL
);
486 * We need to make sure the tracking branches are well formed, but a
487 * wildcard refspec in "struct refspec" must have a trailing slash. We
488 * temporarily drop the trailing '/' while calling check_ref_format(),
489 * and put it back. The caller knows that a CHECK_REF_FORMAT_ONELEVEL
490 * error return is Ok for a wildcard refspec.
492 static int verify_refname(char *name
, int is_glob
)
496 result
= check_ref_format(name
);
497 if (is_glob
&& result
== CHECK_REF_FORMAT_WILDCARD
)
498 result
= CHECK_REF_FORMAT_OK
;
503 * This function frees a refspec array.
504 * Warning: code paths should be checked to ensure that the src
505 * and dst pointers are always freeable pointers as well
506 * as the refspec pointer itself.
508 static void free_refspecs(struct refspec
*refspec
, int nr_refspec
)
515 for (i
= 0; i
< nr_refspec
; i
++) {
516 free(refspec
[i
].src
);
517 free(refspec
[i
].dst
);
522 static struct refspec
*parse_refspec_internal(int nr_refspec
, const char **refspec
, int fetch
, int verify
)
526 struct refspec
*rs
= xcalloc(sizeof(*rs
), nr_refspec
);
528 for (i
= 0; i
< nr_refspec
; i
++) {
531 const char *lhs
, *rhs
;
541 rhs
= strrchr(lhs
, ':');
544 * Before going on, special case ":" (or "+:") as a refspec
547 if (!fetch
&& rhs
== lhs
&& rhs
[1] == '\0') {
553 size_t rlen
= strlen(++rhs
);
554 is_glob
= (1 <= rlen
&& strchr(rhs
, '*'));
555 rs
[i
].dst
= xstrndup(rhs
, rlen
);
558 llen
= (rhs
? (rhs
- lhs
- 1) : strlen(lhs
));
559 if (1 <= llen
&& memchr(lhs
, '*', llen
)) {
560 if ((rhs
&& !is_glob
) || (!rhs
&& fetch
))
563 } else if (rhs
&& is_glob
) {
567 rs
[i
].pattern
= is_glob
;
568 rs
[i
].src
= xstrndup(lhs
, llen
);
573 * - empty is allowed; it means HEAD.
574 * - otherwise it must be a valid looking ref.
579 st
= verify_refname(rs
[i
].src
, is_glob
);
580 if (st
&& st
!= CHECK_REF_FORMAT_ONELEVEL
)
585 * - missing is ok, and is same as empty.
586 * - empty is ok; it means not to store.
587 * - otherwise it must be a valid looking ref.
591 } else if (!*rs
[i
].dst
) {
594 st
= verify_refname(rs
[i
].dst
, is_glob
);
595 if (st
&& st
!= CHECK_REF_FORMAT_ONELEVEL
)
601 * - empty is allowed; it means delete.
602 * - when wildcarded, it must be a valid looking ref.
603 * - otherwise, it must be an extended SHA-1, but
604 * there is no existing way to validate this.
609 st
= verify_refname(rs
[i
].src
, is_glob
);
610 if (st
&& st
!= CHECK_REF_FORMAT_ONELEVEL
)
614 ; /* anything goes, for now */
617 * - missing is allowed, but LHS then must be a
619 * - empty is not allowed.
620 * - otherwise it must be a valid looking ref.
623 st
= verify_refname(rs
[i
].src
, is_glob
);
624 if (st
&& st
!= CHECK_REF_FORMAT_ONELEVEL
)
626 } else if (!*rs
[i
].dst
) {
629 st
= verify_refname(rs
[i
].dst
, is_glob
);
630 if (st
&& st
!= CHECK_REF_FORMAT_ONELEVEL
)
640 * nr_refspec must be greater than zero and i must be valid
641 * since it is only possible to reach this point from within
642 * the for loop above.
644 free_refspecs(rs
, i
+1);
647 die("Invalid refspec '%s'", refspec
[i
]);
650 int valid_fetch_refspec(const char *fetch_refspec_str
)
652 const char *fetch_refspec
[] = { fetch_refspec_str
};
653 struct refspec
*refspec
;
655 refspec
= parse_refspec_internal(1, fetch_refspec
, 1, 1);
656 free_refspecs(refspec
, 1);
660 struct refspec
*parse_fetch_refspec(int nr_refspec
, const char **refspec
)
662 return parse_refspec_internal(nr_refspec
, refspec
, 1, 0);
665 static struct refspec
*parse_push_refspec(int nr_refspec
, const char **refspec
)
667 return parse_refspec_internal(nr_refspec
, refspec
, 0, 0);
670 static int valid_remote_nick(const char *name
)
672 if (!name
[0] || is_dot_or_dotdot(name
))
674 return !strchr(name
, '/'); /* no slash */
677 struct remote
*remote_get(const char *name
)
686 name
= default_remote_name
;
687 name_given
= explicit_default_remote_name
;
690 ret
= make_remote(name
, 0);
691 if (valid_remote_nick(name
)) {
693 read_remotes_file(ret
);
695 read_branches_file(ret
);
697 if (name_given
&& !ret
->url
)
698 add_url_alias(ret
, name
);
701 ret
->fetch
= parse_fetch_refspec(ret
->fetch_refspec_nr
, ret
->fetch_refspec
);
702 ret
->push
= parse_push_refspec(ret
->push_refspec_nr
, ret
->push_refspec
);
706 int remote_is_configured(const char *name
)
711 for (i
= 0; i
< remotes_nr
; i
++)
712 if (!strcmp(name
, remotes
[i
]->name
))
717 int for_each_remote(each_remote_fn fn
, void *priv
)
721 for (i
= 0; i
< remotes_nr
&& !result
; i
++) {
722 struct remote
*r
= remotes
[i
];
726 r
->fetch
= parse_fetch_refspec(r
->fetch_refspec_nr
,
729 r
->push
= parse_push_refspec(r
->push_refspec_nr
,
731 result
= fn(r
, priv
);
736 void ref_remove_duplicates(struct ref
*ref_map
)
738 struct string_list refs
= { NULL
, 0, 0, 0 };
739 struct string_list_item
*item
= NULL
;
740 struct ref
*prev
= NULL
, *next
= NULL
;
741 for (; ref_map
; prev
= ref_map
, ref_map
= next
) {
742 next
= ref_map
->next
;
743 if (!ref_map
->peer_ref
)
746 item
= string_list_lookup(ref_map
->peer_ref
->name
, &refs
);
748 if (strcmp(((struct ref
*)item
->util
)->name
,
750 die("%s tracks both %s and %s",
751 ref_map
->peer_ref
->name
,
752 ((struct ref
*)item
->util
)->name
,
754 prev
->next
= ref_map
->next
;
755 free(ref_map
->peer_ref
);
759 item
= string_list_insert(ref_map
->peer_ref
->name
, &refs
);
760 item
->util
= ref_map
;
762 string_list_clear(&refs
, 0);
765 int remote_has_url(struct remote
*remote
, const char *url
)
768 for (i
= 0; i
< remote
->url_nr
; i
++) {
769 if (!strcmp(remote
->url
[i
], url
))
775 static int match_name_with_pattern(const char *key
, const char *name
,
776 const char *value
, char **result
)
778 const char *kstar
= strchr(key
, '*');
784 die("Key '%s' of pattern had no '*'", key
);
786 ksuffixlen
= strlen(kstar
+ 1);
787 namelen
= strlen(name
);
788 ret
= !strncmp(name
, key
, klen
) && namelen
>= klen
+ ksuffixlen
&&
789 !memcmp(name
+ namelen
- ksuffixlen
, kstar
+ 1, ksuffixlen
);
791 const char *vstar
= strchr(value
, '*');
795 die("Value '%s' of pattern has no '*'", value
);
796 vlen
= vstar
- value
;
797 vsuffixlen
= strlen(vstar
+ 1);
798 *result
= xmalloc(vlen
+ vsuffixlen
+
800 klen
- ksuffixlen
+ 1);
801 strncpy(*result
, value
, vlen
);
802 strncpy(*result
+ vlen
,
803 name
+ klen
, namelen
- klen
- ksuffixlen
);
804 strcpy(*result
+ vlen
+ namelen
- klen
- ksuffixlen
,
810 int remote_find_tracking(struct remote
*remote
, struct refspec
*refspec
)
812 int find_src
= refspec
->src
== NULL
;
813 char *needle
, **result
;
818 return error("find_tracking: need either src or dst");
819 needle
= refspec
->dst
;
820 result
= &refspec
->src
;
822 needle
= refspec
->src
;
823 result
= &refspec
->dst
;
826 for (i
= 0; i
< remote
->fetch_refspec_nr
; i
++) {
827 struct refspec
*fetch
= &remote
->fetch
[i
];
828 const char *key
= find_src
? fetch
->dst
: fetch
->src
;
829 const char *value
= find_src
? fetch
->src
: fetch
->dst
;
832 if (fetch
->pattern
) {
833 if (match_name_with_pattern(key
, needle
, value
, result
)) {
834 refspec
->force
= fetch
->force
;
837 } else if (!strcmp(needle
, key
)) {
838 *result
= xstrdup(value
);
839 refspec
->force
= fetch
->force
;
846 static struct ref
*alloc_ref_with_prefix(const char *prefix
, size_t prefixlen
,
849 size_t len
= strlen(name
);
850 struct ref
*ref
= xcalloc(1, sizeof(struct ref
) + prefixlen
+ len
+ 1);
851 memcpy(ref
->name
, prefix
, prefixlen
);
852 memcpy(ref
->name
+ prefixlen
, name
, len
);
856 struct ref
*alloc_ref(const char *name
)
858 return alloc_ref_with_prefix("", 0, name
);
861 static struct ref
*copy_ref(const struct ref
*ref
)
867 len
= strlen(ref
->name
);
868 cpy
= xmalloc(sizeof(struct ref
) + len
+ 1);
869 memcpy(cpy
, ref
, sizeof(struct ref
) + len
+ 1);
871 cpy
->symref
= ref
->symref
? xstrdup(ref
->symref
) : NULL
;
872 cpy
->remote_status
= ref
->remote_status
? xstrdup(ref
->remote_status
) : NULL
;
873 cpy
->peer_ref
= copy_ref(ref
->peer_ref
);
877 struct ref
*copy_ref_list(const struct ref
*ref
)
879 struct ref
*ret
= NULL
;
880 struct ref
**tail
= &ret
;
882 *tail
= copy_ref(ref
);
884 tail
= &((*tail
)->next
);
889 static void free_ref(struct ref
*ref
)
893 free_ref(ref
->peer_ref
);
894 free(ref
->remote_status
);
899 void free_refs(struct ref
*ref
)
909 static int count_refspec_match(const char *pattern
,
911 struct ref
**matched_ref
)
913 int patlen
= strlen(pattern
);
914 struct ref
*matched_weak
= NULL
;
915 struct ref
*matched
= NULL
;
919 for (weak_match
= match
= 0; refs
; refs
= refs
->next
) {
920 char *name
= refs
->name
;
921 int namelen
= strlen(name
);
923 if (!refname_match(pattern
, name
, ref_rev_parse_rules
))
926 /* A match is "weak" if it is with refs outside
927 * heads or tags, and did not specify the pattern
928 * in full (e.g. "refs/remotes/origin/master") or at
929 * least from the toplevel (e.g. "remotes/origin/master");
930 * otherwise "git push $URL master" would result in
931 * ambiguity between remotes/origin/master and heads/master
932 * at the remote site.
934 if (namelen
!= patlen
&&
935 patlen
!= namelen
- 5 &&
936 prefixcmp(name
, "refs/heads/") &&
937 prefixcmp(name
, "refs/tags/")) {
938 /* We want to catch the case where only weak
939 * matches are found and there are multiple
940 * matches, and where more than one strong
941 * matches are found, as ambiguous. One
942 * strong match with zero or more weak matches
943 * are acceptable as a unique match.
954 *matched_ref
= matched_weak
;
958 *matched_ref
= matched
;
963 static void tail_link_ref(struct ref
*ref
, struct ref
***tail
)
971 static struct ref
*try_explicit_object_name(const char *name
)
973 unsigned char sha1
[20];
977 ref
= alloc_ref("(delete)");
978 hashclr(ref
->new_sha1
);
981 if (get_sha1(name
, sha1
))
983 ref
= alloc_ref(name
);
984 hashcpy(ref
->new_sha1
, sha1
);
988 static struct ref
*make_linked_ref(const char *name
, struct ref
***tail
)
990 struct ref
*ret
= alloc_ref(name
);
991 tail_link_ref(ret
, tail
);
995 static char *guess_ref(const char *name
, struct ref
*peer
)
997 struct strbuf buf
= STRBUF_INIT
;
998 unsigned char sha1
[20];
1000 const char *r
= resolve_ref(peer
->name
, sha1
, 1, NULL
);
1004 if (!prefixcmp(r
, "refs/heads/"))
1005 strbuf_addstr(&buf
, "refs/heads/");
1006 else if (!prefixcmp(r
, "refs/tags/"))
1007 strbuf_addstr(&buf
, "refs/tags/");
1011 strbuf_addstr(&buf
, name
);
1012 return strbuf_detach(&buf
, NULL
);
1015 static int match_explicit(struct ref
*src
, struct ref
*dst
,
1016 struct ref
***dst_tail
,
1019 struct ref
*matched_src
, *matched_dst
;
1022 const char *dst_value
= rs
->dst
;
1025 if (rs
->pattern
|| rs
->matching
)
1028 matched_src
= matched_dst
= NULL
;
1029 switch (count_refspec_match(rs
->src
, src
, &matched_src
)) {
1034 /* The source could be in the get_sha1() format
1035 * not a reference name. :refs/other is a
1036 * way to delete 'other' ref at the remote end.
1038 matched_src
= try_explicit_object_name(rs
->src
);
1040 return error("src refspec %s does not match any.", rs
->src
);
1044 return error("src refspec %s matches more than one.", rs
->src
);
1048 unsigned char sha1
[20];
1051 dst_value
= resolve_ref(matched_src
->name
, sha1
, 1, &flag
);
1053 ((flag
& REF_ISSYMREF
) &&
1054 prefixcmp(dst_value
, "refs/heads/")))
1055 die("%s cannot be resolved to branch.",
1059 switch (count_refspec_match(dst_value
, dst
, &matched_dst
)) {
1063 if (!memcmp(dst_value
, "refs/", 5))
1064 matched_dst
= make_linked_ref(dst_value
, dst_tail
);
1065 else if ((dst_guess
= guess_ref(dst_value
, matched_src
)))
1066 matched_dst
= make_linked_ref(dst_guess
, dst_tail
);
1068 error("unable to push to unqualified destination: %s\n"
1069 "The destination refspec neither matches an "
1070 "existing ref on the remote nor\n"
1071 "begins with refs/, and we are unable to "
1072 "guess a prefix based on the source ref.",
1077 error("dst refspec %s matches more than one.",
1083 if (matched_dst
->peer_ref
)
1084 return error("dst ref %s receives from more than one src.",
1087 matched_dst
->peer_ref
= copy_src
? copy_ref(matched_src
) : matched_src
;
1088 matched_dst
->force
= rs
->force
;
1093 static int match_explicit_refs(struct ref
*src
, struct ref
*dst
,
1094 struct ref
***dst_tail
, struct refspec
*rs
,
1098 for (i
= errs
= 0; i
< rs_nr
; i
++)
1099 errs
+= match_explicit(src
, dst
, dst_tail
, &rs
[i
]);
1103 static const struct refspec
*check_pattern_match(const struct refspec
*rs
,
1105 const struct ref
*src
)
1108 int matching_refs
= -1;
1109 for (i
= 0; i
< rs_nr
; i
++) {
1110 if (rs
[i
].matching
&&
1111 (matching_refs
== -1 || rs
[i
].force
)) {
1116 if (rs
[i
].pattern
&& match_name_with_pattern(rs
[i
].src
, src
->name
,
1120 if (matching_refs
!= -1)
1121 return rs
+ matching_refs
;
1126 static struct ref
**tail_ref(struct ref
**head
)
1128 struct ref
**tail
= head
;
1130 tail
= &((*tail
)->next
);
1135 * Note. This is used only by "push"; refspec matching rules for
1136 * push and fetch are subtly different, so do not try to reuse it
1139 int match_refs(struct ref
*src
, struct ref
**dst
,
1140 int nr_refspec
, const char **refspec
, int flags
)
1143 int send_all
= flags
& MATCH_REFS_ALL
;
1144 int send_mirror
= flags
& MATCH_REFS_MIRROR
;
1146 static const char *default_refspec
[] = { ":", NULL
};
1147 struct ref
**dst_tail
= tail_ref(dst
);
1151 refspec
= default_refspec
;
1153 rs
= parse_push_refspec(nr_refspec
, (const char **) refspec
);
1154 errs
= match_explicit_refs(src
, *dst
, &dst_tail
, rs
, nr_refspec
);
1156 /* pick the remainder */
1157 for ( ; src
; src
= src
->next
) {
1158 struct ref
*dst_peer
;
1159 const struct refspec
*pat
= NULL
;
1164 pat
= check_pattern_match(rs
, nr_refspec
, src
);
1168 if (pat
->matching
) {
1170 * "matching refs"; traditionally we pushed everything
1171 * including refs outside refs/heads/ hierarchy, but
1172 * that does not make much sense these days.
1174 if (!send_mirror
&& prefixcmp(src
->name
, "refs/heads/"))
1176 dst_name
= xstrdup(src
->name
);
1179 const char *dst_side
= pat
->dst
? pat
->dst
: pat
->src
;
1180 if (!match_name_with_pattern(pat
->src
, src
->name
,
1181 dst_side
, &dst_name
))
1182 die("Didn't think it matches any more");
1184 dst_peer
= find_ref_by_name(*dst
, dst_name
);
1186 if (dst_peer
->peer_ref
)
1187 /* We're already sending something to this ref. */
1191 if (pat
->matching
&& !(send_all
|| send_mirror
))
1193 * Remote doesn't have it, and we have no
1194 * explicit pattern, and we don't have
1195 * --all nor --mirror.
1199 /* Create a new one and link it */
1200 dst_peer
= make_linked_ref(dst_name
, &dst_tail
);
1201 hashcpy(dst_peer
->new_sha1
, src
->new_sha1
);
1203 dst_peer
->peer_ref
= copy_ref(src
);
1204 dst_peer
->force
= pat
->force
;
1213 struct branch
*branch_get(const char *name
)
1218 if (!name
|| !*name
|| !strcmp(name
, "HEAD"))
1219 ret
= current_branch
;
1221 ret
= make_branch(name
, 0);
1222 if (ret
&& ret
->remote_name
) {
1223 ret
->remote
= remote_get(ret
->remote_name
);
1224 if (ret
->merge_nr
) {
1226 ret
->merge
= xcalloc(sizeof(*ret
->merge
),
1228 for (i
= 0; i
< ret
->merge_nr
; i
++) {
1229 ret
->merge
[i
] = xcalloc(1, sizeof(**ret
->merge
));
1230 ret
->merge
[i
]->src
= xstrdup(ret
->merge_name
[i
]);
1231 if (remote_find_tracking(ret
->remote
, ret
->merge
[i
])
1232 && !strcmp(ret
->remote_name
, "."))
1233 ret
->merge
[i
]->dst
= xstrdup(ret
->merge_name
[i
]);
1240 int branch_has_merge_config(struct branch
*branch
)
1242 return branch
&& !!branch
->merge
;
1245 int branch_merge_matches(struct branch
*branch
,
1247 const char *refname
)
1249 if (!branch
|| i
< 0 || i
>= branch
->merge_nr
)
1251 return refname_match(branch
->merge
[i
]->src
, refname
, ref_fetch_rules
);
1254 static struct ref
*get_expanded_map(const struct ref
*remote_refs
,
1255 const struct refspec
*refspec
)
1257 const struct ref
*ref
;
1258 struct ref
*ret
= NULL
;
1259 struct ref
**tail
= &ret
;
1263 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
1264 if (strchr(ref
->name
, '^'))
1265 continue; /* a dereference item */
1266 if (match_name_with_pattern(refspec
->src
, ref
->name
,
1267 refspec
->dst
, &expn_name
)) {
1268 struct ref
*cpy
= copy_ref(ref
);
1270 cpy
->peer_ref
= alloc_ref(expn_name
);
1273 cpy
->peer_ref
->force
= 1;
1282 static const struct ref
*find_ref_by_name_abbrev(const struct ref
*refs
, const char *name
)
1284 const struct ref
*ref
;
1285 for (ref
= refs
; ref
; ref
= ref
->next
) {
1286 if (refname_match(name
, ref
->name
, ref_fetch_rules
))
1292 struct ref
*get_remote_ref(const struct ref
*remote_refs
, const char *name
)
1294 const struct ref
*ref
= find_ref_by_name_abbrev(remote_refs
, name
);
1299 return copy_ref(ref
);
1302 static struct ref
*get_local_ref(const char *name
)
1304 if (!name
|| name
[0] == '\0')
1307 if (!prefixcmp(name
, "refs/"))
1308 return alloc_ref(name
);
1310 if (!prefixcmp(name
, "heads/") ||
1311 !prefixcmp(name
, "tags/") ||
1312 !prefixcmp(name
, "remotes/"))
1313 return alloc_ref_with_prefix("refs/", 5, name
);
1315 return alloc_ref_with_prefix("refs/heads/", 11, name
);
1318 int get_fetch_map(const struct ref
*remote_refs
,
1319 const struct refspec
*refspec
,
1323 struct ref
*ref_map
, **rmp
;
1325 if (refspec
->pattern
) {
1326 ref_map
= get_expanded_map(remote_refs
, refspec
);
1328 const char *name
= refspec
->src
[0] ? refspec
->src
: "HEAD";
1330 ref_map
= get_remote_ref(remote_refs
, name
);
1331 if (!missing_ok
&& !ref_map
)
1332 die("Couldn't find remote ref %s", name
);
1334 ref_map
->peer_ref
= get_local_ref(refspec
->dst
);
1335 if (ref_map
->peer_ref
&& refspec
->force
)
1336 ref_map
->peer_ref
->force
= 1;
1340 for (rmp
= &ref_map
; *rmp
; ) {
1341 if ((*rmp
)->peer_ref
) {
1342 int st
= check_ref_format((*rmp
)->peer_ref
->name
+ 5);
1343 if (st
&& st
!= CHECK_REF_FORMAT_ONELEVEL
) {
1344 struct ref
*ignore
= *rmp
;
1345 error("* Ignoring funny ref '%s' locally",
1346 (*rmp
)->peer_ref
->name
);
1347 *rmp
= (*rmp
)->next
;
1348 free(ignore
->peer_ref
);
1353 rmp
= &((*rmp
)->next
);
1357 tail_link_ref(ref_map
, tail
);
1362 int resolve_remote_symref(struct ref
*ref
, struct ref
*list
)
1366 for (; list
; list
= list
->next
)
1367 if (!strcmp(ref
->symref
, list
->name
)) {
1368 hashcpy(ref
->old_sha1
, list
->old_sha1
);
1374 static void unmark_and_free(struct commit_list
*list
, unsigned int mark
)
1377 struct commit_list
*temp
= list
;
1378 temp
->item
->object
.flags
&= ~mark
;
1384 int ref_newer(const unsigned char *new_sha1
, const unsigned char *old_sha1
)
1387 struct commit
*old
, *new;
1388 struct commit_list
*list
, *used
;
1391 /* Both new and old must be commit-ish and new is descendant of
1392 * old. Otherwise we require --force.
1394 o
= deref_tag(parse_object(old_sha1
), NULL
, 0);
1395 if (!o
|| o
->type
!= OBJ_COMMIT
)
1397 old
= (struct commit
*) o
;
1399 o
= deref_tag(parse_object(new_sha1
), NULL
, 0);
1400 if (!o
|| o
->type
!= OBJ_COMMIT
)
1402 new = (struct commit
*) o
;
1404 if (parse_commit(new) < 0)
1408 commit_list_insert(new, &list
);
1410 new = pop_most_recent_commit(&list
, TMP_MARK
);
1411 commit_list_insert(new, &used
);
1417 unmark_and_free(list
, TMP_MARK
);
1418 unmark_and_free(used
, TMP_MARK
);
1423 * Return true if there is anything to report, otherwise false.
1425 int stat_tracking_info(struct branch
*branch
, int *num_ours
, int *num_theirs
)
1427 unsigned char sha1
[20];
1428 struct commit
*ours
, *theirs
;
1430 struct rev_info revs
;
1431 const char *rev_argv
[10], *base
;
1435 * Nothing to report unless we are marked to build on top of
1439 !branch
->merge
|| !branch
->merge
[0] || !branch
->merge
[0]->dst
)
1443 * If what we used to build on no longer exists, there is
1444 * nothing to report.
1446 base
= branch
->merge
[0]->dst
;
1447 if (!resolve_ref(base
, sha1
, 1, NULL
))
1449 theirs
= lookup_commit_reference(sha1
);
1453 if (!resolve_ref(branch
->refname
, sha1
, 1, NULL
))
1455 ours
= lookup_commit_reference(sha1
);
1459 /* are we the same? */
1463 /* Run "rev-list --left-right ours...theirs" internally... */
1465 rev_argv
[rev_argc
++] = NULL
;
1466 rev_argv
[rev_argc
++] = "--left-right";
1467 rev_argv
[rev_argc
++] = symmetric
;
1468 rev_argv
[rev_argc
++] = "--";
1469 rev_argv
[rev_argc
] = NULL
;
1471 strcpy(symmetric
, sha1_to_hex(ours
->object
.sha1
));
1472 strcpy(symmetric
+ 40, "...");
1473 strcpy(symmetric
+ 43, sha1_to_hex(theirs
->object
.sha1
));
1475 init_revisions(&revs
, NULL
);
1476 setup_revisions(rev_argc
, rev_argv
, &revs
, NULL
);
1477 prepare_revision_walk(&revs
);
1479 /* ... and count the commits on each side. */
1483 struct commit
*c
= get_revision(&revs
);
1486 if (c
->object
.flags
& SYMMETRIC_LEFT
)
1492 /* clear object flags smudged by the above traversal */
1493 clear_commit_marks(ours
, ALL_REV_FLAGS
);
1494 clear_commit_marks(theirs
, ALL_REV_FLAGS
);
1499 * Return true when there is anything to report, otherwise false.
1501 int format_tracking_info(struct branch
*branch
, struct strbuf
*sb
)
1503 int num_ours
, num_theirs
;
1506 if (!stat_tracking_info(branch
, &num_ours
, &num_theirs
))
1509 base
= branch
->merge
[0]->dst
;
1510 base
= shorten_unambiguous_ref(base
, 0);
1512 strbuf_addf(sb
, "Your branch is ahead of '%s' "
1513 "by %d commit%s.\n",
1514 base
, num_ours
, (num_ours
== 1) ? "" : "s");
1516 strbuf_addf(sb
, "Your branch is behind '%s' "
1518 "and can be fast-forwarded.\n",
1519 base
, num_theirs
, (num_theirs
== 1) ? "" : "s");
1521 strbuf_addf(sb
, "Your branch and '%s' have diverged,\n"
1522 "and have %d and %d different commit(s) each, "
1524 base
, num_ours
, num_theirs
);
1528 static int one_local_ref(const char *refname
, const unsigned char *sha1
, int flag
, void *cb_data
)
1530 struct ref
***local_tail
= cb_data
;
1534 /* we already know it starts with refs/ to get here */
1535 if (check_ref_format(refname
+ 5))
1538 len
= strlen(refname
) + 1;
1539 ref
= xcalloc(1, sizeof(*ref
) + len
);
1540 hashcpy(ref
->new_sha1
, sha1
);
1541 memcpy(ref
->name
, refname
, len
);
1543 *local_tail
= &ref
->next
;
1547 struct ref
*get_local_heads(void)
1549 struct ref
*local_refs
= NULL
, **local_tail
= &local_refs
;
1550 for_each_ref(one_local_ref
, &local_tail
);
1554 struct ref
*guess_remote_head(const struct ref
*head
,
1555 const struct ref
*refs
,
1558 const struct ref
*r
;
1559 struct ref
*list
= NULL
;
1560 struct ref
**tail
= &list
;
1566 * Some transports support directly peeking at
1567 * where HEAD points; if that is the case, then
1568 * we don't have to guess.
1571 return copy_ref(find_ref_by_name(refs
, head
->symref
));
1573 /* If refs/heads/master could be right, it is. */
1575 r
= find_ref_by_name(refs
, "refs/heads/master");
1576 if (r
&& !hashcmp(r
->old_sha1
, head
->old_sha1
))
1580 /* Look for another ref that points there */
1581 for (r
= refs
; r
; r
= r
->next
) {
1582 if (r
!= head
&& !hashcmp(r
->old_sha1
, head
->old_sha1
)) {
1583 *tail
= copy_ref(r
);
1584 tail
= &((*tail
)->next
);