blob: b296d174043b5e5a11aceb9940ba6ba035e77678 [file] [log] [blame]
Daniel Barkalow5751f492007-05-12 11:45:53 -04001#include "cache.h"
2#include "remote.h"
3#include "refs.h"
Junio C Hamano6d21bf92008-07-02 00:51:18 -07004#include "commit.h"
5#include "diff.h"
6#include "revision.h"
Alexander Potashev8ca12c02009-01-10 15:07:50 +03007#include "dir.h"
Jay Soffianec8452d2009-02-25 03:32:12 -05008#include "tag.h"
Julian Phillips73cf0822009-10-25 21:28:11 +00009#include "string-list.h"
Daniel Barkalow5751f492007-05-12 11:45:53 -040010
Felipe Contreras6ddba5e2012-02-23 00:43:41 +020011enum map_direction { FROM_SRC, FROM_DST };
12
Daniel Barkalowe0aaa292008-04-17 19:32:35 -040013static struct refspec s_tag_refspec = {
14 0,
15 1,
Junio C Hamanob84c3432008-05-25 13:38:44 -070016 0,
Daniel Barkalow08fbdb32009-03-07 01:11:36 -050017 "refs/tags/*",
18 "refs/tags/*"
Daniel Barkalowe0aaa292008-04-17 19:32:35 -040019};
20
21const struct refspec *tag_refspec = &s_tag_refspec;
22
Junio C Hamano844112c2008-02-24 22:25:04 -080023struct counted_string {
24 size_t len;
25 const char *s;
26};
Daniel Barkalow55029ae2008-02-20 13:43:53 -050027struct rewrite {
28 const char *base;
Junio C Hamano844112c2008-02-24 22:25:04 -080029 size_t baselen;
30 struct counted_string *instead_of;
Daniel Barkalow55029ae2008-02-20 13:43:53 -050031 int instead_of_nr;
32 int instead_of_alloc;
33};
Josh Triplettd071d942009-09-07 01:56:00 -070034struct rewrites {
35 struct rewrite **rewrite;
36 int rewrite_alloc;
37 int rewrite_nr;
38};
Daniel Barkalow55029ae2008-02-20 13:43:53 -050039
Daniel Barkalow5751f492007-05-12 11:45:53 -040040static struct remote **remotes;
Daniel Barkalow2d313472008-02-18 23:41:41 -050041static int remotes_alloc;
42static int remotes_nr;
Daniel Barkalow5751f492007-05-12 11:45:53 -040043
Daniel Barkalowcf818342007-09-10 23:02:56 -040044static struct branch **branches;
Daniel Barkalow2d313472008-02-18 23:41:41 -050045static int branches_alloc;
46static int branches_nr;
Daniel Barkalowcf818342007-09-10 23:02:56 -040047
48static struct branch *current_branch;
49static const char *default_remote_name;
Daniel Barkalowfa685bd2009-03-11 01:47:20 -040050static int explicit_default_remote_name;
Daniel Barkalowcf818342007-09-10 23:02:56 -040051
Josh Triplettd071d942009-09-07 01:56:00 -070052static struct rewrites rewrites;
Josh Triplett1c2eafb2009-09-07 01:56:33 -070053static struct rewrites rewrites_push;
Daniel Barkalow55029ae2008-02-20 13:43:53 -050054
Daniel Barkalow5751f492007-05-12 11:45:53 -040055#define BUF_SIZE (2048)
56static char buffer[BUF_SIZE];
57
Daniel Barkalow0a4da292009-11-18 02:42:23 +010058static int valid_remote(const struct remote *remote)
59{
Daniel Barkalowc578f512009-11-18 02:42:25 +010060 return (!!remote->url) || (!!remote->foreign_vcs);
Daniel Barkalow0a4da292009-11-18 02:42:23 +010061}
62
Josh Triplettd071d942009-09-07 01:56:00 -070063static const char *alias_url(const char *url, struct rewrites *r)
Daniel Barkalow55029ae2008-02-20 13:43:53 -050064{
65 int i, j;
Junio C Hamano844112c2008-02-24 22:25:04 -080066 char *ret;
67 struct counted_string *longest;
68 int longest_i;
69
70 longest = NULL;
71 longest_i = -1;
Josh Triplettd071d942009-09-07 01:56:00 -070072 for (i = 0; i < r->rewrite_nr; i++) {
73 if (!r->rewrite[i])
Daniel Barkalow55029ae2008-02-20 13:43:53 -050074 continue;
Josh Triplettd071d942009-09-07 01:56:00 -070075 for (j = 0; j < r->rewrite[i]->instead_of_nr; j++) {
76 if (!prefixcmp(url, r->rewrite[i]->instead_of[j].s) &&
Junio C Hamano844112c2008-02-24 22:25:04 -080077 (!longest ||
Josh Triplettd071d942009-09-07 01:56:00 -070078 longest->len < r->rewrite[i]->instead_of[j].len)) {
79 longest = &(r->rewrite[i]->instead_of[j]);
Junio C Hamano844112c2008-02-24 22:25:04 -080080 longest_i = i;
Daniel Barkalow55029ae2008-02-20 13:43:53 -050081 }
82 }
83 }
Junio C Hamano844112c2008-02-24 22:25:04 -080084 if (!longest)
85 return url;
86
Josh Triplettd071d942009-09-07 01:56:00 -070087 ret = xmalloc(r->rewrite[longest_i]->baselen +
Junio C Hamano844112c2008-02-24 22:25:04 -080088 (strlen(url) - longest->len) + 1);
Josh Triplettd071d942009-09-07 01:56:00 -070089 strcpy(ret, r->rewrite[longest_i]->base);
90 strcpy(ret + r->rewrite[longest_i]->baselen, url + longest->len);
Junio C Hamano844112c2008-02-24 22:25:04 -080091 return ret;
Daniel Barkalow55029ae2008-02-20 13:43:53 -050092}
93
Daniel Barkalow5751f492007-05-12 11:45:53 -040094static void add_push_refspec(struct remote *remote, const char *ref)
95{
Daniel Barkalow2d313472008-02-18 23:41:41 -050096 ALLOC_GROW(remote->push_refspec,
97 remote->push_refspec_nr + 1,
98 remote->push_refspec_alloc);
99 remote->push_refspec[remote->push_refspec_nr++] = ref;
Daniel Barkalow5751f492007-05-12 11:45:53 -0400100}
101
Daniel Barkalow5d46c9d2007-05-12 11:46:03 -0400102static void add_fetch_refspec(struct remote *remote, const char *ref)
103{
Daniel Barkalow2d313472008-02-18 23:41:41 -0500104 ALLOC_GROW(remote->fetch_refspec,
105 remote->fetch_refspec_nr + 1,
106 remote->fetch_refspec_alloc);
107 remote->fetch_refspec[remote->fetch_refspec_nr++] = ref;
Daniel Barkalow5d46c9d2007-05-12 11:46:03 -0400108}
109
Shawn O. Pearce28b91f82007-09-19 00:49:27 -0400110static void add_url(struct remote *remote, const char *url)
Daniel Barkalow5751f492007-05-12 11:45:53 -0400111{
Daniel Barkalow2d313472008-02-18 23:41:41 -0500112 ALLOC_GROW(remote->url, remote->url_nr + 1, remote->url_alloc);
113 remote->url[remote->url_nr++] = url;
Daniel Barkalow5751f492007-05-12 11:45:53 -0400114}
115
Michael J Gruber20346232009-06-09 18:01:34 +0200116static void add_pushurl(struct remote *remote, const char *pushurl)
117{
118 ALLOC_GROW(remote->pushurl, remote->pushurl_nr + 1, remote->pushurl_alloc);
119 remote->pushurl[remote->pushurl_nr++] = pushurl;
120}
121
Josh Triplett1c2eafb2009-09-07 01:56:33 -0700122static void add_pushurl_alias(struct remote *remote, const char *url)
123{
124 const char *pushurl = alias_url(url, &rewrites_push);
125 if (pushurl != url)
126 add_pushurl(remote, pushurl);
127}
128
129static void add_url_alias(struct remote *remote, const char *url)
130{
131 add_url(remote, alias_url(url, &rewrites));
132 add_pushurl_alias(remote, url);
133}
134
Daniel Barkalow5751f492007-05-12 11:45:53 -0400135static struct remote *make_remote(const char *name, int len)
136{
Daniel Barkalow2d313472008-02-18 23:41:41 -0500137 struct remote *ret;
138 int i;
Daniel Barkalow5751f492007-05-12 11:45:53 -0400139
Daniel Barkalow2d313472008-02-18 23:41:41 -0500140 for (i = 0; i < remotes_nr; i++) {
141 if (len ? (!strncmp(name, remotes[i]->name, len) &&
142 !remotes[i]->name[len]) :
143 !strcmp(name, remotes[i]->name))
144 return remotes[i];
Daniel Barkalow5751f492007-05-12 11:45:53 -0400145 }
146
Daniel Barkalow2d313472008-02-18 23:41:41 -0500147 ret = xcalloc(1, sizeof(struct remote));
148 ALLOC_GROW(remotes, remotes_nr + 1, remotes_alloc);
149 remotes[remotes_nr++] = ret;
Daniel Barkalow5751f492007-05-12 11:45:53 -0400150 if (len)
Daniel Barkalow2d313472008-02-18 23:41:41 -0500151 ret->name = xstrndup(name, len);
Daniel Barkalow5751f492007-05-12 11:45:53 -0400152 else
Daniel Barkalow2d313472008-02-18 23:41:41 -0500153 ret->name = xstrdup(name);
154 return ret;
Daniel Barkalow5751f492007-05-12 11:45:53 -0400155}
156
Daniel Barkalowcf818342007-09-10 23:02:56 -0400157static void add_merge(struct branch *branch, const char *name)
158{
Daniel Barkalow2d313472008-02-18 23:41:41 -0500159 ALLOC_GROW(branch->merge_name, branch->merge_nr + 1,
160 branch->merge_alloc);
161 branch->merge_name[branch->merge_nr++] = name;
Daniel Barkalowcf818342007-09-10 23:02:56 -0400162}
163
164static struct branch *make_branch(const char *name, int len)
165{
Daniel Barkalow2d313472008-02-18 23:41:41 -0500166 struct branch *ret;
167 int i;
Daniel Barkalowcf818342007-09-10 23:02:56 -0400168 char *refname;
169
Daniel Barkalow2d313472008-02-18 23:41:41 -0500170 for (i = 0; i < branches_nr; i++) {
171 if (len ? (!strncmp(name, branches[i]->name, len) &&
172 !branches[i]->name[len]) :
173 !strcmp(name, branches[i]->name))
174 return branches[i];
Daniel Barkalowcf818342007-09-10 23:02:56 -0400175 }
176
Daniel Barkalow2d313472008-02-18 23:41:41 -0500177 ALLOC_GROW(branches, branches_nr + 1, branches_alloc);
178 ret = xcalloc(1, sizeof(struct branch));
179 branches[branches_nr++] = ret;
Daniel Barkalowcf818342007-09-10 23:02:56 -0400180 if (len)
Daniel Barkalow2d313472008-02-18 23:41:41 -0500181 ret->name = xstrndup(name, len);
Daniel Barkalowcf818342007-09-10 23:02:56 -0400182 else
Daniel Barkalow2d313472008-02-18 23:41:41 -0500183 ret->name = xstrdup(name);
Dotan Barake8eec712008-09-09 21:57:10 +0300184 refname = xmalloc(strlen(name) + strlen("refs/heads/") + 1);
Daniel Barkalowcf818342007-09-10 23:02:56 -0400185 strcpy(refname, "refs/heads/");
Daniel Barkalow2d313472008-02-18 23:41:41 -0500186 strcpy(refname + strlen("refs/heads/"), ret->name);
187 ret->refname = refname;
Daniel Barkalowcf818342007-09-10 23:02:56 -0400188
Daniel Barkalow2d313472008-02-18 23:41:41 -0500189 return ret;
Daniel Barkalowcf818342007-09-10 23:02:56 -0400190}
191
Josh Triplettd071d942009-09-07 01:56:00 -0700192static struct rewrite *make_rewrite(struct rewrites *r, const char *base, int len)
Daniel Barkalow55029ae2008-02-20 13:43:53 -0500193{
194 struct rewrite *ret;
195 int i;
196
Josh Triplettd071d942009-09-07 01:56:00 -0700197 for (i = 0; i < r->rewrite_nr; i++) {
Junio C Hamano844112c2008-02-24 22:25:04 -0800198 if (len
Josh Triplettd071d942009-09-07 01:56:00 -0700199 ? (len == r->rewrite[i]->baselen &&
200 !strncmp(base, r->rewrite[i]->base, len))
201 : !strcmp(base, r->rewrite[i]->base))
202 return r->rewrite[i];
Daniel Barkalow55029ae2008-02-20 13:43:53 -0500203 }
204
Josh Triplettd071d942009-09-07 01:56:00 -0700205 ALLOC_GROW(r->rewrite, r->rewrite_nr + 1, r->rewrite_alloc);
Daniel Barkalow55029ae2008-02-20 13:43:53 -0500206 ret = xcalloc(1, sizeof(struct rewrite));
Josh Triplettd071d942009-09-07 01:56:00 -0700207 r->rewrite[r->rewrite_nr++] = ret;
Junio C Hamano844112c2008-02-24 22:25:04 -0800208 if (len) {
Daniel Barkalow55029ae2008-02-20 13:43:53 -0500209 ret->base = xstrndup(base, len);
Junio C Hamano844112c2008-02-24 22:25:04 -0800210 ret->baselen = len;
211 }
212 else {
Daniel Barkalow55029ae2008-02-20 13:43:53 -0500213 ret->base = xstrdup(base);
Junio C Hamano844112c2008-02-24 22:25:04 -0800214 ret->baselen = strlen(base);
215 }
Daniel Barkalow55029ae2008-02-20 13:43:53 -0500216 return ret;
217}
218
219static void add_instead_of(struct rewrite *rewrite, const char *instead_of)
220{
221 ALLOC_GROW(rewrite->instead_of, rewrite->instead_of_nr + 1, rewrite->instead_of_alloc);
Junio C Hamano844112c2008-02-24 22:25:04 -0800222 rewrite->instead_of[rewrite->instead_of_nr].s = instead_of;
223 rewrite->instead_of[rewrite->instead_of_nr].len = strlen(instead_of);
224 rewrite->instead_of_nr++;
Daniel Barkalow55029ae2008-02-20 13:43:53 -0500225}
226
Daniel Barkalow5751f492007-05-12 11:45:53 -0400227static void read_remotes_file(struct remote *remote)
228{
229 FILE *f = fopen(git_path("remotes/%s", remote->name), "r");
230
231 if (!f)
232 return;
Miklos Vajna89cf4c72008-11-10 21:43:00 +0100233 remote->origin = REMOTE_REMOTES;
Daniel Barkalow5751f492007-05-12 11:45:53 -0400234 while (fgets(buffer, BUF_SIZE, f)) {
235 int value_list;
236 char *s, *p;
237
238 if (!prefixcmp(buffer, "URL:")) {
239 value_list = 0;
240 s = buffer + 4;
241 } else if (!prefixcmp(buffer, "Push:")) {
242 value_list = 1;
243 s = buffer + 5;
Daniel Barkalow5d46c9d2007-05-12 11:46:03 -0400244 } else if (!prefixcmp(buffer, "Pull:")) {
245 value_list = 2;
246 s = buffer + 5;
Daniel Barkalow5751f492007-05-12 11:45:53 -0400247 } else
248 continue;
249
250 while (isspace(*s))
251 s++;
252 if (!*s)
253 continue;
254
255 p = s + strlen(s);
256 while (isspace(p[-1]))
257 *--p = 0;
258
259 switch (value_list) {
260 case 0:
Daniel Barkalow55029ae2008-02-20 13:43:53 -0500261 add_url_alias(remote, xstrdup(s));
Daniel Barkalow5751f492007-05-12 11:45:53 -0400262 break;
263 case 1:
264 add_push_refspec(remote, xstrdup(s));
265 break;
Daniel Barkalow5d46c9d2007-05-12 11:46:03 -0400266 case 2:
267 add_fetch_refspec(remote, xstrdup(s));
268 break;
Daniel Barkalow5751f492007-05-12 11:45:53 -0400269 }
270 }
271 fclose(f);
272}
273
274static void read_branches_file(struct remote *remote)
275{
276 const char *slash = strchr(remote->name, '/');
Daniel Barkalowcf818342007-09-10 23:02:56 -0400277 char *frag;
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500278 struct strbuf branch = STRBUF_INIT;
Daniel Barkalow5751f492007-05-12 11:45:53 -0400279 int n = slash ? slash - remote->name : 1000;
280 FILE *f = fopen(git_path("branches/%.*s", n, remote->name), "r");
281 char *s, *p;
282 int len;
283
284 if (!f)
285 return;
286 s = fgets(buffer, BUF_SIZE, f);
287 fclose(f);
288 if (!s)
289 return;
290 while (isspace(*s))
291 s++;
292 if (!*s)
293 return;
Miklos Vajna89cf4c72008-11-10 21:43:00 +0100294 remote->origin = REMOTE_BRANCHES;
Daniel Barkalow5751f492007-05-12 11:45:53 -0400295 p = s + strlen(s);
296 while (isspace(p[-1]))
297 *--p = 0;
298 len = p - s;
299 if (slash)
300 len += strlen(slash);
301 p = xmalloc(len + 1);
302 strcpy(p, s);
303 if (slash)
304 strcat(p, slash);
Daniel Barkalow472fa4c2008-03-25 19:35:28 -0400305
306 /*
307 * With "slash", e.g. "git fetch jgarzik/netdev-2.6" when
308 * reading from $GIT_DIR/branches/jgarzik fetches "HEAD" from
309 * the partial URL obtained from the branches file plus
310 * "/netdev-2.6" and does not store it in any tracking ref.
311 * #branch specifier in the file is ignored.
312 *
313 * Otherwise, the branches file would have URL and optionally
314 * #branch specified. The "master" (or specified) branch is
315 * fetched and stored in the local branch of the same name.
316 */
Daniel Barkalowcf818342007-09-10 23:02:56 -0400317 frag = strchr(p, '#');
318 if (frag) {
319 *(frag++) = '\0';
Daniel Barkalow472fa4c2008-03-25 19:35:28 -0400320 strbuf_addf(&branch, "refs/heads/%s", frag);
321 } else
322 strbuf_addstr(&branch, "refs/heads/master");
323 if (!slash) {
324 strbuf_addf(&branch, ":refs/heads/%s", remote->name);
Daniel Barkalowcf818342007-09-10 23:02:56 -0400325 } else {
Daniel Barkalow472fa4c2008-03-25 19:35:28 -0400326 strbuf_reset(&branch);
327 strbuf_addstr(&branch, "HEAD:");
Daniel Barkalowcf818342007-09-10 23:02:56 -0400328 }
Daniel Barkalow55029ae2008-02-20 13:43:53 -0500329 add_url_alias(remote, p);
Linus Torvalds2af202b2009-06-18 10:28:43 -0700330 add_fetch_refspec(remote, strbuf_detach(&branch, NULL));
Martin Koegler18afe102008-11-10 22:47:11 +0100331 /*
332 * Cogito compatible push: push current HEAD to remote #branch
333 * (master if missing)
334 */
335 strbuf_init(&branch, 0);
336 strbuf_addstr(&branch, "HEAD");
337 if (frag)
338 strbuf_addf(&branch, ":refs/heads/%s", frag);
339 else
340 strbuf_addstr(&branch, ":refs/heads/master");
Linus Torvalds2af202b2009-06-18 10:28:43 -0700341 add_push_refspec(remote, strbuf_detach(&branch, NULL));
Daniel Barkalowd71ab172007-09-10 23:03:08 -0400342 remote->fetch_tags = 1; /* always auto-follow */
Daniel Barkalow5751f492007-05-12 11:45:53 -0400343}
344
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100345static int handle_config(const char *key, const char *value, void *cb)
Daniel Barkalow5751f492007-05-12 11:45:53 -0400346{
347 const char *name;
348 const char *subkey;
349 struct remote *remote;
Daniel Barkalowcf818342007-09-10 23:02:56 -0400350 struct branch *branch;
351 if (!prefixcmp(key, "branch.")) {
352 name = key + 7;
353 subkey = strrchr(name, '.');
Daniel Barkalowcf818342007-09-10 23:02:56 -0400354 if (!subkey)
355 return 0;
Junio C Hamano896c0532007-12-14 20:34:56 -0800356 branch = make_branch(name, subkey - name);
Daniel Barkalowcf818342007-09-10 23:02:56 -0400357 if (!strcmp(subkey, ".remote")) {
Junio C Hamanod2370cc2008-02-11 11:00:10 -0800358 if (!value)
359 return config_error_nonbool(key);
Daniel Barkalowcf818342007-09-10 23:02:56 -0400360 branch->remote_name = xstrdup(value);
Daniel Barkalowfa685bd2009-03-11 01:47:20 -0400361 if (branch == current_branch) {
Daniel Barkalowcf818342007-09-10 23:02:56 -0400362 default_remote_name = branch->remote_name;
Daniel Barkalowfa685bd2009-03-11 01:47:20 -0400363 explicit_default_remote_name = 1;
364 }
Junio C Hamanod2370cc2008-02-11 11:00:10 -0800365 } else if (!strcmp(subkey, ".merge")) {
366 if (!value)
367 return config_error_nonbool(key);
Daniel Barkalowcf818342007-09-10 23:02:56 -0400368 add_merge(branch, xstrdup(value));
Junio C Hamanod2370cc2008-02-11 11:00:10 -0800369 }
Daniel Barkalowcf818342007-09-10 23:02:56 -0400370 return 0;
Daniel Barkalow5751f492007-05-12 11:45:53 -0400371 }
Daniel Barkalow55029ae2008-02-20 13:43:53 -0500372 if (!prefixcmp(key, "url.")) {
373 struct rewrite *rewrite;
Daniel Barkalow60e3aba2008-04-12 15:32:00 -0400374 name = key + 4;
Daniel Barkalow55029ae2008-02-20 13:43:53 -0500375 subkey = strrchr(name, '.');
376 if (!subkey)
377 return 0;
Daniel Barkalow55029ae2008-02-20 13:43:53 -0500378 if (!strcmp(subkey, ".insteadof")) {
Josh Triplett1c2eafb2009-09-07 01:56:33 -0700379 rewrite = make_rewrite(&rewrites, name, subkey - name);
380 if (!value)
381 return config_error_nonbool(key);
382 add_instead_of(rewrite, xstrdup(value));
383 } else if (!strcmp(subkey, ".pushinsteadof")) {
384 rewrite = make_rewrite(&rewrites_push, name, subkey - name);
Daniel Barkalow55029ae2008-02-20 13:43:53 -0500385 if (!value)
386 return config_error_nonbool(key);
387 add_instead_of(rewrite, xstrdup(value));
388 }
389 }
Daniel Barkalow5751f492007-05-12 11:45:53 -0400390 if (prefixcmp(key, "remote."))
391 return 0;
392 name = key + 7;
Brandon Caseyc82efaf2008-10-14 15:30:21 -0500393 if (*name == '/') {
394 warning("Config remote shorthand cannot begin with '/': %s",
395 name);
396 return 0;
397 }
Daniel Barkalow5751f492007-05-12 11:45:53 -0400398 subkey = strrchr(name, '.');
399 if (!subkey)
Johannes Sixtcd294bc2009-04-23 15:49:05 +0200400 return 0;
Daniel Barkalow5751f492007-05-12 11:45:53 -0400401 remote = make_remote(name, subkey - name);
Miklos Vajna89cf4c72008-11-10 21:43:00 +0100402 remote->origin = REMOTE_CONFIG;
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200403 if (!strcmp(subkey, ".mirror"))
404 remote->mirror = git_config_bool(key, value);
405 else if (!strcmp(subkey, ".skipdefaultupdate"))
406 remote->skip_default_update = git_config_bool(key, value);
Björn Gustavsson7cc91a22009-11-09 21:11:06 +0100407 else if (!strcmp(subkey, ".skipfetchall"))
408 remote->skip_default_update = git_config_bool(key, value);
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200409 else if (!strcmp(subkey, ".url")) {
410 const char *v;
411 if (git_config_string(&v, key, value))
412 return -1;
413 add_url(remote, v);
Michael J Gruber20346232009-06-09 18:01:34 +0200414 } else if (!strcmp(subkey, ".pushurl")) {
415 const char *v;
416 if (git_config_string(&v, key, value))
417 return -1;
418 add_pushurl(remote, v);
Daniel Barkalow5751f492007-05-12 11:45:53 -0400419 } else if (!strcmp(subkey, ".push")) {
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200420 const char *v;
421 if (git_config_string(&v, key, value))
422 return -1;
423 add_push_refspec(remote, v);
Daniel Barkalow5d46c9d2007-05-12 11:46:03 -0400424 } else if (!strcmp(subkey, ".fetch")) {
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200425 const char *v;
426 if (git_config_string(&v, key, value))
427 return -1;
428 add_fetch_refspec(remote, v);
Daniel Barkalow5751f492007-05-12 11:45:53 -0400429 } else if (!strcmp(subkey, ".receivepack")) {
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200430 const char *v;
431 if (git_config_string(&v, key, value))
432 return -1;
Daniel Barkalow5751f492007-05-12 11:45:53 -0400433 if (!remote->receivepack)
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200434 remote->receivepack = v;
Daniel Barkalow5751f492007-05-12 11:45:53 -0400435 else
436 error("more than one receivepack given, using the first");
Daniel Barkalow0012ba22007-09-10 23:02:51 -0400437 } else if (!strcmp(subkey, ".uploadpack")) {
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200438 const char *v;
439 if (git_config_string(&v, key, value))
440 return -1;
Daniel Barkalow0012ba22007-09-10 23:02:51 -0400441 if (!remote->uploadpack)
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200442 remote->uploadpack = v;
Daniel Barkalow0012ba22007-09-10 23:02:51 -0400443 else
444 error("more than one uploadpack given, using the first");
Daniel Barkalowd71ab172007-09-10 23:03:08 -0400445 } else if (!strcmp(subkey, ".tagopt")) {
446 if (!strcmp(value, "--no-tags"))
447 remote->fetch_tags = -1;
Samuel Tardieu944163a2010-04-20 01:31:25 +0200448 else if (!strcmp(value, "--tags"))
449 remote->fetch_tags = 2;
Sam Vilain14c98212007-12-04 10:48:54 +1300450 } else if (!strcmp(subkey, ".proxy")) {
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200451 return git_config_string((const char **)&remote->http_proxy,
452 key, value);
Daniel Barkalowc578f512009-11-18 02:42:25 +0100453 } else if (!strcmp(subkey, ".vcs")) {
454 return git_config_string(&remote->foreign_vcs, key, value);
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200455 }
Daniel Barkalow5751f492007-05-12 11:45:53 -0400456 return 0;
457}
458
Daniel Barkalow55029ae2008-02-20 13:43:53 -0500459static void alias_all_urls(void)
460{
461 int i, j;
462 for (i = 0; i < remotes_nr; i++) {
Josh Triplett1c2eafb2009-09-07 01:56:33 -0700463 int add_pushurl_aliases;
Daniel Barkalow55029ae2008-02-20 13:43:53 -0500464 if (!remotes[i])
465 continue;
Michael J Gruber20346232009-06-09 18:01:34 +0200466 for (j = 0; j < remotes[i]->pushurl_nr; j++) {
Josh Triplettd071d942009-09-07 01:56:00 -0700467 remotes[i]->pushurl[j] = alias_url(remotes[i]->pushurl[j], &rewrites);
Michael J Gruber20346232009-06-09 18:01:34 +0200468 }
Josh Triplett1c2eafb2009-09-07 01:56:33 -0700469 add_pushurl_aliases = remotes[i]->pushurl_nr == 0;
470 for (j = 0; j < remotes[i]->url_nr; j++) {
471 if (add_pushurl_aliases)
472 add_pushurl_alias(remotes[i], remotes[i]->url[j]);
473 remotes[i]->url[j] = alias_url(remotes[i]->url[j], &rewrites);
474 }
Daniel Barkalow55029ae2008-02-20 13:43:53 -0500475 }
476}
477
Daniel Barkalow5751f492007-05-12 11:45:53 -0400478static void read_config(void)
479{
480 unsigned char sha1[20];
481 const char *head_ref;
482 int flag;
Tor Arntsen2543d9b2010-06-04 11:32:11 +0200483 if (default_remote_name) /* did this already */
Daniel Barkalow5751f492007-05-12 11:45:53 -0400484 return;
485 default_remote_name = xstrdup("origin");
486 current_branch = NULL;
Nguyễn Thái Ngọc Duy8cad4742011-12-12 18:20:32 +0700487 head_ref = resolve_ref_unsafe("HEAD", sha1, 0, &flag);
Daniel Barkalow5751f492007-05-12 11:45:53 -0400488 if (head_ref && (flag & REF_ISSYMREF) &&
489 !prefixcmp(head_ref, "refs/heads/")) {
Daniel Barkalowcf818342007-09-10 23:02:56 -0400490 current_branch =
491 make_branch(head_ref + strlen("refs/heads/"), 0);
Daniel Barkalow5751f492007-05-12 11:45:53 -0400492 }
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100493 git_config(handle_config, NULL);
Daniel Barkalow55029ae2008-02-20 13:43:53 -0500494 alias_all_urls();
Daniel Barkalow5751f492007-05-12 11:45:53 -0400495}
496
Junio C Hamano47c6ef12008-07-26 23:15:51 -0700497/*
Brandon Casey2cb1f362008-08-21 19:16:30 -0500498 * This function frees a refspec array.
499 * Warning: code paths should be checked to ensure that the src
500 * and dst pointers are always freeable pointers as well
501 * as the refspec pointer itself.
502 */
Nanako Shiraishi697d7f52008-09-25 18:41:00 +0900503static void free_refspecs(struct refspec *refspec, int nr_refspec)
Brandon Casey2cb1f362008-08-21 19:16:30 -0500504{
505 int i;
506
507 if (!refspec)
508 return;
509
510 for (i = 0; i < nr_refspec; i++) {
511 free(refspec[i].src);
512 free(refspec[i].dst);
513 }
514 free(refspec);
515}
516
Jonas Fonseca24b61772008-04-13 11:56:54 +0200517static struct refspec *parse_refspec_internal(int nr_refspec, const char **refspec, int fetch, int verify)
Daniel Barkalow6b628162007-05-12 11:45:59 -0400518{
519 int i;
520 struct refspec *rs = xcalloc(sizeof(*rs), nr_refspec);
Junio C Hamano46220ca2008-03-20 23:34:37 -0700521
Daniel Barkalow6b628162007-05-12 11:45:59 -0400522 for (i = 0; i < nr_refspec; i++) {
Junio C Hamano47c6ef12008-07-26 23:15:51 -0700523 size_t llen;
Junio C Hamano46220ca2008-03-20 23:34:37 -0700524 int is_glob;
525 const char *lhs, *rhs;
Michael Haggerty8d9c5012011-09-15 23:10:25 +0200526 int flags;
Junio C Hamano46220ca2008-03-20 23:34:37 -0700527
Benjamin Kramer8e76bf32009-03-13 13:51:33 +0100528 is_glob = 0;
Junio C Hamano46220ca2008-03-20 23:34:37 -0700529
530 lhs = refspec[i];
531 if (*lhs == '+') {
Daniel Barkalow6b628162007-05-12 11:45:59 -0400532 rs[i].force = 1;
Junio C Hamano46220ca2008-03-20 23:34:37 -0700533 lhs++;
Daniel Barkalow6b628162007-05-12 11:45:59 -0400534 }
Junio C Hamano46220ca2008-03-20 23:34:37 -0700535
536 rhs = strrchr(lhs, ':');
Paolo Bonzinia83619d2008-04-28 11:32:12 -0400537
538 /*
539 * Before going on, special case ":" (or "+:") as a refspec
540 * for matching refs.
541 */
542 if (!fetch && rhs == lhs && rhs[1] == '\0') {
543 rs[i].matching = 1;
544 continue;
545 }
546
Junio C Hamano46220ca2008-03-20 23:34:37 -0700547 if (rhs) {
Junio C Hamano47c6ef12008-07-26 23:15:51 -0700548 size_t rlen = strlen(++rhs);
Daniel Barkalowabd2bde2009-03-07 01:11:39 -0500549 is_glob = (1 <= rlen && strchr(rhs, '*'));
Daniel Barkalow08fbdb32009-03-07 01:11:36 -0500550 rs[i].dst = xstrndup(rhs, rlen);
Junio C Hamano46220ca2008-03-20 23:34:37 -0700551 }
552
553 llen = (rhs ? (rhs - lhs - 1) : strlen(lhs));
Daniel Barkalowabd2bde2009-03-07 01:11:39 -0500554 if (1 <= llen && memchr(lhs, '*', llen)) {
Junio C Hamano7d19da42008-03-25 21:15:52 -0700555 if ((rhs && !is_glob) || (!rhs && fetch))
556 goto invalid;
557 is_glob = 1;
Junio C Hamano7d19da42008-03-25 21:15:52 -0700558 } else if (rhs && is_glob) {
559 goto invalid;
Junio C Hamano46220ca2008-03-20 23:34:37 -0700560 }
Junio C Hamano7d19da42008-03-25 21:15:52 -0700561
Junio C Hamano46220ca2008-03-20 23:34:37 -0700562 rs[i].pattern = is_glob;
563 rs[i].src = xstrndup(lhs, llen);
Michael Haggerty8d9c5012011-09-15 23:10:25 +0200564 flags = REFNAME_ALLOW_ONELEVEL | (is_glob ? REFNAME_REFSPEC_PATTERN : 0);
Junio C Hamano46220ca2008-03-20 23:34:37 -0700565
566 if (fetch) {
567 /*
568 * LHS
569 * - empty is allowed; it means HEAD.
570 * - otherwise it must be a valid looking ref.
571 */
572 if (!*rs[i].src)
573 ; /* empty is ok */
Michael Haggerty8d9c5012011-09-15 23:10:25 +0200574 else if (check_refname_format(rs[i].src, flags))
575 goto invalid;
Junio C Hamano46220ca2008-03-20 23:34:37 -0700576 /*
577 * RHS
Junio C Hamano7d19da42008-03-25 21:15:52 -0700578 * - missing is ok, and is same as empty.
Junio C Hamano46220ca2008-03-20 23:34:37 -0700579 * - empty is ok; it means not to store.
580 * - otherwise it must be a valid looking ref.
581 */
Michael Haggerty8d9c5012011-09-15 23:10:25 +0200582 if (!rs[i].dst)
Junio C Hamano46220ca2008-03-20 23:34:37 -0700583 ; /* ok */
Michael Haggerty8d9c5012011-09-15 23:10:25 +0200584 else if (!*rs[i].dst)
Junio C Hamano46220ca2008-03-20 23:34:37 -0700585 ; /* ok */
Michael Haggerty8d9c5012011-09-15 23:10:25 +0200586 else if (check_refname_format(rs[i].dst, flags))
587 goto invalid;
Daniel Barkalow6b628162007-05-12 11:45:59 -0400588 } else {
Junio C Hamano46220ca2008-03-20 23:34:37 -0700589 /*
590 * LHS
591 * - empty is allowed; it means delete.
592 * - when wildcarded, it must be a valid looking ref.
593 * - otherwise, it must be an extended SHA-1, but
594 * there is no existing way to validate this.
595 */
596 if (!*rs[i].src)
597 ; /* empty is ok */
598 else if (is_glob) {
Michael Haggerty8d9c5012011-09-15 23:10:25 +0200599 if (check_refname_format(rs[i].src, flags))
Junio C Hamano46220ca2008-03-20 23:34:37 -0700600 goto invalid;
601 }
602 else
603 ; /* anything goes, for now */
604 /*
605 * RHS
606 * - missing is allowed, but LHS then must be a
607 * valid looking ref.
608 * - empty is not allowed.
609 * - otherwise it must be a valid looking ref.
610 */
611 if (!rs[i].dst) {
Michael Haggerty8d9c5012011-09-15 23:10:25 +0200612 if (check_refname_format(rs[i].src, flags))
Junio C Hamano46220ca2008-03-20 23:34:37 -0700613 goto invalid;
614 } else if (!*rs[i].dst) {
615 goto invalid;
616 } else {
Michael Haggerty8d9c5012011-09-15 23:10:25 +0200617 if (check_refname_format(rs[i].dst, flags))
Junio C Hamano46220ca2008-03-20 23:34:37 -0700618 goto invalid;
619 }
Daniel Barkalowef00d152008-03-17 22:05:23 -0400620 }
Daniel Barkalow6b628162007-05-12 11:45:59 -0400621 }
622 return rs;
Junio C Hamano46220ca2008-03-20 23:34:37 -0700623
624 invalid:
Jonas Fonseca24b61772008-04-13 11:56:54 +0200625 if (verify) {
Brandon Casey2cb1f362008-08-21 19:16:30 -0500626 /*
627 * nr_refspec must be greater than zero and i must be valid
628 * since it is only possible to reach this point from within
629 * the for loop above.
630 */
631 free_refspecs(rs, i+1);
Jonas Fonseca24b61772008-04-13 11:56:54 +0200632 return NULL;
633 }
Junio C Hamano46220ca2008-03-20 23:34:37 -0700634 die("Invalid refspec '%s'", refspec[i]);
635}
636
Jonas Fonseca24b61772008-04-13 11:56:54 +0200637int valid_fetch_refspec(const char *fetch_refspec_str)
638{
Jonas Fonseca24b61772008-04-13 11:56:54 +0200639 struct refspec *refspec;
640
Gary V. Vaughan66dbfd52010-05-14 09:31:33 +0000641 refspec = parse_refspec_internal(1, &fetch_refspec_str, 1, 1);
Brandon Casey2cb1f362008-08-21 19:16:30 -0500642 free_refspecs(refspec, 1);
Jonas Fonseca24b61772008-04-13 11:56:54 +0200643 return !!refspec;
644}
645
Junio C Hamano46220ca2008-03-20 23:34:37 -0700646struct refspec *parse_fetch_refspec(int nr_refspec, const char **refspec)
647{
Jonas Fonseca24b61772008-04-13 11:56:54 +0200648 return parse_refspec_internal(nr_refspec, refspec, 1, 0);
Junio C Hamano46220ca2008-03-20 23:34:37 -0700649}
650
Nanako Shiraishi697d7f52008-09-25 18:41:00 +0900651static struct refspec *parse_push_refspec(int nr_refspec, const char **refspec)
Junio C Hamano46220ca2008-03-20 23:34:37 -0700652{
Jonas Fonseca24b61772008-04-13 11:56:54 +0200653 return parse_refspec_internal(nr_refspec, refspec, 0, 0);
Daniel Barkalow6b628162007-05-12 11:45:59 -0400654}
655
Daniel Barkalow72ff8942009-11-18 02:42:28 +0100656void free_refspec(int nr_refspec, struct refspec *refspec)
657{
658 int i;
659 for (i = 0; i < nr_refspec; i++) {
660 free(refspec[i].src);
661 free(refspec[i].dst);
662 }
663 free(refspec);
664}
665
Daniel Barkalowdf93e332008-02-15 14:14:18 -0500666static int valid_remote_nick(const char *name)
667{
Alexander Potashev8ca12c02009-01-10 15:07:50 +0300668 if (!name[0] || is_dot_or_dotdot(name))
Daniel Barkalowdf93e332008-02-15 14:14:18 -0500669 return 0;
670 return !strchr(name, '/'); /* no slash */
671}
672
Daniel Barkalow5751f492007-05-12 11:45:53 -0400673struct remote *remote_get(const char *name)
674{
675 struct remote *ret;
Daniel Barkalowfa685bd2009-03-11 01:47:20 -0400676 int name_given = 0;
Daniel Barkalow5751f492007-05-12 11:45:53 -0400677
678 read_config();
Daniel Barkalowfa685bd2009-03-11 01:47:20 -0400679 if (name)
680 name_given = 1;
681 else {
Daniel Barkalow5751f492007-05-12 11:45:53 -0400682 name = default_remote_name;
Daniel Barkalowfa685bd2009-03-11 01:47:20 -0400683 name_given = explicit_default_remote_name;
684 }
Junio C Hamano9326d492009-03-16 00:35:09 -0700685
Daniel Barkalow5751f492007-05-12 11:45:53 -0400686 ret = make_remote(name, 0);
Daniel Barkalowdf93e332008-02-15 14:14:18 -0500687 if (valid_remote_nick(name)) {
Daniel Barkalow0a4da292009-11-18 02:42:23 +0100688 if (!valid_remote(ret))
Daniel Barkalow5751f492007-05-12 11:45:53 -0400689 read_remotes_file(ret);
Daniel Barkalow0a4da292009-11-18 02:42:23 +0100690 if (!valid_remote(ret))
Daniel Barkalow5751f492007-05-12 11:45:53 -0400691 read_branches_file(ret);
692 }
Daniel Barkalow0a4da292009-11-18 02:42:23 +0100693 if (name_given && !valid_remote(ret))
Daniel Barkalow55029ae2008-02-20 13:43:53 -0500694 add_url_alias(ret, name);
Daniel Barkalow0a4da292009-11-18 02:42:23 +0100695 if (!valid_remote(ret))
Daniel Barkalow5751f492007-05-12 11:45:53 -0400696 return NULL;
Junio C Hamano46220ca2008-03-20 23:34:37 -0700697 ret->fetch = parse_fetch_refspec(ret->fetch_refspec_nr, ret->fetch_refspec);
698 ret->push = parse_push_refspec(ret->push_refspec_nr, ret->push_refspec);
Daniel Barkalow5751f492007-05-12 11:45:53 -0400699 return ret;
700}
Daniel Barkalow6b628162007-05-12 11:45:59 -0400701
Finn Arne Gangstad9a23ba32009-04-06 15:41:01 +0200702int remote_is_configured(const char *name)
703{
704 int i;
705 read_config();
706
707 for (i = 0; i < remotes_nr; i++)
708 if (!strcmp(name, remotes[i]->name))
709 return 1;
710 return 0;
711}
712
Johannes Schindelinb42f6922007-07-10 18:48:40 +0100713int for_each_remote(each_remote_fn fn, void *priv)
714{
715 int i, result = 0;
716 read_config();
Daniel Barkalow2d313472008-02-18 23:41:41 -0500717 for (i = 0; i < remotes_nr && !result; i++) {
Johannes Schindelinb42f6922007-07-10 18:48:40 +0100718 struct remote *r = remotes[i];
719 if (!r)
720 continue;
721 if (!r->fetch)
Junio C Hamano46220ca2008-03-20 23:34:37 -0700722 r->fetch = parse_fetch_refspec(r->fetch_refspec_nr,
723 r->fetch_refspec);
Johannes Schindelinb42f6922007-07-10 18:48:40 +0100724 if (!r->push)
Junio C Hamano46220ca2008-03-20 23:34:37 -0700725 r->push = parse_push_refspec(r->push_refspec_nr,
726 r->push_refspec);
Johannes Schindelinb42f6922007-07-10 18:48:40 +0100727 result = fn(r, priv);
728 }
729 return result;
730}
731
Daniel Barkalow2467a4f2007-10-08 00:25:07 -0400732void ref_remove_duplicates(struct ref *ref_map)
733{
Thiago Farina183113a2010-07-04 16:46:19 -0300734 struct string_list refs = STRING_LIST_INIT_NODUP;
Julian Phillips73cf0822009-10-25 21:28:11 +0000735 struct string_list_item *item = NULL;
736 struct ref *prev = NULL, *next = NULL;
737 for (; ref_map; prev = ref_map, ref_map = next) {
738 next = ref_map->next;
Daniel Barkalow2467a4f2007-10-08 00:25:07 -0400739 if (!ref_map->peer_ref)
740 continue;
Julian Phillips73cf0822009-10-25 21:28:11 +0000741
Julian Phillipse8c8b712010-06-26 00:41:37 +0100742 item = string_list_lookup(&refs, ref_map->peer_ref->name);
Julian Phillips73cf0822009-10-25 21:28:11 +0000743 if (item) {
744 if (strcmp(((struct ref *)item->util)->name,
745 ref_map->name))
746 die("%s tracks both %s and %s",
747 ref_map->peer_ref->name,
748 ((struct ref *)item->util)->name,
749 ref_map->name);
750 prev->next = ref_map->next;
751 free(ref_map->peer_ref);
752 free(ref_map);
Julian Phillips95c96d42009-11-13 21:25:56 +0000753 ref_map = prev; /* skip this; we freed it */
754 continue;
Daniel Barkalow2467a4f2007-10-08 00:25:07 -0400755 }
Julian Phillips73cf0822009-10-25 21:28:11 +0000756
Julian Phillips78a395d2010-06-26 00:41:35 +0100757 item = string_list_insert(&refs, ref_map->peer_ref->name);
Julian Phillips73cf0822009-10-25 21:28:11 +0000758 item->util = ref_map;
Daniel Barkalow2467a4f2007-10-08 00:25:07 -0400759 }
Julian Phillips73cf0822009-10-25 21:28:11 +0000760 string_list_clear(&refs, 0);
Daniel Barkalow2467a4f2007-10-08 00:25:07 -0400761}
762
Shawn O. Pearce28b91f82007-09-19 00:49:27 -0400763int remote_has_url(struct remote *remote, const char *url)
Daniel Barkalow5d46c9d2007-05-12 11:46:03 -0400764{
765 int i;
Shawn O. Pearce28b91f82007-09-19 00:49:27 -0400766 for (i = 0; i < remote->url_nr; i++) {
767 if (!strcmp(remote->url[i], url))
Daniel Barkalow5d46c9d2007-05-12 11:46:03 -0400768 return 1;
769 }
770 return 0;
771}
772
Daniel Barkalowe9282132009-03-07 01:11:34 -0500773static int match_name_with_pattern(const char *key, const char *name,
774 const char *value, char **result)
Daniel Barkalowa3c84232009-03-07 01:11:29 -0500775{
Daniel Barkalow08fbdb32009-03-07 01:11:36 -0500776 const char *kstar = strchr(key, '*');
777 size_t klen;
Daniel Barkalowabd2bde2009-03-07 01:11:39 -0500778 size_t ksuffixlen;
779 size_t namelen;
Daniel Barkalow08fbdb32009-03-07 01:11:36 -0500780 int ret;
781 if (!kstar)
782 die("Key '%s' of pattern had no '*'", key);
783 klen = kstar - key;
Daniel Barkalowabd2bde2009-03-07 01:11:39 -0500784 ksuffixlen = strlen(kstar + 1);
785 namelen = strlen(name);
786 ret = !strncmp(name, key, klen) && namelen >= klen + ksuffixlen &&
787 !memcmp(name + namelen - ksuffixlen, kstar + 1, ksuffixlen);
Daniel Barkalowe9282132009-03-07 01:11:34 -0500788 if (ret && value) {
Daniel Barkalow08fbdb32009-03-07 01:11:36 -0500789 const char *vstar = strchr(value, '*');
790 size_t vlen;
Daniel Barkalowabd2bde2009-03-07 01:11:39 -0500791 size_t vsuffixlen;
Daniel Barkalow08fbdb32009-03-07 01:11:36 -0500792 if (!vstar)
793 die("Value '%s' of pattern has no '*'", value);
794 vlen = vstar - value;
Daniel Barkalowabd2bde2009-03-07 01:11:39 -0500795 vsuffixlen = strlen(vstar + 1);
796 *result = xmalloc(vlen + vsuffixlen +
Daniel Barkalowe9282132009-03-07 01:11:34 -0500797 strlen(name) -
Daniel Barkalowabd2bde2009-03-07 01:11:39 -0500798 klen - ksuffixlen + 1);
799 strncpy(*result, value, vlen);
800 strncpy(*result + vlen,
801 name + klen, namelen - klen - ksuffixlen);
802 strcpy(*result + vlen + namelen - klen - ksuffixlen,
803 vstar + 1);
Daniel Barkalowe9282132009-03-07 01:11:34 -0500804 }
Daniel Barkalowa3c84232009-03-07 01:11:29 -0500805 return ret;
806}
807
Carlos Martín Nietoc5003522011-10-15 07:04:24 +0200808static int query_refspecs(struct refspec *refs, int ref_count, struct refspec *query)
Daniel Barkalow72ff8942009-11-18 02:42:28 +0100809{
810 int i;
Carlos Martín Nietoc5003522011-10-15 07:04:24 +0200811 int find_src = !query->src;
Daniel Barkalow72ff8942009-11-18 02:42:28 +0100812
Carlos Martín Nietoc5003522011-10-15 07:04:24 +0200813 if (find_src && !query->dst)
814 return error("query_refspecs: need either src or dst");
Johannes Schindelinb42f6922007-07-10 18:48:40 +0100815
Carlos Martín Nietoc5003522011-10-15 07:04:24 +0200816 for (i = 0; i < ref_count; i++) {
817 struct refspec *refspec = &refs[i];
818 const char *key = find_src ? refspec->dst : refspec->src;
819 const char *value = find_src ? refspec->src : refspec->dst;
820 const char *needle = find_src ? query->dst : query->src;
821 char **result = find_src ? &query->src : &query->dst;
822
Shawn O. Pearce009c5bc2007-09-25 00:13:14 -0400823 if (!refspec->dst)
Daniel Barkalow5d46c9d2007-05-12 11:46:03 -0400824 continue;
Carlos Martín Nietoc5003522011-10-15 07:04:24 +0200825 if (refspec->pattern) {
Daniel Barkalowe9282132009-03-07 01:11:34 -0500826 if (match_name_with_pattern(key, needle, value, result)) {
Carlos Martín Nietoc5003522011-10-15 07:04:24 +0200827 query->force = refspec->force;
Daniel Barkalow5d46c9d2007-05-12 11:46:03 -0400828 return 0;
829 }
Johannes Schindelinb42f6922007-07-10 18:48:40 +0100830 } else if (!strcmp(needle, key)) {
831 *result = xstrdup(value);
Carlos Martín Nietoc5003522011-10-15 07:04:24 +0200832 query->force = refspec->force;
Johannes Schindelinb42f6922007-07-10 18:48:40 +0100833 return 0;
Daniel Barkalow5d46c9d2007-05-12 11:46:03 -0400834 }
835 }
Daniel Barkalow5d46c9d2007-05-12 11:46:03 -0400836 return -1;
837}
838
Carlos Martín Nietoc5003522011-10-15 07:04:24 +0200839char *apply_refspecs(struct refspec *refspecs, int nr_refspec,
840 const char *name)
841{
842 struct refspec query;
843
844 memset(&query, 0, sizeof(struct refspec));
845 query.src = (char *)name;
846
847 if (query_refspecs(refspecs, nr_refspec, &query))
848 return NULL;
849
850 return query.dst;
851}
852
853int remote_find_tracking(struct remote *remote, struct refspec *refspec)
854{
855 return query_refspecs(remote->fetch, remote->fetch_refspec_nr, refspec);
856}
857
René Scharfe80097682008-10-18 10:37:40 +0200858static struct ref *alloc_ref_with_prefix(const char *prefix, size_t prefixlen,
859 const char *name)
860{
861 size_t len = strlen(name);
862 struct ref *ref = xcalloc(1, sizeof(struct ref) + prefixlen + len + 1);
863 memcpy(ref->name, prefix, prefixlen);
864 memcpy(ref->name + prefixlen, name, len);
865 return ref;
866}
867
René Scharfe59c69c02008-10-18 10:44:18 +0200868struct ref *alloc_ref(const char *name)
Daniel Barkalowdfd255d2007-07-10 00:47:23 -0400869{
René Scharfe59c69c02008-10-18 10:44:18 +0200870 return alloc_ref_with_prefix("", 0, name);
Krzysztof Kowalczyk737922a2008-05-10 16:26:58 -0700871}
872
Jeff King59a57752011-06-07 19:03:03 -0400873struct ref *copy_ref(const struct ref *ref)
Daniel Barkalowd71ab172007-09-10 23:03:08 -0400874{
Jay Soffian7b3db092009-02-27 14:10:04 -0500875 struct ref *cpy;
876 size_t len;
877 if (!ref)
878 return NULL;
879 len = strlen(ref->name);
880 cpy = xmalloc(sizeof(struct ref) + len + 1);
881 memcpy(cpy, ref, sizeof(struct ref) + len + 1);
882 cpy->next = NULL;
883 cpy->symref = ref->symref ? xstrdup(ref->symref) : NULL;
884 cpy->remote_status = ref->remote_status ? xstrdup(ref->remote_status) : NULL;
885 cpy->peer_ref = copy_ref(ref->peer_ref);
886 return cpy;
Daniel Barkalowd71ab172007-09-10 23:03:08 -0400887}
888
Daniel Barkalow45773702007-10-29 21:05:40 -0400889struct ref *copy_ref_list(const struct ref *ref)
890{
891 struct ref *ret = NULL;
892 struct ref **tail = &ret;
893 while (ref) {
894 *tail = copy_ref(ref);
895 ref = ref->next;
896 tail = &((*tail)->next);
897 }
898 return ret;
899}
900
Nanako Shiraishi697d7f52008-09-25 18:41:00 +0900901static void free_ref(struct ref *ref)
Daniel Barkalowbe885d92008-04-26 15:53:12 -0400902{
903 if (!ref)
904 return;
Jay Soffian7b3db092009-02-27 14:10:04 -0500905 free_ref(ref->peer_ref);
Daniel Barkalowbe885d92008-04-26 15:53:12 -0400906 free(ref->remote_status);
907 free(ref->symref);
908 free(ref);
909}
910
Daniel Barkalowdfd255d2007-07-10 00:47:23 -0400911void free_refs(struct ref *ref)
912{
913 struct ref *next;
914 while (ref) {
915 next = ref->next;
Daniel Barkalowbe885d92008-04-26 15:53:12 -0400916 free_ref(ref);
Daniel Barkalowdfd255d2007-07-10 00:47:23 -0400917 ref = next;
918 }
919}
920
Daniel Barkalow6b628162007-05-12 11:45:59 -0400921static int count_refspec_match(const char *pattern,
922 struct ref *refs,
923 struct ref **matched_ref)
924{
925 int patlen = strlen(pattern);
926 struct ref *matched_weak = NULL;
927 struct ref *matched = NULL;
928 int weak_match = 0;
929 int match = 0;
930
931 for (weak_match = match = 0; refs; refs = refs->next) {
932 char *name = refs->name;
933 int namelen = strlen(name);
Daniel Barkalow6b628162007-05-12 11:45:59 -0400934
Steffen Prohaskaae36bdc2007-11-11 15:01:47 +0100935 if (!refname_match(pattern, name, ref_rev_parse_rules))
Daniel Barkalow6b628162007-05-12 11:45:59 -0400936 continue;
937
938 /* A match is "weak" if it is with refs outside
939 * heads or tags, and did not specify the pattern
940 * in full (e.g. "refs/remotes/origin/master") or at
941 * least from the toplevel (e.g. "remotes/origin/master");
942 * otherwise "git push $URL master" would result in
943 * ambiguity between remotes/origin/master and heads/master
944 * at the remote site.
945 */
946 if (namelen != patlen &&
947 patlen != namelen - 5 &&
948 prefixcmp(name, "refs/heads/") &&
949 prefixcmp(name, "refs/tags/")) {
950 /* We want to catch the case where only weak
951 * matches are found and there are multiple
952 * matches, and where more than one strong
953 * matches are found, as ambiguous. One
954 * strong match with zero or more weak matches
955 * are acceptable as a unique match.
956 */
957 matched_weak = refs;
958 weak_match++;
959 }
960 else {
961 matched = refs;
962 match++;
963 }
964 }
965 if (!matched) {
966 *matched_ref = matched_weak;
967 return weak_match;
968 }
969 else {
970 *matched_ref = matched;
971 return match;
972 }
973}
974
Daniel Barkalow1d735262007-07-10 00:47:26 -0400975static void tail_link_ref(struct ref *ref, struct ref ***tail)
Daniel Barkalow6b628162007-05-12 11:45:59 -0400976{
977 **tail = ref;
Daniel Barkalow1d735262007-07-10 00:47:26 -0400978 while (ref->next)
979 ref = ref->next;
Daniel Barkalow6b628162007-05-12 11:45:59 -0400980 *tail = &ref->next;
Daniel Barkalow6b628162007-05-12 11:45:59 -0400981}
982
Felipe Contreras67655242012-02-23 00:43:40 +0200983static struct ref *alloc_delete_ref(void)
984{
985 struct ref *ref = alloc_ref("(delete)");
986 hashclr(ref->new_sha1);
987 return ref;
988}
989
Daniel Barkalow6b628162007-05-12 11:45:59 -0400990static struct ref *try_explicit_object_name(const char *name)
991{
992 unsigned char sha1[20];
993 struct ref *ref;
Daniel Barkalow6b628162007-05-12 11:45:59 -0400994
Felipe Contreras67655242012-02-23 00:43:40 +0200995 if (!*name)
996 return alloc_delete_ref();
Daniel Barkalow6b628162007-05-12 11:45:59 -0400997 if (get_sha1(name, sha1))
998 return NULL;
René Scharfe59c69c02008-10-18 10:44:18 +0200999 ref = alloc_ref(name);
Daniel Barkalow6b628162007-05-12 11:45:59 -04001000 hashcpy(ref->new_sha1, sha1);
1001 return ref;
1002}
1003
Daniel Barkalow1d735262007-07-10 00:47:26 -04001004static struct ref *make_linked_ref(const char *name, struct ref ***tail)
Junio C Hamano163f0ee2007-06-09 00:07:34 -07001005{
René Scharfe59c69c02008-10-18 10:44:18 +02001006 struct ref *ret = alloc_ref(name);
Daniel Barkalow1d735262007-07-10 00:47:26 -04001007 tail_link_ref(ret, tail);
1008 return ret;
Junio C Hamano163f0ee2007-06-09 00:07:34 -07001009}
1010
Jeff Kingf8aae122008-04-23 05:16:06 -04001011static char *guess_ref(const char *name, struct ref *peer)
1012{
1013 struct strbuf buf = STRBUF_INIT;
1014 unsigned char sha1[20];
1015
Nguyễn Thái Ngọc Duy8cad4742011-12-12 18:20:32 +07001016 const char *r = resolve_ref_unsafe(peer->name, sha1, 1, NULL);
Jeff Kingf8aae122008-04-23 05:16:06 -04001017 if (!r)
1018 return NULL;
1019
1020 if (!prefixcmp(r, "refs/heads/"))
1021 strbuf_addstr(&buf, "refs/heads/");
1022 else if (!prefixcmp(r, "refs/tags/"))
1023 strbuf_addstr(&buf, "refs/tags/");
1024 else
1025 return NULL;
1026
1027 strbuf_addstr(&buf, name);
1028 return strbuf_detach(&buf, NULL);
1029}
1030
Junio C Hamano54a8ad92007-06-08 23:22:58 -07001031static int match_explicit(struct ref *src, struct ref *dst,
1032 struct ref ***dst_tail,
Jeff King9a7bbd12008-06-16 12:15:02 -04001033 struct refspec *rs)
Junio C Hamano54a8ad92007-06-08 23:22:58 -07001034{
1035 struct ref *matched_src, *matched_dst;
Jay Soffiancdf690e2009-02-25 03:32:16 -05001036 int copy_src;
Junio C Hamano54a8ad92007-06-08 23:22:58 -07001037
1038 const char *dst_value = rs->dst;
Jeff Kingf8aae122008-04-23 05:16:06 -04001039 char *dst_guess;
Junio C Hamano54a8ad92007-06-08 23:22:58 -07001040
Paolo Bonzinia83619d2008-04-28 11:32:12 -04001041 if (rs->pattern || rs->matching)
Jeff King9a7bbd12008-06-16 12:15:02 -04001042 return 0;
Junio C Hamano54a8ad92007-06-08 23:22:58 -07001043
Junio C Hamano54a8ad92007-06-08 23:22:58 -07001044 matched_src = matched_dst = NULL;
1045 switch (count_refspec_match(rs->src, src, &matched_src)) {
1046 case 1:
Jay Soffiancdf690e2009-02-25 03:32:16 -05001047 copy_src = 1;
Junio C Hamano54a8ad92007-06-08 23:22:58 -07001048 break;
1049 case 0:
1050 /* The source could be in the get_sha1() format
1051 * not a reference name. :refs/other is a
1052 * way to delete 'other' ref at the remote end.
1053 */
1054 matched_src = try_explicit_object_name(rs->src);
Shawn O. Pearce7dfee372007-09-25 00:13:19 -04001055 if (!matched_src)
Jeff King9a7bbd12008-06-16 12:15:02 -04001056 return error("src refspec %s does not match any.", rs->src);
Jay Soffiancdf690e2009-02-25 03:32:16 -05001057 copy_src = 0;
Junio C Hamano54a8ad92007-06-08 23:22:58 -07001058 break;
1059 default:
Jeff King9a7bbd12008-06-16 12:15:02 -04001060 return error("src refspec %s matches more than one.", rs->src);
Junio C Hamano54a8ad92007-06-08 23:22:58 -07001061 }
Junio C Hamano3c8b7df2007-06-09 00:14:04 -07001062
Shawn O. Pearce4491e622007-09-25 00:13:25 -04001063 if (!dst_value) {
Daniel Barkalow9f0ea7e2008-02-20 12:54:05 -05001064 unsigned char sha1[20];
1065 int flag;
1066
Nguyễn Thái Ngọc Duy8cad4742011-12-12 18:20:32 +07001067 dst_value = resolve_ref_unsafe(matched_src->name, sha1, 1, &flag);
Daniel Barkalow9f0ea7e2008-02-20 12:54:05 -05001068 if (!dst_value ||
1069 ((flag & REF_ISSYMREF) &&
1070 prefixcmp(dst_value, "refs/heads/")))
1071 die("%s cannot be resolved to branch.",
1072 matched_src->name);
Shawn O. Pearce4491e622007-09-25 00:13:25 -04001073 }
Junio C Hamano3c8b7df2007-06-09 00:14:04 -07001074
Junio C Hamano54a8ad92007-06-08 23:22:58 -07001075 switch (count_refspec_match(dst_value, dst, &matched_dst)) {
1076 case 1:
1077 break;
1078 case 0:
Junio C Hamano163f0ee2007-06-09 00:07:34 -07001079 if (!memcmp(dst_value, "refs/", 5))
Daniel Barkalow1d735262007-07-10 00:47:26 -04001080 matched_dst = make_linked_ref(dst_value, dst_tail);
Brian Gianforcaroeeefa7c2009-09-01 01:35:10 -04001081 else if ((dst_guess = guess_ref(dst_value, matched_src)))
Jeff Kingf8aae122008-04-23 05:16:06 -04001082 matched_dst = make_linked_ref(dst_guess, dst_tail);
Junio C Hamano3c8b7df2007-06-09 00:14:04 -07001083 else
Jeff Kingf8aae122008-04-23 05:16:06 -04001084 error("unable to push to unqualified destination: %s\n"
1085 "The destination refspec neither matches an "
1086 "existing ref on the remote nor\n"
1087 "begins with refs/, and we are unable to "
1088 "guess a prefix based on the source ref.",
1089 dst_value);
Junio C Hamano54a8ad92007-06-08 23:22:58 -07001090 break;
1091 default:
Junio C Hamano3c8b7df2007-06-09 00:14:04 -07001092 matched_dst = NULL;
Junio C Hamano54a8ad92007-06-08 23:22:58 -07001093 error("dst refspec %s matches more than one.",
1094 dst_value);
1095 break;
1096 }
Jeff King9a7bbd12008-06-16 12:15:02 -04001097 if (!matched_dst)
1098 return -1;
1099 if (matched_dst->peer_ref)
1100 return error("dst ref %s receives from more than one src.",
Junio C Hamano54a8ad92007-06-08 23:22:58 -07001101 matched_dst->name);
Junio C Hamano54a8ad92007-06-08 23:22:58 -07001102 else {
Jay Soffiancdf690e2009-02-25 03:32:16 -05001103 matched_dst->peer_ref = copy_src ? copy_ref(matched_src) : matched_src;
Junio C Hamano54a8ad92007-06-08 23:22:58 -07001104 matched_dst->force = rs->force;
1105 }
Jeff King9a7bbd12008-06-16 12:15:02 -04001106 return 0;
Junio C Hamano54a8ad92007-06-08 23:22:58 -07001107}
1108
Daniel Barkalow6b628162007-05-12 11:45:59 -04001109static int match_explicit_refs(struct ref *src, struct ref *dst,
1110 struct ref ***dst_tail, struct refspec *rs,
1111 int rs_nr)
1112{
1113 int i, errs;
Junio C Hamano54a8ad92007-06-08 23:22:58 -07001114 for (i = errs = 0; i < rs_nr; i++)
Jeff King9a7bbd12008-06-16 12:15:02 -04001115 errs += match_explicit(src, dst, dst_tail, &rs[i]);
1116 return errs;
Daniel Barkalow6b628162007-05-12 11:45:59 -04001117}
1118
Felipe Contrerasdb70a042012-02-23 00:43:39 +02001119static char *get_ref_match(const struct refspec *rs, int rs_nr, const struct ref *ref,
Felipe Contreras6ddba5e2012-02-23 00:43:41 +02001120 int send_mirror, int direction, const struct refspec **ret_pat)
Daniel Barkalow8558fd92007-05-25 01:20:56 -04001121{
Felipe Contrerasdb70a042012-02-23 00:43:39 +02001122 const struct refspec *pat;
1123 char *name;
Daniel Barkalow8558fd92007-05-25 01:20:56 -04001124 int i;
Paolo Bonzinia83619d2008-04-28 11:32:12 -04001125 int matching_refs = -1;
Daniel Barkalow8558fd92007-05-25 01:20:56 -04001126 for (i = 0; i < rs_nr; i++) {
Paolo Bonzinia83619d2008-04-28 11:32:12 -04001127 if (rs[i].matching &&
1128 (matching_refs == -1 || rs[i].force)) {
1129 matching_refs = i;
1130 continue;
1131 }
1132
Felipe Contrerasdb70a042012-02-23 00:43:39 +02001133 if (rs[i].pattern) {
1134 const char *dst_side = rs[i].dst ? rs[i].dst : rs[i].src;
Felipe Contreras6ddba5e2012-02-23 00:43:41 +02001135 int match;
1136 if (direction == FROM_SRC)
1137 match = match_name_with_pattern(rs[i].src, ref->name, dst_side, &name);
1138 else
1139 match = match_name_with_pattern(dst_side, ref->name, rs[i].src, &name);
1140 if (match) {
Felipe Contrerasdb70a042012-02-23 00:43:39 +02001141 matching_refs = i;
1142 break;
1143 }
1144 }
Daniel Barkalow8558fd92007-05-25 01:20:56 -04001145 }
Felipe Contrerasdb70a042012-02-23 00:43:39 +02001146 if (matching_refs == -1)
Paolo Bonzinia83619d2008-04-28 11:32:12 -04001147 return NULL;
Felipe Contrerasdb70a042012-02-23 00:43:39 +02001148
1149 pat = rs + matching_refs;
1150 if (pat->matching) {
1151 /*
1152 * "matching refs"; traditionally we pushed everything
1153 * including refs outside refs/heads/ hierarchy, but
1154 * that does not make much sense these days.
1155 */
1156 if (!send_mirror && prefixcmp(ref->name, "refs/heads/"))
1157 return NULL;
1158 name = xstrdup(ref->name);
1159 }
1160 if (ret_pat)
1161 *ret_pat = pat;
1162 return name;
Daniel Barkalow8558fd92007-05-25 01:20:56 -04001163}
1164
Clemens Buchacher6d2bf962009-05-31 16:26:48 +02001165static struct ref **tail_ref(struct ref **head)
1166{
1167 struct ref **tail = head;
1168 while (*tail)
1169 tail = &((*tail)->next);
1170 return tail;
1171}
1172
Junio C Hamano54a8ad92007-06-08 23:22:58 -07001173/*
Junio C Hamano29753cd2011-09-09 11:54:58 -07001174 * Given the set of refs the local repository has, the set of refs the
1175 * remote repository has, and the refspec used for push, determine
1176 * what remote refs we will update and with what value by setting
1177 * peer_ref (which object is being pushed) and force (if the push is
1178 * forced) in elements of "dst". The function may add new elements to
1179 * dst (e.g. pushing to a new branch, done in match_explicit_refs).
Junio C Hamano54a8ad92007-06-08 23:22:58 -07001180 */
Junio C Hamano29753cd2011-09-09 11:54:58 -07001181int match_push_refs(struct ref *src, struct ref **dst,
1182 int nr_refspec, const char **refspec, int flags)
Daniel Barkalow6b628162007-05-12 11:45:59 -04001183{
Paolo Bonzinia83619d2008-04-28 11:32:12 -04001184 struct refspec *rs;
Andy Whitcroft28b9d6e2007-11-09 23:32:10 +00001185 int send_all = flags & MATCH_REFS_ALL;
1186 int send_mirror = flags & MATCH_REFS_MIRROR;
Felipe Contreras6ddba5e2012-02-23 00:43:41 +02001187 int send_prune = flags & MATCH_REFS_PRUNE;
Jay Soffian5f48cb92009-02-25 03:32:17 -05001188 int errs;
Linus Torvalds2af202b2009-06-18 10:28:43 -07001189 static const char *default_refspec[] = { ":", NULL };
Felipe Contrerasb1d8b1f2012-02-23 00:43:38 +02001190 struct ref *ref, **dst_tail = tail_ref(dst);
Daniel Barkalow6b628162007-05-12 11:45:59 -04001191
Paolo Bonzinia83619d2008-04-28 11:32:12 -04001192 if (!nr_refspec) {
1193 nr_refspec = 1;
1194 refspec = default_refspec;
1195 }
1196 rs = parse_push_refspec(nr_refspec, (const char **) refspec);
Clemens Buchacher6d2bf962009-05-31 16:26:48 +02001197 errs = match_explicit_refs(src, *dst, &dst_tail, rs, nr_refspec);
Daniel Barkalow6b628162007-05-12 11:45:59 -04001198
1199 /* pick the remainder */
Felipe Contrerasb1d8b1f2012-02-23 00:43:38 +02001200 for (ref = src; ref; ref = ref->next) {
Daniel Barkalow6b628162007-05-12 11:45:59 -04001201 struct ref *dst_peer;
Alex Riesen6e66bf32007-06-08 01:43:05 +02001202 const struct refspec *pat = NULL;
1203 char *dst_name;
Felipe Contrerasdb70a042012-02-23 00:43:39 +02001204
Felipe Contrerasb1d8b1f2012-02-23 00:43:38 +02001205 if (ref->peer_ref)
Daniel Barkalow6b628162007-05-12 11:45:59 -04001206 continue;
Paolo Bonzinia83619d2008-04-28 11:32:12 -04001207
Felipe Contreras6ddba5e2012-02-23 00:43:41 +02001208 dst_name = get_ref_match(rs, nr_refspec, ref, send_mirror, FROM_SRC, &pat);
Felipe Contrerasdb70a042012-02-23 00:43:39 +02001209 if (!dst_name)
Paolo Bonzinia83619d2008-04-28 11:32:12 -04001210 continue;
1211
Clemens Buchacher6d2bf962009-05-31 16:26:48 +02001212 dst_peer = find_ref_by_name(*dst, dst_name);
Paolo Bonzinia83619d2008-04-28 11:32:12 -04001213 if (dst_peer) {
1214 if (dst_peer->peer_ref)
1215 /* We're already sending something to this ref. */
1216 goto free_name;
Paolo Bonzinia83619d2008-04-28 11:32:12 -04001217 } else {
1218 if (pat->matching && !(send_all || send_mirror))
1219 /*
1220 * Remote doesn't have it, and we have no
1221 * explicit pattern, and we don't have
1222 * --all nor --mirror.
1223 */
1224 goto free_name;
1225
Daniel Barkalow6b628162007-05-12 11:45:59 -04001226 /* Create a new one and link it */
Clemens Buchacher6d2bf962009-05-31 16:26:48 +02001227 dst_peer = make_linked_ref(dst_name, &dst_tail);
Felipe Contrerasb1d8b1f2012-02-23 00:43:38 +02001228 hashcpy(dst_peer->new_sha1, ref->new_sha1);
Daniel Barkalow6b628162007-05-12 11:45:59 -04001229 }
Felipe Contrerasb1d8b1f2012-02-23 00:43:38 +02001230 dst_peer->peer_ref = copy_ref(ref);
Paolo Bonzinia83619d2008-04-28 11:32:12 -04001231 dst_peer->force = pat->force;
Alex Riesen6e66bf32007-06-08 01:43:05 +02001232 free_name:
1233 free(dst_name);
Daniel Barkalow6b628162007-05-12 11:45:59 -04001234 }
Felipe Contreras6ddba5e2012-02-23 00:43:41 +02001235 if (send_prune) {
1236 /* check for missing refs on the remote */
1237 for (ref = *dst; ref; ref = ref->next) {
1238 char *src_name;
1239
1240 if (ref->peer_ref)
1241 /* We're already sending something to this ref. */
1242 continue;
1243
1244 src_name = get_ref_match(rs, nr_refspec, ref, send_mirror, FROM_DST, NULL);
1245 if (src_name) {
1246 if (!find_ref_by_name(src, src_name))
1247 ref->peer_ref = alloc_delete_ref();
1248 free(src_name);
1249 }
1250 }
1251 }
Jay Soffian5f48cb92009-02-25 03:32:17 -05001252 if (errs)
1253 return -1;
Daniel Barkalow6b628162007-05-12 11:45:59 -04001254 return 0;
1255}
Daniel Barkalowcf818342007-09-10 23:02:56 -04001256
Tay Ray Chuan20e8b462010-01-08 10:12:42 +08001257void set_ref_status_for_push(struct ref *remote_refs, int send_mirror,
1258 int force_update)
1259{
1260 struct ref *ref;
1261
1262 for (ref = remote_refs; ref; ref = ref->next) {
1263 if (ref->peer_ref)
1264 hashcpy(ref->new_sha1, ref->peer_ref->new_sha1);
1265 else if (!send_mirror)
1266 continue;
1267
1268 ref->deletion = is_null_sha1(ref->new_sha1);
1269 if (!ref->deletion &&
1270 !hashcmp(ref->old_sha1, ref->new_sha1)) {
1271 ref->status = REF_STATUS_UPTODATE;
1272 continue;
1273 }
1274
1275 /* This part determines what can overwrite what.
1276 * The rules are:
1277 *
1278 * (0) you can always use --force or +A:B notation to
1279 * selectively force individual ref pairs.
1280 *
1281 * (1) if the old thing does not exist, it is OK.
1282 *
1283 * (2) if you do not have the old thing, you are not allowed
1284 * to overwrite it; you would not know what you are losing
1285 * otherwise.
1286 *
1287 * (3) if both new and old are commit-ish, and new is a
1288 * descendant of old, it is OK.
1289 *
1290 * (4) regardless of all of the above, removing :B is
1291 * always allowed.
1292 */
1293
1294 ref->nonfastforward =
1295 !ref->deletion &&
1296 !is_null_sha1(ref->old_sha1) &&
1297 (!has_sha1_file(ref->old_sha1)
1298 || !ref_newer(ref->new_sha1, ref->old_sha1));
1299
1300 if (ref->nonfastforward && !ref->force && !force_update) {
1301 ref->status = REF_STATUS_REJECT_NONFASTFORWARD;
1302 continue;
1303 }
1304 }
1305}
1306
Daniel Barkalowcf818342007-09-10 23:02:56 -04001307struct branch *branch_get(const char *name)
1308{
1309 struct branch *ret;
1310
1311 read_config();
1312 if (!name || !*name || !strcmp(name, "HEAD"))
1313 ret = current_branch;
1314 else
1315 ret = make_branch(name, 0);
1316 if (ret && ret->remote_name) {
1317 ret->remote = remote_get(ret->remote_name);
1318 if (ret->merge_nr) {
1319 int i;
1320 ret->merge = xcalloc(sizeof(*ret->merge),
1321 ret->merge_nr);
1322 for (i = 0; i < ret->merge_nr; i++) {
1323 ret->merge[i] = xcalloc(1, sizeof(**ret->merge));
1324 ret->merge[i]->src = xstrdup(ret->merge_name[i]);
Michael J Gruber5e6e2b42009-04-01 23:42:49 +02001325 if (remote_find_tracking(ret->remote, ret->merge[i])
1326 && !strcmp(ret->remote_name, "."))
1327 ret->merge[i]->dst = xstrdup(ret->merge_name[i]);
Daniel Barkalowcf818342007-09-10 23:02:56 -04001328 }
1329 }
1330 }
1331 return ret;
1332}
1333
1334int branch_has_merge_config(struct branch *branch)
1335{
1336 return branch && !!branch->merge;
1337}
1338
Shawn O. Pearce85682c12007-09-18 04:54:53 -04001339int branch_merge_matches(struct branch *branch,
1340 int i,
1341 const char *refname)
Daniel Barkalowcf818342007-09-10 23:02:56 -04001342{
Shawn O. Pearce85682c12007-09-18 04:54:53 -04001343 if (!branch || i < 0 || i >= branch->merge_nr)
Daniel Barkalowcf818342007-09-10 23:02:56 -04001344 return 0;
Steffen Prohaska605b4972007-11-11 15:01:48 +01001345 return refname_match(branch->merge[i]->src, refname, ref_fetch_rules);
Daniel Barkalowcf818342007-09-10 23:02:56 -04001346}
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001347
Daniel Barkalow45773702007-10-29 21:05:40 -04001348static struct ref *get_expanded_map(const struct ref *remote_refs,
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001349 const struct refspec *refspec)
1350{
Daniel Barkalow45773702007-10-29 21:05:40 -04001351 const struct ref *ref;
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001352 struct ref *ret = NULL;
1353 struct ref **tail = &ret;
1354
Daniel Barkalowe9282132009-03-07 01:11:34 -05001355 char *expn_name;
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001356
1357 for (ref = remote_refs; ref; ref = ref->next) {
1358 if (strchr(ref->name, '^'))
1359 continue; /* a dereference item */
Daniel Barkalowe9282132009-03-07 01:11:34 -05001360 if (match_name_with_pattern(refspec->src, ref->name,
1361 refspec->dst, &expn_name)) {
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001362 struct ref *cpy = copy_ref(ref);
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001363
Daniel Barkalowe9282132009-03-07 01:11:34 -05001364 cpy->peer_ref = alloc_ref(expn_name);
1365 free(expn_name);
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001366 if (refspec->force)
1367 cpy->peer_ref->force = 1;
1368 *tail = cpy;
1369 tail = &cpy->next;
1370 }
1371 }
1372
1373 return ret;
1374}
1375
Daniel Barkalow45773702007-10-29 21:05:40 -04001376static const struct ref *find_ref_by_name_abbrev(const struct ref *refs, const char *name)
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001377{
Daniel Barkalow45773702007-10-29 21:05:40 -04001378 const struct ref *ref;
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001379 for (ref = refs; ref; ref = ref->next) {
Steffen Prohaska605b4972007-11-11 15:01:48 +01001380 if (refname_match(name, ref->name, ref_fetch_rules))
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001381 return ref;
1382 }
1383 return NULL;
1384}
1385
Daniel Barkalow45773702007-10-29 21:05:40 -04001386struct ref *get_remote_ref(const struct ref *remote_refs, const char *name)
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001387{
Daniel Barkalow45773702007-10-29 21:05:40 -04001388 const struct ref *ref = find_ref_by_name_abbrev(remote_refs, name);
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001389
1390 if (!ref)
Junio C Hamano9ad7c5a2007-10-26 23:09:48 -07001391 return NULL;
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001392
1393 return copy_ref(ref);
1394}
1395
1396static struct ref *get_local_ref(const char *name)
1397{
Clemens Buchacher3eb96992009-06-17 15:38:36 +02001398 if (!name || name[0] == '\0')
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001399 return NULL;
1400
René Scharfe59c69c02008-10-18 10:44:18 +02001401 if (!prefixcmp(name, "refs/"))
1402 return alloc_ref(name);
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001403
1404 if (!prefixcmp(name, "heads/") ||
1405 !prefixcmp(name, "tags/") ||
René Scharfe80097682008-10-18 10:37:40 +02001406 !prefixcmp(name, "remotes/"))
1407 return alloc_ref_with_prefix("refs/", 5, name);
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001408
René Scharfe80097682008-10-18 10:37:40 +02001409 return alloc_ref_with_prefix("refs/heads/", 11, name);
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001410}
1411
Daniel Barkalow45773702007-10-29 21:05:40 -04001412int get_fetch_map(const struct ref *remote_refs,
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001413 const struct refspec *refspec,
Junio C Hamano9ad7c5a2007-10-26 23:09:48 -07001414 struct ref ***tail,
1415 int missing_ok)
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001416{
Daniel Barkalowef00d152008-03-17 22:05:23 -04001417 struct ref *ref_map, **rmp;
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001418
1419 if (refspec->pattern) {
1420 ref_map = get_expanded_map(remote_refs, refspec);
1421 } else {
Junio C Hamano9ad7c5a2007-10-26 23:09:48 -07001422 const char *name = refspec->src[0] ? refspec->src : "HEAD";
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001423
Junio C Hamano9ad7c5a2007-10-26 23:09:48 -07001424 ref_map = get_remote_ref(remote_refs, name);
1425 if (!missing_ok && !ref_map)
1426 die("Couldn't find remote ref %s", name);
1427 if (ref_map) {
1428 ref_map->peer_ref = get_local_ref(refspec->dst);
1429 if (ref_map->peer_ref && refspec->force)
1430 ref_map->peer_ref->force = 1;
1431 }
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001432 }
1433
Daniel Barkalowef00d152008-03-17 22:05:23 -04001434 for (rmp = &ref_map; *rmp; ) {
1435 if ((*rmp)->peer_ref) {
Michael Haggerty8d9c5012011-09-15 23:10:25 +02001436 if (check_refname_format((*rmp)->peer_ref->name + 5,
1437 REFNAME_ALLOW_ONELEVEL)) {
Daniel Barkalowef00d152008-03-17 22:05:23 -04001438 struct ref *ignore = *rmp;
1439 error("* Ignoring funny ref '%s' locally",
1440 (*rmp)->peer_ref->name);
1441 *rmp = (*rmp)->next;
1442 free(ignore->peer_ref);
1443 free(ignore);
1444 continue;
1445 }
1446 }
1447 rmp = &((*rmp)->next);
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001448 }
1449
Alex Riesen8f70a762007-10-12 22:40:04 +02001450 if (ref_map)
1451 tail_link_ref(ref_map, tail);
Daniel Barkalowd71ab172007-09-10 23:03:08 -04001452
1453 return 0;
1454}
Daniel Barkalowbe885d92008-04-26 15:53:12 -04001455
1456int resolve_remote_symref(struct ref *ref, struct ref *list)
1457{
1458 if (!ref->symref)
1459 return 0;
1460 for (; list; list = list->next)
1461 if (!strcmp(ref->symref, list->name)) {
1462 hashcpy(ref->old_sha1, list->old_sha1);
1463 return 0;
1464 }
1465 return 1;
1466}
Junio C Hamano6d21bf92008-07-02 00:51:18 -07001467
Jay Soffianec8452d2009-02-25 03:32:12 -05001468static void unmark_and_free(struct commit_list *list, unsigned int mark)
1469{
1470 while (list) {
1471 struct commit_list *temp = list;
1472 temp->item->object.flags &= ~mark;
1473 list = temp->next;
1474 free(temp);
1475 }
1476}
1477
1478int ref_newer(const unsigned char *new_sha1, const unsigned char *old_sha1)
1479{
1480 struct object *o;
1481 struct commit *old, *new;
1482 struct commit_list *list, *used;
1483 int found = 0;
1484
1485 /* Both new and old must be commit-ish and new is descendant of
1486 * old. Otherwise we require --force.
1487 */
1488 o = deref_tag(parse_object(old_sha1), NULL, 0);
1489 if (!o || o->type != OBJ_COMMIT)
1490 return 0;
1491 old = (struct commit *) o;
1492
1493 o = deref_tag(parse_object(new_sha1), NULL, 0);
1494 if (!o || o->type != OBJ_COMMIT)
1495 return 0;
1496 new = (struct commit *) o;
1497
1498 if (parse_commit(new) < 0)
1499 return 0;
1500
1501 used = list = NULL;
1502 commit_list_insert(new, &list);
1503 while (list) {
1504 new = pop_most_recent_commit(&list, TMP_MARK);
1505 commit_list_insert(new, &used);
1506 if (new == old) {
1507 found = 1;
1508 break;
1509 }
1510 }
1511 unmark_and_free(list, TMP_MARK);
1512 unmark_and_free(used, TMP_MARK);
1513 return found;
1514}
1515
Junio C Hamano6d21bf92008-07-02 00:51:18 -07001516/*
1517 * Return true if there is anything to report, otherwise false.
1518 */
1519int stat_tracking_info(struct branch *branch, int *num_ours, int *num_theirs)
1520{
1521 unsigned char sha1[20];
1522 struct commit *ours, *theirs;
1523 char symmetric[84];
1524 struct rev_info revs;
1525 const char *rev_argv[10], *base;
1526 int rev_argc;
1527
1528 /*
1529 * Nothing to report unless we are marked to build on top of
1530 * somebody else.
1531 */
1532 if (!branch ||
1533 !branch->merge || !branch->merge[0] || !branch->merge[0]->dst)
1534 return 0;
1535
1536 /*
1537 * If what we used to build on no longer exists, there is
1538 * nothing to report.
1539 */
1540 base = branch->merge[0]->dst;
Nguyễn Thái Ngọc Duyc6893322011-11-13 17:22:14 +07001541 if (read_ref(base, sha1))
Junio C Hamano6d21bf92008-07-02 00:51:18 -07001542 return 0;
Michael J Gruber57ffc5f2009-05-11 16:42:54 +02001543 theirs = lookup_commit_reference(sha1);
Junio C Hamano6d21bf92008-07-02 00:51:18 -07001544 if (!theirs)
1545 return 0;
1546
Nguyễn Thái Ngọc Duyc6893322011-11-13 17:22:14 +07001547 if (read_ref(branch->refname, sha1))
Junio C Hamano6d21bf92008-07-02 00:51:18 -07001548 return 0;
Michael J Gruber57ffc5f2009-05-11 16:42:54 +02001549 ours = lookup_commit_reference(sha1);
Junio C Hamano6d21bf92008-07-02 00:51:18 -07001550 if (!ours)
1551 return 0;
1552
1553 /* are we the same? */
1554 if (theirs == ours)
1555 return 0;
1556
Junio C Hamano8fbf8792009-04-21 16:32:18 -07001557 /* Run "rev-list --left-right ours...theirs" internally... */
Junio C Hamano6d21bf92008-07-02 00:51:18 -07001558 rev_argc = 0;
1559 rev_argv[rev_argc++] = NULL;
1560 rev_argv[rev_argc++] = "--left-right";
1561 rev_argv[rev_argc++] = symmetric;
1562 rev_argv[rev_argc++] = "--";
1563 rev_argv[rev_argc] = NULL;
1564
1565 strcpy(symmetric, sha1_to_hex(ours->object.sha1));
1566 strcpy(symmetric + 40, "...");
1567 strcpy(symmetric + 43, sha1_to_hex(theirs->object.sha1));
1568
1569 init_revisions(&revs, NULL);
1570 setup_revisions(rev_argc, rev_argv, &revs, NULL);
1571 prepare_revision_walk(&revs);
1572
1573 /* ... and count the commits on each side. */
1574 *num_ours = 0;
1575 *num_theirs = 0;
1576 while (1) {
1577 struct commit *c = get_revision(&revs);
1578 if (!c)
1579 break;
1580 if (c->object.flags & SYMMETRIC_LEFT)
1581 (*num_ours)++;
1582 else
1583 (*num_theirs)++;
1584 }
Junio C Hamanoc0234b22008-07-03 12:09:48 -07001585
1586 /* clear object flags smudged by the above traversal */
1587 clear_commit_marks(ours, ALL_REV_FLAGS);
1588 clear_commit_marks(theirs, ALL_REV_FLAGS);
Junio C Hamano6d21bf92008-07-02 00:51:18 -07001589 return 1;
1590}
1591
1592/*
1593 * Return true when there is anything to report, otherwise false.
1594 */
1595int format_tracking_info(struct branch *branch, struct strbuf *sb)
1596{
1597 int num_ours, num_theirs;
Avery Pennarun4de53ce2008-07-16 15:19:27 -04001598 const char *base;
Junio C Hamano6d21bf92008-07-02 00:51:18 -07001599
1600 if (!stat_tracking_info(branch, &num_ours, &num_theirs))
1601 return 0;
1602
1603 base = branch->merge[0]->dst;
Michael J Gruber45972ff2009-04-16 10:20:44 +02001604 base = shorten_unambiguous_ref(base, 0);
Junio C Hamano6d21bf92008-07-02 00:51:18 -07001605 if (!num_theirs)
Jiang Xin8a5b7492012-02-02 10:02:23 +08001606 strbuf_addf(sb,
1607 Q_("Your branch is ahead of '%s' by %d commit.\n",
1608 "Your branch is ahead of '%s' by %d commits.\n",
1609 num_ours),
1610 base, num_ours);
Junio C Hamano6d21bf92008-07-02 00:51:18 -07001611 else if (!num_ours)
Jiang Xin8a5b7492012-02-02 10:02:23 +08001612 strbuf_addf(sb,
1613 Q_("Your branch is behind '%s' by %d commit, "
1614 "and can be fast-forwarded.\n",
1615 "Your branch is behind '%s' by %d commits, "
1616 "and can be fast-forwarded.\n",
1617 num_theirs),
1618 base, num_theirs);
Junio C Hamano6d21bf92008-07-02 00:51:18 -07001619 else
Jiang Xin8a5b7492012-02-02 10:02:23 +08001620 strbuf_addf(sb,
1621 Q_("Your branch and '%s' have diverged,\n"
1622 "and have %d and %d different commit each, "
1623 "respectively.\n",
1624 "Your branch and '%s' have diverged,\n"
1625 "and have %d and %d different commits each, "
1626 "respectively.\n",
1627 num_theirs),
1628 base, num_ours, num_theirs);
Junio C Hamano6d21bf92008-07-02 00:51:18 -07001629 return 1;
1630}
Jay Soffian454e2022009-02-25 03:32:11 -05001631
1632static int one_local_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
1633{
1634 struct ref ***local_tail = cb_data;
1635 struct ref *ref;
1636 int len;
1637
1638 /* we already know it starts with refs/ to get here */
Michael Haggerty8d9c5012011-09-15 23:10:25 +02001639 if (check_refname_format(refname + 5, 0))
Jay Soffian454e2022009-02-25 03:32:11 -05001640 return 0;
1641
1642 len = strlen(refname) + 1;
1643 ref = xcalloc(1, sizeof(*ref) + len);
1644 hashcpy(ref->new_sha1, sha1);
1645 memcpy(ref->name, refname, len);
1646 **local_tail = ref;
1647 *local_tail = &ref->next;
1648 return 0;
1649}
1650
1651struct ref *get_local_heads(void)
1652{
Nguyễn Thái Ngọc Duy55f05662009-04-17 08:16:23 +10001653 struct ref *local_refs = NULL, **local_tail = &local_refs;
Jay Soffian454e2022009-02-25 03:32:11 -05001654 for_each_ref(one_local_ref, &local_tail);
1655 return local_refs;
1656}
Jay Soffian8ef51732009-02-25 03:32:13 -05001657
Jay Soffian4229f1f2009-02-27 14:10:05 -05001658struct ref *guess_remote_head(const struct ref *head,
1659 const struct ref *refs,
1660 int all)
Jay Soffian8ef51732009-02-25 03:32:13 -05001661{
Jay Soffian8ef51732009-02-25 03:32:13 -05001662 const struct ref *r;
Jay Soffian4229f1f2009-02-27 14:10:05 -05001663 struct ref *list = NULL;
1664 struct ref **tail = &list;
Jay Soffian8ef51732009-02-25 03:32:13 -05001665
Jay Soffian6cb4e6c2009-02-25 03:32:14 -05001666 if (!head)
Jay Soffian8ef51732009-02-25 03:32:13 -05001667 return NULL;
1668
Jeff Kingfbb074c2009-02-27 14:10:06 -05001669 /*
1670 * Some transports support directly peeking at
1671 * where HEAD points; if that is the case, then
1672 * we don't have to guess.
1673 */
1674 if (head->symref)
1675 return copy_ref(find_ref_by_name(refs, head->symref));
1676
Jay Soffian8ef51732009-02-25 03:32:13 -05001677 /* If refs/heads/master could be right, it is. */
Jay Soffian4229f1f2009-02-27 14:10:05 -05001678 if (!all) {
1679 r = find_ref_by_name(refs, "refs/heads/master");
1680 if (r && !hashcmp(r->old_sha1, head->old_sha1))
1681 return copy_ref(r);
1682 }
Jay Soffian8ef51732009-02-25 03:32:13 -05001683
1684 /* Look for another ref that points there */
Jay Soffian4229f1f2009-02-27 14:10:05 -05001685 for (r = refs; r; r = r->next) {
Jeff King61adfd32011-06-03 01:11:13 -04001686 if (r != head &&
1687 !prefixcmp(r->name, "refs/heads/") &&
1688 !hashcmp(r->old_sha1, head->old_sha1)) {
Jay Soffian4229f1f2009-02-27 14:10:05 -05001689 *tail = copy_ref(r);
1690 tail = &((*tail)->next);
1691 if (!all)
1692 break;
1693 }
1694 }
Jay Soffian8ef51732009-02-25 03:32:13 -05001695
Jay Soffian4229f1f2009-02-27 14:10:05 -05001696 return list;
Jay Soffian8ef51732009-02-25 03:32:13 -05001697}
Jay Soffianf2ef6072009-11-10 00:03:31 -05001698
1699struct stale_heads_info {
Jay Soffianf2ef6072009-11-10 00:03:31 -05001700 struct string_list *ref_names;
1701 struct ref **stale_refs_tail;
Carlos Martín Nietoed43de62011-10-15 07:04:25 +02001702 struct refspec *refs;
1703 int ref_count;
Jay Soffianf2ef6072009-11-10 00:03:31 -05001704};
1705
1706static int get_stale_heads_cb(const char *refname,
1707 const unsigned char *sha1, int flags, void *cb_data)
1708{
1709 struct stale_heads_info *info = cb_data;
Carlos Martín Nietoed43de62011-10-15 07:04:25 +02001710 struct refspec query;
1711 memset(&query, 0, sizeof(struct refspec));
1712 query.dst = (char *)refname;
1713
1714 if (query_refspecs(info->refs, info->ref_count, &query))
1715 return 0; /* No matches */
1716
1717 /*
1718 * If we did find a suitable refspec and it's not a symref and
1719 * it's not in the list of refs that currently exist in that
1720 * remote we consider it to be stale.
1721 */
1722 if (!((flags & REF_ISSYMREF) ||
1723 string_list_has_string(info->ref_names, query.src))) {
1724 struct ref *ref = make_linked_ref(refname, &info->stale_refs_tail);
1725 hashcpy(ref->new_sha1, sha1);
Jay Soffianf2ef6072009-11-10 00:03:31 -05001726 }
Carlos Martín Nietoed43de62011-10-15 07:04:25 +02001727
1728 free(query.src);
Jay Soffianf2ef6072009-11-10 00:03:31 -05001729 return 0;
1730}
1731
Carlos Martín Nietoed43de62011-10-15 07:04:25 +02001732struct ref *get_stale_heads(struct refspec *refs, int ref_count, struct ref *fetch_map)
Jay Soffianf2ef6072009-11-10 00:03:31 -05001733{
1734 struct ref *ref, *stale_refs = NULL;
Thiago Farina183113a2010-07-04 16:46:19 -03001735 struct string_list ref_names = STRING_LIST_INIT_NODUP;
Jay Soffianf2ef6072009-11-10 00:03:31 -05001736 struct stale_heads_info info;
Jay Soffianf2ef6072009-11-10 00:03:31 -05001737 info.ref_names = &ref_names;
1738 info.stale_refs_tail = &stale_refs;
Carlos Martín Nietoed43de62011-10-15 07:04:25 +02001739 info.refs = refs;
1740 info.ref_count = ref_count;
Jay Soffianf2ef6072009-11-10 00:03:31 -05001741 for (ref = fetch_map; ref; ref = ref->next)
Julian Phillips1d2f80f2010-06-26 00:41:38 +01001742 string_list_append(&ref_names, ref->name);
Jay Soffianf2ef6072009-11-10 00:03:31 -05001743 sort_string_list(&ref_names);
1744 for_each_ref(get_stale_heads_cb, &info);
1745 string_list_clear(&ref_names, 0);
1746 return stale_refs;
1747}