10 static struct refspec s_tag_refspec
= {
18 const struct refspec
*tag_refspec
= &s_tag_refspec
;
20 struct counted_string
{
27 struct counted_string
*instead_of
;
32 struct rewrite
**rewrite
;
37 static struct remote
**remotes
;
38 static int remotes_alloc
;
39 static int remotes_nr
;
41 static struct branch
**branches
;
42 static int branches_alloc
;
43 static int branches_nr
;
45 static struct branch
*current_branch
;
46 static const char *default_remote_name
;
47 static int explicit_default_remote_name
;
49 static struct rewrites rewrites
;
50 static struct rewrites rewrites_push
;
52 #define BUF_SIZE (2048)
53 static char buffer
[BUF_SIZE
];
55 static int valid_remote(const struct remote
*remote
)
57 return (!!remote
->url
) || (!!remote
->foreign_vcs
);
60 static const char *alias_url(const char *url
, struct rewrites
*r
)
64 struct counted_string
*longest
;
69 for (i
= 0; i
< r
->rewrite_nr
; i
++) {
72 for (j
= 0; j
< r
->rewrite
[i
]->instead_of_nr
; j
++) {
73 if (!prefixcmp(url
, r
->rewrite
[i
]->instead_of
[j
].s
) &&
75 longest
->len
< r
->rewrite
[i
]->instead_of
[j
].len
)) {
76 longest
= &(r
->rewrite
[i
]->instead_of
[j
]);
84 ret
= xmalloc(r
->rewrite
[longest_i
]->baselen
+
85 (strlen(url
) - longest
->len
) + 1);
86 strcpy(ret
, r
->rewrite
[longest_i
]->base
);
87 strcpy(ret
+ r
->rewrite
[longest_i
]->baselen
, url
+ longest
->len
);
91 static void add_push_refspec(struct remote
*remote
, const char *ref
)
93 ALLOC_GROW(remote
->push_refspec
,
94 remote
->push_refspec_nr
+ 1,
95 remote
->push_refspec_alloc
);
96 remote
->push_refspec
[remote
->push_refspec_nr
++] = ref
;
99 static void add_fetch_refspec(struct remote
*remote
, const char *ref
)
101 ALLOC_GROW(remote
->fetch_refspec
,
102 remote
->fetch_refspec_nr
+ 1,
103 remote
->fetch_refspec_alloc
);
104 remote
->fetch_refspec
[remote
->fetch_refspec_nr
++] = ref
;
107 static void add_url(struct remote
*remote
, const char *url
)
109 ALLOC_GROW(remote
->url
, remote
->url_nr
+ 1, remote
->url_alloc
);
110 remote
->url
[remote
->url_nr
++] = url
;
113 static void add_pushurl(struct remote
*remote
, const char *pushurl
)
115 ALLOC_GROW(remote
->pushurl
, remote
->pushurl_nr
+ 1, remote
->pushurl_alloc
);
116 remote
->pushurl
[remote
->pushurl_nr
++] = pushurl
;
119 static void add_pushurl_alias(struct remote
*remote
, const char *url
)
121 const char *pushurl
= alias_url(url
, &rewrites_push
);
123 add_pushurl(remote
, pushurl
);
126 static void add_url_alias(struct remote
*remote
, const char *url
)
128 add_url(remote
, alias_url(url
, &rewrites
));
129 add_pushurl_alias(remote
, url
);
132 static struct remote
*make_remote(const char *name
, int len
)
137 for (i
= 0; i
< remotes_nr
; i
++) {
138 if (len
? (!strncmp(name
, remotes
[i
]->name
, len
) &&
139 !remotes
[i
]->name
[len
]) :
140 !strcmp(name
, remotes
[i
]->name
))
144 ret
= xcalloc(1, sizeof(struct remote
));
145 ALLOC_GROW(remotes
, remotes_nr
+ 1, remotes_alloc
);
146 remotes
[remotes_nr
++] = ret
;
148 ret
->name
= xstrndup(name
, len
);
150 ret
->name
= xstrdup(name
);
154 static void add_merge(struct branch
*branch
, const char *name
)
156 ALLOC_GROW(branch
->merge_name
, branch
->merge_nr
+ 1,
157 branch
->merge_alloc
);
158 branch
->merge_name
[branch
->merge_nr
++] = name
;
161 static struct branch
*make_branch(const char *name
, int len
)
167 for (i
= 0; i
< branches_nr
; i
++) {
168 if (len
? (!strncmp(name
, branches
[i
]->name
, len
) &&
169 !branches
[i
]->name
[len
]) :
170 !strcmp(name
, branches
[i
]->name
))
174 ALLOC_GROW(branches
, branches_nr
+ 1, branches_alloc
);
175 ret
= xcalloc(1, sizeof(struct branch
));
176 branches
[branches_nr
++] = ret
;
178 ret
->name
= xstrndup(name
, len
);
180 ret
->name
= xstrdup(name
);
181 refname
= xmalloc(strlen(name
) + strlen("refs/heads/") + 1);
182 strcpy(refname
, "refs/heads/");
183 strcpy(refname
+ strlen("refs/heads/"), ret
->name
);
184 ret
->refname
= refname
;
189 static struct rewrite
*make_rewrite(struct rewrites
*r
, const char *base
, int len
)
194 for (i
= 0; i
< r
->rewrite_nr
; i
++) {
196 ? (len
== r
->rewrite
[i
]->baselen
&&
197 !strncmp(base
, r
->rewrite
[i
]->base
, len
))
198 : !strcmp(base
, r
->rewrite
[i
]->base
))
199 return r
->rewrite
[i
];
202 ALLOC_GROW(r
->rewrite
, r
->rewrite_nr
+ 1, r
->rewrite_alloc
);
203 ret
= xcalloc(1, sizeof(struct rewrite
));
204 r
->rewrite
[r
->rewrite_nr
++] = ret
;
206 ret
->base
= xstrndup(base
, len
);
210 ret
->base
= xstrdup(base
);
211 ret
->baselen
= strlen(base
);
216 static void add_instead_of(struct rewrite
*rewrite
, const char *instead_of
)
218 ALLOC_GROW(rewrite
->instead_of
, rewrite
->instead_of_nr
+ 1, rewrite
->instead_of_alloc
);
219 rewrite
->instead_of
[rewrite
->instead_of_nr
].s
= instead_of
;
220 rewrite
->instead_of
[rewrite
->instead_of_nr
].len
= strlen(instead_of
);
221 rewrite
->instead_of_nr
++;
224 static void read_remotes_file(struct remote
*remote
)
226 FILE *f
= fopen(git_path("remotes/%s", remote
->name
), "r");
230 remote
->origin
= REMOTE_REMOTES
;
231 while (fgets(buffer
, BUF_SIZE
, f
)) {
235 if (!prefixcmp(buffer
, "URL:")) {
238 } else if (!prefixcmp(buffer
, "Push:")) {
241 } else if (!prefixcmp(buffer
, "Pull:")) {
253 while (isspace(p
[-1]))
256 switch (value_list
) {
258 add_url_alias(remote
, xstrdup(s
));
261 add_push_refspec(remote
, xstrdup(s
));
264 add_fetch_refspec(remote
, xstrdup(s
));
271 static void read_branches_file(struct remote
*remote
)
273 const char *slash
= strchr(remote
->name
, '/');
275 struct strbuf branch
= STRBUF_INIT
;
276 int n
= slash
? slash
- remote
->name
: 1000;
277 FILE *f
= fopen(git_path("branches/%.*s", n
, remote
->name
), "r");
283 s
= fgets(buffer
, BUF_SIZE
, f
);
291 remote
->origin
= REMOTE_BRANCHES
;
293 while (isspace(p
[-1]))
297 len
+= strlen(slash
);
298 p
= xmalloc(len
+ 1);
304 * With "slash", e.g. "git fetch jgarzik/netdev-2.6" when
305 * reading from $GIT_DIR/branches/jgarzik fetches "HEAD" from
306 * the partial URL obtained from the branches file plus
307 * "/netdev-2.6" and does not store it in any tracking ref.
308 * #branch specifier in the file is ignored.
310 * Otherwise, the branches file would have URL and optionally
311 * #branch specified. The "master" (or specified) branch is
312 * fetched and stored in the local branch of the same name.
314 frag
= strchr(p
, '#');
317 strbuf_addf(&branch
, "refs/heads/%s", frag
);
319 strbuf_addstr(&branch
, "refs/heads/master");
321 strbuf_addf(&branch
, ":refs/heads/%s", remote
->name
);
323 strbuf_reset(&branch
);
324 strbuf_addstr(&branch
, "HEAD:");
326 add_url_alias(remote
, p
);
327 add_fetch_refspec(remote
, strbuf_detach(&branch
, NULL
));
329 * Cogito compatible push: push current HEAD to remote #branch
330 * (master if missing)
332 strbuf_init(&branch
, 0);
333 strbuf_addstr(&branch
, "HEAD");
335 strbuf_addf(&branch
, ":refs/heads/%s", frag
);
337 strbuf_addstr(&branch
, ":refs/heads/master");
338 add_push_refspec(remote
, strbuf_detach(&branch
, NULL
));
339 remote
->fetch_tags
= 1; /* always auto-follow */
342 static int handle_config(const char *key
, const char *value
, void *cb
)
346 struct remote
*remote
;
347 struct branch
*branch
;
348 if (!prefixcmp(key
, "branch.")) {
350 subkey
= strrchr(name
, '.');
353 branch
= make_branch(name
, subkey
- name
);
354 if (!strcmp(subkey
, ".remote")) {
356 return config_error_nonbool(key
);
357 branch
->remote_name
= xstrdup(value
);
358 if (branch
== current_branch
) {
359 default_remote_name
= branch
->remote_name
;
360 explicit_default_remote_name
= 1;
362 } else if (!strcmp(subkey
, ".merge")) {
364 return config_error_nonbool(key
);
365 add_merge(branch
, xstrdup(value
));
369 if (!prefixcmp(key
, "url.")) {
370 struct rewrite
*rewrite
;
372 subkey
= strrchr(name
, '.');
375 if (!strcmp(subkey
, ".insteadof")) {
376 rewrite
= make_rewrite(&rewrites
, name
, subkey
- name
);
378 return config_error_nonbool(key
);
379 add_instead_of(rewrite
, xstrdup(value
));
380 } else if (!strcmp(subkey
, ".pushinsteadof")) {
381 rewrite
= make_rewrite(&rewrites_push
, name
, subkey
- name
);
383 return config_error_nonbool(key
);
384 add_instead_of(rewrite
, xstrdup(value
));
387 if (prefixcmp(key
, "remote."))
391 warning("Config remote shorthand cannot begin with '/': %s",
395 subkey
= strrchr(name
, '.');
398 remote
= make_remote(name
, subkey
- name
);
399 remote
->origin
= REMOTE_CONFIG
;
400 if (!strcmp(subkey
, ".mirror"))
401 remote
->mirror
= git_config_bool(key
, value
);
402 else if (!strcmp(subkey
, ".skipdefaultupdate"))
403 remote
->skip_default_update
= git_config_bool(key
, value
);
405 else if (!strcmp(subkey
, ".url")) {
407 if (git_config_string(&v
, key
, value
))
410 } else if (!strcmp(subkey
, ".pushurl")) {
412 if (git_config_string(&v
, key
, value
))
414 add_pushurl(remote
, v
);
415 } else if (!strcmp(subkey
, ".push")) {
417 if (git_config_string(&v
, key
, value
))
419 add_push_refspec(remote
, v
);
420 } else if (!strcmp(subkey
, ".fetch")) {
422 if (git_config_string(&v
, key
, value
))
424 add_fetch_refspec(remote
, v
);
425 } else if (!strcmp(subkey
, ".receivepack")) {
427 if (git_config_string(&v
, key
, value
))
429 if (!remote
->receivepack
)
430 remote
->receivepack
= v
;
432 error("more than one receivepack given, using the first");
433 } else if (!strcmp(subkey
, ".uploadpack")) {
435 if (git_config_string(&v
, key
, value
))
437 if (!remote
->uploadpack
)
438 remote
->uploadpack
= v
;
440 error("more than one uploadpack given, using the first");
441 } else if (!strcmp(subkey
, ".tagopt")) {
442 if (!strcmp(value
, "--no-tags"))
443 remote
->fetch_tags
= -1;
444 } else if (!strcmp(subkey
, ".proxy")) {
445 return git_config_string((const char **)&remote
->http_proxy
,
447 } else if (!strcmp(subkey
, ".vcs")) {
448 return git_config_string(&remote
->foreign_vcs
, key
, value
);
453 static void alias_all_urls(void)
456 for (i
= 0; i
< remotes_nr
; i
++) {
457 int add_pushurl_aliases
;
460 for (j
= 0; j
< remotes
[i
]->pushurl_nr
; j
++) {
461 remotes
[i
]->pushurl
[j
] = alias_url(remotes
[i
]->pushurl
[j
], &rewrites
);
463 add_pushurl_aliases
= remotes
[i
]->pushurl_nr
== 0;
464 for (j
= 0; j
< remotes
[i
]->url_nr
; j
++) {
465 if (add_pushurl_aliases
)
466 add_pushurl_alias(remotes
[i
], remotes
[i
]->url
[j
]);
467 remotes
[i
]->url
[j
] = alias_url(remotes
[i
]->url
[j
], &rewrites
);
472 static void read_config(void)
474 unsigned char sha1
[20];
475 const char *head_ref
;
477 if (default_remote_name
) // did this already
479 default_remote_name
= xstrdup("origin");
480 current_branch
= NULL
;
481 head_ref
= resolve_ref("HEAD", sha1
, 0, &flag
);
482 if (head_ref
&& (flag
& REF_ISSYMREF
) &&
483 !prefixcmp(head_ref
, "refs/heads/")) {
485 make_branch(head_ref
+ strlen("refs/heads/"), 0);
487 git_config(handle_config
, NULL
);
492 * We need to make sure the tracking branches are well formed, but a
493 * wildcard refspec in "struct refspec" must have a trailing slash. We
494 * temporarily drop the trailing '/' while calling check_ref_format(),
495 * and put it back. The caller knows that a CHECK_REF_FORMAT_ONELEVEL
496 * error return is Ok for a wildcard refspec.
498 static int verify_refname(char *name
, int is_glob
)
502 result
= check_ref_format(name
);
503 if (is_glob
&& result
== CHECK_REF_FORMAT_WILDCARD
)
504 result
= CHECK_REF_FORMAT_OK
;
509 * This function frees a refspec array.
510 * Warning: code paths should be checked to ensure that the src
511 * and dst pointers are always freeable pointers as well
512 * as the refspec pointer itself.
514 static void free_refspecs(struct refspec
*refspec
, int nr_refspec
)
521 for (i
= 0; i
< nr_refspec
; i
++) {
522 free(refspec
[i
].src
);
523 free(refspec
[i
].dst
);
528 static struct refspec
*parse_refspec_internal(int nr_refspec
, const char **refspec
, int fetch
, int verify
)
532 struct refspec
*rs
= xcalloc(sizeof(*rs
), nr_refspec
);
534 for (i
= 0; i
< nr_refspec
; i
++) {
537 const char *lhs
, *rhs
;
547 rhs
= strrchr(lhs
, ':');
550 * Before going on, special case ":" (or "+:") as a refspec
553 if (!fetch
&& rhs
== lhs
&& rhs
[1] == '\0') {
559 size_t rlen
= strlen(++rhs
);
560 is_glob
= (1 <= rlen
&& strchr(rhs
, '*'));
561 rs
[i
].dst
= xstrndup(rhs
, rlen
);
564 llen
= (rhs
? (rhs
- lhs
- 1) : strlen(lhs
));
565 if (1 <= llen
&& memchr(lhs
, '*', llen
)) {
566 if ((rhs
&& !is_glob
) || (!rhs
&& fetch
))
569 } else if (rhs
&& is_glob
) {
573 rs
[i
].pattern
= is_glob
;
574 rs
[i
].src
= xstrndup(lhs
, llen
);
579 * - empty is allowed; it means HEAD.
580 * - otherwise it must be a valid looking ref.
585 st
= verify_refname(rs
[i
].src
, is_glob
);
586 if (st
&& st
!= CHECK_REF_FORMAT_ONELEVEL
)
591 * - missing is ok, and is same as empty.
592 * - empty is ok; it means not to store.
593 * - otherwise it must be a valid looking ref.
597 } else if (!*rs
[i
].dst
) {
600 st
= verify_refname(rs
[i
].dst
, is_glob
);
601 if (st
&& st
!= CHECK_REF_FORMAT_ONELEVEL
)
607 * - empty is allowed; it means delete.
608 * - when wildcarded, it must be a valid looking ref.
609 * - otherwise, it must be an extended SHA-1, but
610 * there is no existing way to validate this.
615 st
= verify_refname(rs
[i
].src
, is_glob
);
616 if (st
&& st
!= CHECK_REF_FORMAT_ONELEVEL
)
620 ; /* anything goes, for now */
623 * - missing is allowed, but LHS then must be a
625 * - empty is not allowed.
626 * - otherwise it must be a valid looking ref.
629 st
= verify_refname(rs
[i
].src
, is_glob
);
630 if (st
&& st
!= CHECK_REF_FORMAT_ONELEVEL
)
632 } else if (!*rs
[i
].dst
) {
635 st
= verify_refname(rs
[i
].dst
, is_glob
);
636 if (st
&& st
!= CHECK_REF_FORMAT_ONELEVEL
)
646 * nr_refspec must be greater than zero and i must be valid
647 * since it is only possible to reach this point from within
648 * the for loop above.
650 free_refspecs(rs
, i
+1);
653 die("Invalid refspec '%s'", refspec
[i
]);
656 int valid_fetch_refspec(const char *fetch_refspec_str
)
658 const char *fetch_refspec
[] = { fetch_refspec_str
};
659 struct refspec
*refspec
;
661 refspec
= parse_refspec_internal(1, fetch_refspec
, 1, 1);
662 free_refspecs(refspec
, 1);
666 struct refspec
*parse_fetch_refspec(int nr_refspec
, const char **refspec
)
668 return parse_refspec_internal(nr_refspec
, refspec
, 1, 0);
671 static struct refspec
*parse_push_refspec(int nr_refspec
, const char **refspec
)
673 return parse_refspec_internal(nr_refspec
, refspec
, 0, 0);
676 void free_refspec(int nr_refspec
, struct refspec
*refspec
)
679 for (i
= 0; i
< nr_refspec
; i
++) {
680 free(refspec
[i
].src
);
681 free(refspec
[i
].dst
);
686 static int valid_remote_nick(const char *name
)
688 if (!name
[0] || is_dot_or_dotdot(name
))
690 return !strchr(name
, '/'); /* no slash */
693 struct remote
*remote_get(const char *name
)
702 name
= default_remote_name
;
703 name_given
= explicit_default_remote_name
;
706 ret
= make_remote(name
, 0);
707 if (valid_remote_nick(name
)) {
708 if (!valid_remote(ret
))
709 read_remotes_file(ret
);
710 if (!valid_remote(ret
))
711 read_branches_file(ret
);
713 if (name_given
&& !valid_remote(ret
))
714 add_url_alias(ret
, name
);
715 if (!valid_remote(ret
))
717 ret
->fetch
= parse_fetch_refspec(ret
->fetch_refspec_nr
, ret
->fetch_refspec
);
718 ret
->push
= parse_push_refspec(ret
->push_refspec_nr
, ret
->push_refspec
);
722 int remote_is_configured(const char *name
)
727 for (i
= 0; i
< remotes_nr
; i
++)
728 if (!strcmp(name
, remotes
[i
]->name
))
733 int for_each_remote(each_remote_fn fn
, void *priv
)
737 for (i
= 0; i
< remotes_nr
&& !result
; i
++) {
738 struct remote
*r
= remotes
[i
];
742 r
->fetch
= parse_fetch_refspec(r
->fetch_refspec_nr
,
745 r
->push
= parse_push_refspec(r
->push_refspec_nr
,
747 result
= fn(r
, priv
);
752 void ref_remove_duplicates(struct ref
*ref_map
)
756 for (; ref_map
; ref_map
= ref_map
->next
) {
757 if (!ref_map
->peer_ref
)
759 posn
= &ref_map
->next
;
761 if ((*posn
)->peer_ref
&&
762 !strcmp((*posn
)->peer_ref
->name
,
763 ref_map
->peer_ref
->name
)) {
764 if (strcmp((*posn
)->name
, ref_map
->name
))
765 die("%s tracks both %s and %s",
766 ref_map
->peer_ref
->name
,
767 (*posn
)->name
, ref_map
->name
);
768 next
= (*posn
)->next
;
769 free((*posn
)->peer_ref
);
773 posn
= &(*posn
)->next
;
779 int remote_has_url(struct remote
*remote
, const char *url
)
782 for (i
= 0; i
< remote
->url_nr
; i
++) {
783 if (!strcmp(remote
->url
[i
], url
))
789 static int match_name_with_pattern(const char *key
, const char *name
,
790 const char *value
, char **result
)
792 const char *kstar
= strchr(key
, '*');
798 die("Key '%s' of pattern had no '*'", key
);
800 ksuffixlen
= strlen(kstar
+ 1);
801 namelen
= strlen(name
);
802 ret
= !strncmp(name
, key
, klen
) && namelen
>= klen
+ ksuffixlen
&&
803 !memcmp(name
+ namelen
- ksuffixlen
, kstar
+ 1, ksuffixlen
);
805 const char *vstar
= strchr(value
, '*');
809 die("Value '%s' of pattern has no '*'", value
);
810 vlen
= vstar
- value
;
811 vsuffixlen
= strlen(vstar
+ 1);
812 *result
= xmalloc(vlen
+ vsuffixlen
+
814 klen
- ksuffixlen
+ 1);
815 strncpy(*result
, value
, vlen
);
816 strncpy(*result
+ vlen
,
817 name
+ klen
, namelen
- klen
- ksuffixlen
);
818 strcpy(*result
+ vlen
+ namelen
- klen
- ksuffixlen
,
824 char *apply_refspecs(struct refspec
*refspecs
, int nr_refspec
,
829 for (i
= 0; i
< nr_refspec
; i
++) {
830 struct refspec
*refspec
= refspecs
+ i
;
831 if (refspec
->pattern
) {
832 if (match_name_with_pattern(refspec
->src
, name
,
835 } else if (!strcmp(refspec
->src
, name
))
836 return strdup(refspec
->dst
);
841 int remote_find_tracking(struct remote
*remote
, struct refspec
*refspec
)
843 int find_src
= refspec
->src
== NULL
;
844 char *needle
, **result
;
849 return error("find_tracking: need either src or dst");
850 needle
= refspec
->dst
;
851 result
= &refspec
->src
;
853 needle
= refspec
->src
;
854 result
= &refspec
->dst
;
857 for (i
= 0; i
< remote
->fetch_refspec_nr
; i
++) {
858 struct refspec
*fetch
= &remote
->fetch
[i
];
859 const char *key
= find_src
? fetch
->dst
: fetch
->src
;
860 const char *value
= find_src
? fetch
->src
: fetch
->dst
;
863 if (fetch
->pattern
) {
864 if (match_name_with_pattern(key
, needle
, value
, result
)) {
865 refspec
->force
= fetch
->force
;
868 } else if (!strcmp(needle
, key
)) {
869 *result
= xstrdup(value
);
870 refspec
->force
= fetch
->force
;
877 static struct ref
*alloc_ref_with_prefix(const char *prefix
, size_t prefixlen
,
880 size_t len
= strlen(name
);
881 struct ref
*ref
= xcalloc(1, sizeof(struct ref
) + prefixlen
+ len
+ 1);
882 memcpy(ref
->name
, prefix
, prefixlen
);
883 memcpy(ref
->name
+ prefixlen
, name
, len
);
887 struct ref
*alloc_ref(const char *name
)
889 return alloc_ref_with_prefix("", 0, name
);
892 static struct ref
*copy_ref(const struct ref
*ref
)
898 len
= strlen(ref
->name
);
899 cpy
= xmalloc(sizeof(struct ref
) + len
+ 1);
900 memcpy(cpy
, ref
, sizeof(struct ref
) + len
+ 1);
902 cpy
->symref
= ref
->symref
? xstrdup(ref
->symref
) : NULL
;
903 cpy
->remote_status
= ref
->remote_status
? xstrdup(ref
->remote_status
) : NULL
;
904 cpy
->peer_ref
= copy_ref(ref
->peer_ref
);
908 struct ref
*copy_ref_list(const struct ref
*ref
)
910 struct ref
*ret
= NULL
;
911 struct ref
**tail
= &ret
;
913 *tail
= copy_ref(ref
);
915 tail
= &((*tail
)->next
);
920 static void free_ref(struct ref
*ref
)
924 free_ref(ref
->peer_ref
);
925 free(ref
->remote_status
);
930 void free_refs(struct ref
*ref
)
940 static int count_refspec_match(const char *pattern
,
942 struct ref
**matched_ref
)
944 int patlen
= strlen(pattern
);
945 struct ref
*matched_weak
= NULL
;
946 struct ref
*matched
= NULL
;
950 for (weak_match
= match
= 0; refs
; refs
= refs
->next
) {
951 char *name
= refs
->name
;
952 int namelen
= strlen(name
);
954 if (!refname_match(pattern
, name
, ref_rev_parse_rules
))
957 /* A match is "weak" if it is with refs outside
958 * heads or tags, and did not specify the pattern
959 * in full (e.g. "refs/remotes/origin/master") or at
960 * least from the toplevel (e.g. "remotes/origin/master");
961 * otherwise "git push $URL master" would result in
962 * ambiguity between remotes/origin/master and heads/master
963 * at the remote site.
965 if (namelen
!= patlen
&&
966 patlen
!= namelen
- 5 &&
967 prefixcmp(name
, "refs/heads/") &&
968 prefixcmp(name
, "refs/tags/")) {
969 /* We want to catch the case where only weak
970 * matches are found and there are multiple
971 * matches, and where more than one strong
972 * matches are found, as ambiguous. One
973 * strong match with zero or more weak matches
974 * are acceptable as a unique match.
985 *matched_ref
= matched_weak
;
989 *matched_ref
= matched
;
994 static void tail_link_ref(struct ref
*ref
, struct ref
***tail
)
1002 static struct ref
*try_explicit_object_name(const char *name
)
1004 unsigned char sha1
[20];
1008 ref
= alloc_ref("(delete)");
1009 hashclr(ref
->new_sha1
);
1012 if (get_sha1(name
, sha1
))
1014 ref
= alloc_ref(name
);
1015 hashcpy(ref
->new_sha1
, sha1
);
1019 static struct ref
*make_linked_ref(const char *name
, struct ref
***tail
)
1021 struct ref
*ret
= alloc_ref(name
);
1022 tail_link_ref(ret
, tail
);
1026 static char *guess_ref(const char *name
, struct ref
*peer
)
1028 struct strbuf buf
= STRBUF_INIT
;
1029 unsigned char sha1
[20];
1031 const char *r
= resolve_ref(peer
->name
, sha1
, 1, NULL
);
1035 if (!prefixcmp(r
, "refs/heads/"))
1036 strbuf_addstr(&buf
, "refs/heads/");
1037 else if (!prefixcmp(r
, "refs/tags/"))
1038 strbuf_addstr(&buf
, "refs/tags/");
1042 strbuf_addstr(&buf
, name
);
1043 return strbuf_detach(&buf
, NULL
);
1046 static int match_explicit(struct ref
*src
, struct ref
*dst
,
1047 struct ref
***dst_tail
,
1050 struct ref
*matched_src
, *matched_dst
;
1053 const char *dst_value
= rs
->dst
;
1056 if (rs
->pattern
|| rs
->matching
)
1059 matched_src
= matched_dst
= NULL
;
1060 switch (count_refspec_match(rs
->src
, src
, &matched_src
)) {
1065 /* The source could be in the get_sha1() format
1066 * not a reference name. :refs/other is a
1067 * way to delete 'other' ref at the remote end.
1069 matched_src
= try_explicit_object_name(rs
->src
);
1071 return error("src refspec %s does not match any.", rs
->src
);
1075 return error("src refspec %s matches more than one.", rs
->src
);
1079 unsigned char sha1
[20];
1082 dst_value
= resolve_ref(matched_src
->name
, sha1
, 1, &flag
);
1084 ((flag
& REF_ISSYMREF
) &&
1085 prefixcmp(dst_value
, "refs/heads/")))
1086 die("%s cannot be resolved to branch.",
1090 switch (count_refspec_match(dst_value
, dst
, &matched_dst
)) {
1094 if (!memcmp(dst_value
, "refs/", 5))
1095 matched_dst
= make_linked_ref(dst_value
, dst_tail
);
1096 else if ((dst_guess
= guess_ref(dst_value
, matched_src
)))
1097 matched_dst
= make_linked_ref(dst_guess
, dst_tail
);
1099 error("unable to push to unqualified destination: %s\n"
1100 "The destination refspec neither matches an "
1101 "existing ref on the remote nor\n"
1102 "begins with refs/, and we are unable to "
1103 "guess a prefix based on the source ref.",
1108 error("dst refspec %s matches more than one.",
1114 if (matched_dst
->peer_ref
)
1115 return error("dst ref %s receives from more than one src.",
1118 matched_dst
->peer_ref
= copy_src
? copy_ref(matched_src
) : matched_src
;
1119 matched_dst
->force
= rs
->force
;
1124 static int match_explicit_refs(struct ref
*src
, struct ref
*dst
,
1125 struct ref
***dst_tail
, struct refspec
*rs
,
1129 for (i
= errs
= 0; i
< rs_nr
; i
++)
1130 errs
+= match_explicit(src
, dst
, dst_tail
, &rs
[i
]);
1134 static const struct refspec
*check_pattern_match(const struct refspec
*rs
,
1136 const struct ref
*src
)
1139 int matching_refs
= -1;
1140 for (i
= 0; i
< rs_nr
; i
++) {
1141 if (rs
[i
].matching
&&
1142 (matching_refs
== -1 || rs
[i
].force
)) {
1147 if (rs
[i
].pattern
&& match_name_with_pattern(rs
[i
].src
, src
->name
,
1151 if (matching_refs
!= -1)
1152 return rs
+ matching_refs
;
1157 static struct ref
**tail_ref(struct ref
**head
)
1159 struct ref
**tail
= head
;
1161 tail
= &((*tail
)->next
);
1166 * Note. This is used only by "push"; refspec matching rules for
1167 * push and fetch are subtly different, so do not try to reuse it
1170 int match_refs(struct ref
*src
, struct ref
**dst
,
1171 int nr_refspec
, const char **refspec
, int flags
)
1174 int send_all
= flags
& MATCH_REFS_ALL
;
1175 int send_mirror
= flags
& MATCH_REFS_MIRROR
;
1177 static const char *default_refspec
[] = { ":", NULL
};
1178 struct ref
**dst_tail
= tail_ref(dst
);
1182 refspec
= default_refspec
;
1184 rs
= parse_push_refspec(nr_refspec
, (const char **) refspec
);
1185 errs
= match_explicit_refs(src
, *dst
, &dst_tail
, rs
, nr_refspec
);
1187 /* pick the remainder */
1188 for ( ; src
; src
= src
->next
) {
1189 struct ref
*dst_peer
;
1190 const struct refspec
*pat
= NULL
;
1195 pat
= check_pattern_match(rs
, nr_refspec
, src
);
1199 if (pat
->matching
) {
1201 * "matching refs"; traditionally we pushed everything
1202 * including refs outside refs/heads/ hierarchy, but
1203 * that does not make much sense these days.
1205 if (!send_mirror
&& prefixcmp(src
->name
, "refs/heads/"))
1207 dst_name
= xstrdup(src
->name
);
1210 const char *dst_side
= pat
->dst
? pat
->dst
: pat
->src
;
1211 if (!match_name_with_pattern(pat
->src
, src
->name
,
1212 dst_side
, &dst_name
))
1213 die("Didn't think it matches any more");
1215 dst_peer
= find_ref_by_name(*dst
, dst_name
);
1217 if (dst_peer
->peer_ref
)
1218 /* We're already sending something to this ref. */
1222 if (pat
->matching
&& !(send_all
|| send_mirror
))
1224 * Remote doesn't have it, and we have no
1225 * explicit pattern, and we don't have
1226 * --all nor --mirror.
1230 /* Create a new one and link it */
1231 dst_peer
= make_linked_ref(dst_name
, &dst_tail
);
1232 hashcpy(dst_peer
->new_sha1
, src
->new_sha1
);
1234 dst_peer
->peer_ref
= copy_ref(src
);
1235 dst_peer
->force
= pat
->force
;
1244 struct branch
*branch_get(const char *name
)
1249 if (!name
|| !*name
|| !strcmp(name
, "HEAD"))
1250 ret
= current_branch
;
1252 ret
= make_branch(name
, 0);
1253 if (ret
&& ret
->remote_name
) {
1254 ret
->remote
= remote_get(ret
->remote_name
);
1255 if (ret
->merge_nr
) {
1257 ret
->merge
= xcalloc(sizeof(*ret
->merge
),
1259 for (i
= 0; i
< ret
->merge_nr
; i
++) {
1260 ret
->merge
[i
] = xcalloc(1, sizeof(**ret
->merge
));
1261 ret
->merge
[i
]->src
= xstrdup(ret
->merge_name
[i
]);
1262 if (remote_find_tracking(ret
->remote
, ret
->merge
[i
])
1263 && !strcmp(ret
->remote_name
, "."))
1264 ret
->merge
[i
]->dst
= xstrdup(ret
->merge_name
[i
]);
1271 int branch_has_merge_config(struct branch
*branch
)
1273 return branch
&& !!branch
->merge
;
1276 int branch_merge_matches(struct branch
*branch
,
1278 const char *refname
)
1280 if (!branch
|| i
< 0 || i
>= branch
->merge_nr
)
1282 return refname_match(branch
->merge
[i
]->src
, refname
, ref_fetch_rules
);
1285 static struct ref
*get_expanded_map(const struct ref
*remote_refs
,
1286 const struct refspec
*refspec
)
1288 const struct ref
*ref
;
1289 struct ref
*ret
= NULL
;
1290 struct ref
**tail
= &ret
;
1294 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
1295 if (strchr(ref
->name
, '^'))
1296 continue; /* a dereference item */
1297 if (match_name_with_pattern(refspec
->src
, ref
->name
,
1298 refspec
->dst
, &expn_name
)) {
1299 struct ref
*cpy
= copy_ref(ref
);
1301 cpy
->peer_ref
= alloc_ref(expn_name
);
1304 cpy
->peer_ref
->force
= 1;
1313 static const struct ref
*find_ref_by_name_abbrev(const struct ref
*refs
, const char *name
)
1315 const struct ref
*ref
;
1316 for (ref
= refs
; ref
; ref
= ref
->next
) {
1317 if (refname_match(name
, ref
->name
, ref_fetch_rules
))
1323 struct ref
*get_remote_ref(const struct ref
*remote_refs
, const char *name
)
1325 const struct ref
*ref
= find_ref_by_name_abbrev(remote_refs
, name
);
1330 return copy_ref(ref
);
1333 static struct ref
*get_local_ref(const char *name
)
1335 if (!name
|| name
[0] == '\0')
1338 if (!prefixcmp(name
, "refs/"))
1339 return alloc_ref(name
);
1341 if (!prefixcmp(name
, "heads/") ||
1342 !prefixcmp(name
, "tags/") ||
1343 !prefixcmp(name
, "remotes/"))
1344 return alloc_ref_with_prefix("refs/", 5, name
);
1346 return alloc_ref_with_prefix("refs/heads/", 11, name
);
1349 int get_fetch_map(const struct ref
*remote_refs
,
1350 const struct refspec
*refspec
,
1354 struct ref
*ref_map
, **rmp
;
1356 if (refspec
->pattern
) {
1357 ref_map
= get_expanded_map(remote_refs
, refspec
);
1359 const char *name
= refspec
->src
[0] ? refspec
->src
: "HEAD";
1361 ref_map
= get_remote_ref(remote_refs
, name
);
1362 if (!missing_ok
&& !ref_map
)
1363 die("Couldn't find remote ref %s", name
);
1365 ref_map
->peer_ref
= get_local_ref(refspec
->dst
);
1366 if (ref_map
->peer_ref
&& refspec
->force
)
1367 ref_map
->peer_ref
->force
= 1;
1371 for (rmp
= &ref_map
; *rmp
; ) {
1372 if ((*rmp
)->peer_ref
) {
1373 int st
= check_ref_format((*rmp
)->peer_ref
->name
+ 5);
1374 if (st
&& st
!= CHECK_REF_FORMAT_ONELEVEL
) {
1375 struct ref
*ignore
= *rmp
;
1376 error("* Ignoring funny ref '%s' locally",
1377 (*rmp
)->peer_ref
->name
);
1378 *rmp
= (*rmp
)->next
;
1379 free(ignore
->peer_ref
);
1384 rmp
= &((*rmp
)->next
);
1388 tail_link_ref(ref_map
, tail
);
1393 int resolve_remote_symref(struct ref
*ref
, struct ref
*list
)
1397 for (; list
; list
= list
->next
)
1398 if (!strcmp(ref
->symref
, list
->name
)) {
1399 hashcpy(ref
->old_sha1
, list
->old_sha1
);
1405 static void unmark_and_free(struct commit_list
*list
, unsigned int mark
)
1408 struct commit_list
*temp
= list
;
1409 temp
->item
->object
.flags
&= ~mark
;
1415 int ref_newer(const unsigned char *new_sha1
, const unsigned char *old_sha1
)
1418 struct commit
*old
, *new;
1419 struct commit_list
*list
, *used
;
1422 /* Both new and old must be commit-ish and new is descendant of
1423 * old. Otherwise we require --force.
1425 o
= deref_tag(parse_object(old_sha1
), NULL
, 0);
1426 if (!o
|| o
->type
!= OBJ_COMMIT
)
1428 old
= (struct commit
*) o
;
1430 o
= deref_tag(parse_object(new_sha1
), NULL
, 0);
1431 if (!o
|| o
->type
!= OBJ_COMMIT
)
1433 new = (struct commit
*) o
;
1435 if (parse_commit(new) < 0)
1439 commit_list_insert(new, &list
);
1441 new = pop_most_recent_commit(&list
, TMP_MARK
);
1442 commit_list_insert(new, &used
);
1448 unmark_and_free(list
, TMP_MARK
);
1449 unmark_and_free(used
, TMP_MARK
);
1454 * Return true if there is anything to report, otherwise false.
1456 int stat_tracking_info(struct branch
*branch
, int *num_ours
, int *num_theirs
)
1458 unsigned char sha1
[20];
1459 struct commit
*ours
, *theirs
;
1461 struct rev_info revs
;
1462 const char *rev_argv
[10], *base
;
1466 * Nothing to report unless we are marked to build on top of
1470 !branch
->merge
|| !branch
->merge
[0] || !branch
->merge
[0]->dst
)
1474 * If what we used to build on no longer exists, there is
1475 * nothing to report.
1477 base
= branch
->merge
[0]->dst
;
1478 if (!resolve_ref(base
, sha1
, 1, NULL
))
1480 theirs
= lookup_commit_reference(sha1
);
1484 if (!resolve_ref(branch
->refname
, sha1
, 1, NULL
))
1486 ours
= lookup_commit_reference(sha1
);
1490 /* are we the same? */
1494 /* Run "rev-list --left-right ours...theirs" internally... */
1496 rev_argv
[rev_argc
++] = NULL
;
1497 rev_argv
[rev_argc
++] = "--left-right";
1498 rev_argv
[rev_argc
++] = symmetric
;
1499 rev_argv
[rev_argc
++] = "--";
1500 rev_argv
[rev_argc
] = NULL
;
1502 strcpy(symmetric
, sha1_to_hex(ours
->object
.sha1
));
1503 strcpy(symmetric
+ 40, "...");
1504 strcpy(symmetric
+ 43, sha1_to_hex(theirs
->object
.sha1
));
1506 init_revisions(&revs
, NULL
);
1507 setup_revisions(rev_argc
, rev_argv
, &revs
, NULL
);
1508 prepare_revision_walk(&revs
);
1510 /* ... and count the commits on each side. */
1514 struct commit
*c
= get_revision(&revs
);
1517 if (c
->object
.flags
& SYMMETRIC_LEFT
)
1523 /* clear object flags smudged by the above traversal */
1524 clear_commit_marks(ours
, ALL_REV_FLAGS
);
1525 clear_commit_marks(theirs
, ALL_REV_FLAGS
);
1530 * Return true when there is anything to report, otherwise false.
1532 int format_tracking_info(struct branch
*branch
, struct strbuf
*sb
)
1534 int num_ours
, num_theirs
;
1537 if (!stat_tracking_info(branch
, &num_ours
, &num_theirs
))
1540 base
= branch
->merge
[0]->dst
;
1541 base
= shorten_unambiguous_ref(base
, 0);
1543 strbuf_addf(sb
, "Your branch is ahead of '%s' "
1544 "by %d commit%s.\n",
1545 base
, num_ours
, (num_ours
== 1) ? "" : "s");
1547 strbuf_addf(sb
, "Your branch is behind '%s' "
1549 "and can be fast-forwarded.\n",
1550 base
, num_theirs
, (num_theirs
== 1) ? "" : "s");
1552 strbuf_addf(sb
, "Your branch and '%s' have diverged,\n"
1553 "and have %d and %d different commit(s) each, "
1555 base
, num_ours
, num_theirs
);
1559 static int one_local_ref(const char *refname
, const unsigned char *sha1
, int flag
, void *cb_data
)
1561 struct ref
***local_tail
= cb_data
;
1565 /* we already know it starts with refs/ to get here */
1566 if (check_ref_format(refname
+ 5))
1569 len
= strlen(refname
) + 1;
1570 ref
= xcalloc(1, sizeof(*ref
) + len
);
1571 hashcpy(ref
->new_sha1
, sha1
);
1572 memcpy(ref
->name
, refname
, len
);
1574 *local_tail
= &ref
->next
;
1578 struct ref
*get_local_heads(void)
1580 struct ref
*local_refs
= NULL
, **local_tail
= &local_refs
;
1581 for_each_ref(one_local_ref
, &local_tail
);
1585 struct ref
*guess_remote_head(const struct ref
*head
,
1586 const struct ref
*refs
,
1589 const struct ref
*r
;
1590 struct ref
*list
= NULL
;
1591 struct ref
**tail
= &list
;
1597 * Some transports support directly peeking at
1598 * where HEAD points; if that is the case, then
1599 * we don't have to guess.
1602 return copy_ref(find_ref_by_name(refs
, head
->symref
));
1604 /* If refs/heads/master could be right, it is. */
1606 r
= find_ref_by_name(refs
, "refs/heads/master");
1607 if (r
&& !hashcmp(r
->old_sha1
, head
->old_sha1
))
1611 /* Look for another ref that points there */
1612 for (r
= refs
; r
; r
= r
->next
) {
1613 if (r
!= head
&& !hashcmp(r
->old_sha1
, head
->old_sha1
)) {
1614 *tail
= copy_ref(r
);
1615 tail
= &((*tail
)->next
);