blob: c4945b870882834fdaa75fd3d65f664570f6a5da [file] [log] [blame]
Johannes Schindelin211c8962008-02-29 01:45:45 +00001#include "cache.h"
2#include "parse-options.h"
3#include "transport.h"
4#include "remote.h"
Johannes Schindelinc455c872008-07-21 19:03:49 +01005#include "string-list.h"
Johannes Schindelin211c8962008-02-29 01:45:45 +00006#include "strbuf.h"
7#include "run-command.h"
8#include "refs.h"
9
10static const char * const builtin_remote_usage[] = {
Cheng Renquan357af142008-11-17 19:15:49 +080011 "git remote [-v | --verbose]",
12 "git remote add [-t <branch>] [-m <master>] [-f] [--mirror] <name> <url>",
Miklos Vajnabf984212008-11-03 19:26:18 +010013 "git remote rename <old> <new>",
Johannes Schindelin211c8962008-02-29 01:45:45 +000014 "git remote rm <name>",
Tim Henigan45041072009-11-20 18:43:13 -050015 "git remote set-head <name> (-a | -d | <branch>)",
16 "git remote [-v | --verbose] show [-n] <name>",
Cheng Renquan357af142008-11-17 19:15:49 +080017 "git remote prune [-n | --dry-run] <name>",
Tim Henigan997c2a42009-11-15 14:46:25 -050018 "git remote [-v | --verbose] update [-p | --prune] [group | remote]",
Johannes Schindelin211c8962008-02-29 01:45:45 +000019 NULL
20};
21
Tim Henigan45041072009-11-20 18:43:13 -050022static const char * const builtin_remote_add_usage[] = {
23 "git remote add [<options>] <name> <url>",
24 NULL
25};
26
27static const char * const builtin_remote_rename_usage[] = {
28 "git remote rename <old> <new>",
29 NULL
30};
31
32static const char * const builtin_remote_rm_usage[] = {
33 "git remote rm <name>",
34 NULL
35};
36
37static const char * const builtin_remote_sethead_usage[] = {
38 "git remote set-head <name> (-a | -d | <branch>])",
39 NULL
40};
41
42static const char * const builtin_remote_show_usage[] = {
43 "git remote show [<options>] <name>",
44 NULL
45};
46
47static const char * const builtin_remote_prune_usage[] = {
48 "git remote prune [<options>] <name>",
49 NULL
50};
51
52static const char * const builtin_remote_update_usage[] = {
53 "git remote update [<options>] [<group> | <remote>]...",
54 NULL
55};
56
Jay Soffiane61e0cc2009-02-25 03:32:24 -050057#define GET_REF_STATES (1<<0)
58#define GET_HEAD_NAMES (1<<1)
Jay Soffiane5dcbfd2009-02-25 03:32:28 -050059#define GET_PUSH_REF_STATES (1<<2)
Jay Soffiane61e0cc2009-02-25 03:32:24 -050060
Johannes Schindelin211c8962008-02-29 01:45:45 +000061static int verbose;
62
Jeff Kingc4112bb2008-04-09 11:15:51 -040063static int show_all(void);
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +020064static int prune_remote(const char *remote, int dry_run);
Jeff Kingc4112bb2008-04-09 11:15:51 -040065
Johannes Schindelin211c8962008-02-29 01:45:45 +000066static inline int postfixcmp(const char *string, const char *postfix)
67{
68 int len1 = strlen(string), len2 = strlen(postfix);
69 if (len1 < len2)
70 return 1;
71 return strcmp(string + len1 - len2, postfix);
72}
73
Johannes Schindelin211c8962008-02-29 01:45:45 +000074static int opt_parse_track(const struct option *opt, const char *arg, int not)
75{
Johannes Schindelinc455c872008-07-21 19:03:49 +010076 struct string_list *list = opt->value;
Johannes Schindelin211c8962008-02-29 01:45:45 +000077 if (not)
Johannes Schindelinc455c872008-07-21 19:03:49 +010078 string_list_clear(list, 0);
Johannes Schindelin211c8962008-02-29 01:45:45 +000079 else
Johannes Schindelinc455c872008-07-21 19:03:49 +010080 string_list_append(arg, list);
Johannes Schindelin211c8962008-02-29 01:45:45 +000081 return 0;
82}
83
84static int fetch_remote(const char *name)
85{
Cheng Renquandbbd56f2008-11-18 19:04:02 +080086 const char *argv[] = { "fetch", name, NULL, NULL };
87 if (verbose) {
88 argv[1] = "-v";
89 argv[2] = name;
90 }
Samuel Tardieu30006582008-03-09 13:37:55 +010091 printf("Updating %s\n", name);
Johannes Schindelin211c8962008-02-29 01:45:45 +000092 if (run_command_v_opt(argv, RUN_GIT_CMD))
93 return error("Could not fetch %s", name);
94 return 0;
95}
96
97static int add(int argc, const char **argv)
98{
99 int fetch = 0, mirror = 0;
Johannes Schindelinc455c872008-07-21 19:03:49 +0100100 struct string_list track = { NULL, 0, 0 };
Johannes Schindelin211c8962008-02-29 01:45:45 +0000101 const char *master = NULL;
102 struct remote *remote;
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500103 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000104 const char *name, *url;
105 int i;
106
107 struct option options[] = {
Johannes Schindelin211c8962008-02-29 01:45:45 +0000108 OPT_BOOLEAN('f', "fetch", &fetch, "fetch the remote branches"),
109 OPT_CALLBACK('t', "track", &track, "branch",
110 "branch(es) to track", opt_parse_track),
111 OPT_STRING('m', "master", &master, "branch", "master branch"),
112 OPT_BOOLEAN(0, "mirror", &mirror, "no separate remotes"),
113 OPT_END()
114 };
115
Tim Henigan45041072009-11-20 18:43:13 -0500116 argc = parse_options(argc, argv, NULL, options, builtin_remote_add_usage,
Stephen Boyd37782922009-05-23 11:53:12 -0700117 0);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000118
119 if (argc < 2)
Tim Henigan45041072009-11-20 18:43:13 -0500120 usage_with_options(builtin_remote_add_usage, options);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000121
122 name = argv[0];
123 url = argv[1];
124
125 remote = remote_get(name);
126 if (remote && (remote->url_nr > 1 || strcmp(name, remote->url[0]) ||
127 remote->fetch_refspec_nr))
128 die("remote %s already exists.", name);
129
Jonas Fonseca24b61772008-04-13 11:56:54 +0200130 strbuf_addf(&buf2, "refs/heads/test:refs/remotes/%s/test", name);
131 if (!valid_fetch_refspec(buf2.buf))
132 die("'%s' is not a valid remote name", name);
133
Johannes Schindelin211c8962008-02-29 01:45:45 +0000134 strbuf_addf(&buf, "remote.%s.url", name);
135 if (git_config_set(buf.buf, url))
136 return 1;
137
Jonas Fonseca24b61772008-04-13 11:56:54 +0200138 strbuf_reset(&buf);
139 strbuf_addf(&buf, "remote.%s.fetch", name);
140
Johannes Schindelin211c8962008-02-29 01:45:45 +0000141 if (track.nr == 0)
Johannes Schindelinc455c872008-07-21 19:03:49 +0100142 string_list_append("*", &track);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000143 for (i = 0; i < track.nr; i++) {
Johannes Schindelinc455c872008-07-21 19:03:49 +0100144 struct string_list_item *item = track.items + i;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000145
Johannes Schindelin211c8962008-02-29 01:45:45 +0000146 strbuf_reset(&buf2);
Jeff King1ce89cc2008-04-22 07:11:13 -0400147 strbuf_addch(&buf2, '+');
Johannes Schindelin211c8962008-02-29 01:45:45 +0000148 if (mirror)
149 strbuf_addf(&buf2, "refs/%s:refs/%s",
Johannes Schindelinc455c872008-07-21 19:03:49 +0100150 item->string, item->string);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000151 else
152 strbuf_addf(&buf2, "refs/heads/%s:refs/remotes/%s/%s",
Johannes Schindelinc455c872008-07-21 19:03:49 +0100153 item->string, name, item->string);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000154 if (git_config_set_multivar(buf.buf, buf2.buf, "^$", 0))
155 return 1;
156 }
157
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200158 if (mirror) {
159 strbuf_reset(&buf);
160 strbuf_addf(&buf, "remote.%s.mirror", name);
Johannes Schindelinbc699af2008-08-02 21:38:56 +0200161 if (git_config_set(buf.buf, "true"))
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200162 return 1;
163 }
164
Johannes Schindelin211c8962008-02-29 01:45:45 +0000165 if (fetch && fetch_remote(name))
166 return 1;
167
168 if (master) {
169 strbuf_reset(&buf);
170 strbuf_addf(&buf, "refs/remotes/%s/HEAD", name);
171
172 strbuf_reset(&buf2);
173 strbuf_addf(&buf2, "refs/remotes/%s/%s", name, master);
174
175 if (create_symref(buf.buf, buf2.buf, "remote add"))
176 return error("Could not setup master '%s'", master);
177 }
178
179 strbuf_release(&buf);
180 strbuf_release(&buf2);
Johannes Schindelinc455c872008-07-21 19:03:49 +0100181 string_list_clear(&track, 0);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000182
183 return 0;
184}
185
186struct branch_info {
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500187 char *remote_name;
Johannes Schindelinc455c872008-07-21 19:03:49 +0100188 struct string_list merge;
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500189 int rebase;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000190};
191
Johannes Schindelinc455c872008-07-21 19:03:49 +0100192static struct string_list branch_list;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000193
Junio C Hamano72972eb2008-07-17 21:30:33 -0700194static const char *abbrev_ref(const char *name, const char *prefix)
195{
196 const char *abbrev = skip_prefix(name, prefix);
197 if (abbrev)
198 return abbrev;
199 return name;
200}
201#define abbrev_branch(name) abbrev_ref((name), "refs/heads/")
202
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100203static int config_read_branches(const char *key, const char *value, void *cb)
Johannes Schindelin211c8962008-02-29 01:45:45 +0000204{
205 if (!prefixcmp(key, "branch.")) {
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500206 const char *orig_key = key;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000207 char *name;
Johannes Schindelinc455c872008-07-21 19:03:49 +0100208 struct string_list_item *item;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000209 struct branch_info *info;
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500210 enum { REMOTE, MERGE, REBASE } type;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000211
212 key += 7;
213 if (!postfixcmp(key, ".remote")) {
214 name = xstrndup(key, strlen(key) - 7);
215 type = REMOTE;
216 } else if (!postfixcmp(key, ".merge")) {
217 name = xstrndup(key, strlen(key) - 6);
218 type = MERGE;
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500219 } else if (!postfixcmp(key, ".rebase")) {
220 name = xstrndup(key, strlen(key) - 7);
221 type = REBASE;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000222 } else
223 return 0;
224
Johannes Schindelinc455c872008-07-21 19:03:49 +0100225 item = string_list_insert(name, &branch_list);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000226
227 if (!item->util)
228 item->util = xcalloc(sizeof(struct branch_info), 1);
229 info = item->util;
230 if (type == REMOTE) {
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500231 if (info->remote_name)
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500232 warning("more than one %s", orig_key);
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500233 info->remote_name = xstrdup(value);
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500234 } else if (type == MERGE) {
Johannes Schindelin211c8962008-02-29 01:45:45 +0000235 char *space = strchr(value, ' ');
Junio C Hamano72972eb2008-07-17 21:30:33 -0700236 value = abbrev_branch(value);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000237 while (space) {
238 char *merge;
239 merge = xstrndup(value, space - value);
Johannes Schindelinc455c872008-07-21 19:03:49 +0100240 string_list_append(merge, &info->merge);
Junio C Hamano72972eb2008-07-17 21:30:33 -0700241 value = abbrev_branch(space + 1);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000242 space = strchr(value, ' ');
243 }
Johannes Schindelinc455c872008-07-21 19:03:49 +0100244 string_list_append(xstrdup(value), &info->merge);
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500245 } else
246 info->rebase = git_config_bool(orig_key, value);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000247 }
248 return 0;
249}
250
251static void read_branches(void)
252{
253 if (branch_list.nr)
254 return;
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100255 git_config(config_read_branches, NULL);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000256}
257
258struct ref_states {
259 struct remote *remote;
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500260 struct string_list new, stale, tracked, heads, push;
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500261 int queried;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000262};
263
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500264static int get_ref_states(const struct ref *remote_refs, struct ref_states *states)
Johannes Schindelin211c8962008-02-29 01:45:45 +0000265{
266 struct ref *fetch_map = NULL, **tail = &fetch_map;
Jay Soffianf2ef6072009-11-10 00:03:31 -0500267 struct ref *ref, *stale_refs;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000268 int i;
269
270 for (i = 0; i < states->remote->fetch_refspec_nr; i++)
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500271 if (get_fetch_map(remote_refs, states->remote->fetch + i, &tail, 1))
Johannes Schindelin211c8962008-02-29 01:45:45 +0000272 die("Could not get fetch map for refspec %s",
273 states->remote->fetch_refspec[i]);
274
Bert Wesarg92f676f2009-12-01 00:57:27 +0100275 states->new.strdup_strings = 1;
276 states->tracked.strdup_strings = 1;
277 states->stale.strdup_strings = 1;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000278 for (ref = fetch_map; ref; ref = ref->next) {
Johannes Schindelin211c8962008-02-29 01:45:45 +0000279 unsigned char sha1[20];
Johannes Schindelin211c8962008-02-29 01:45:45 +0000280 if (!ref->peer_ref || read_ref(ref->peer_ref->name, sha1))
Jay Soffian7b9a5e22009-02-25 03:32:20 -0500281 string_list_append(abbrev_branch(ref->name), &states->new);
282 else
283 string_list_append(abbrev_branch(ref->name), &states->tracked);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000284 }
Jay Soffianf2ef6072009-11-10 00:03:31 -0500285 stale_refs = get_stale_heads(states->remote, fetch_map);
286 for (ref = stale_refs; ref; ref = ref->next) {
287 struct string_list_item *item =
288 string_list_append(abbrev_branch(ref->name), &states->stale);
289 item->util = xstrdup(ref->name);
290 }
291 free_refs(stale_refs);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000292 free_refs(fetch_map);
293
Jay Soffian3bd92562009-02-25 03:32:23 -0500294 sort_string_list(&states->new);
295 sort_string_list(&states->tracked);
Johannes Schindelinc455c872008-07-21 19:03:49 +0100296 sort_string_list(&states->stale);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000297
298 return 0;
299}
300
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500301struct push_info {
302 char *dest;
303 int forced;
304 enum {
305 PUSH_STATUS_CREATE = 0,
306 PUSH_STATUS_DELETE,
307 PUSH_STATUS_UPTODATE,
308 PUSH_STATUS_FASTFORWARD,
309 PUSH_STATUS_OUTOFDATE,
310 PUSH_STATUS_NOTQUERIED,
311 } status;
312};
313
314static int get_push_ref_states(const struct ref *remote_refs,
315 struct ref_states *states)
316{
317 struct remote *remote = states->remote;
Clemens Buchacher6d2bf962009-05-31 16:26:48 +0200318 struct ref *ref, *local_refs, *push_map;
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500319 if (remote->mirror)
320 return 0;
321
322 local_refs = get_local_heads();
Clemens Buchacher6a015542009-05-27 22:13:43 +0200323 push_map = copy_ref_list(remote_refs);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500324
Clemens Buchacher6d2bf962009-05-31 16:26:48 +0200325 match_refs(local_refs, &push_map, remote->push_refspec_nr,
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500326 remote->push_refspec, MATCH_REFS_NONE);
327
328 states->push.strdup_strings = 1;
329 for (ref = push_map; ref; ref = ref->next) {
330 struct string_list_item *item;
331 struct push_info *info;
332
333 if (!ref->peer_ref)
334 continue;
335 hashcpy(ref->new_sha1, ref->peer_ref->new_sha1);
336
337 item = string_list_append(abbrev_branch(ref->peer_ref->name),
338 &states->push);
339 item->util = xcalloc(sizeof(struct push_info), 1);
340 info = item->util;
341 info->forced = ref->force;
342 info->dest = xstrdup(abbrev_branch(ref->name));
343
344 if (is_null_sha1(ref->new_sha1)) {
345 info->status = PUSH_STATUS_DELETE;
346 } else if (!hashcmp(ref->old_sha1, ref->new_sha1))
347 info->status = PUSH_STATUS_UPTODATE;
348 else if (is_null_sha1(ref->old_sha1))
349 info->status = PUSH_STATUS_CREATE;
350 else if (has_sha1_file(ref->old_sha1) &&
351 ref_newer(ref->new_sha1, ref->old_sha1))
352 info->status = PUSH_STATUS_FASTFORWARD;
353 else
354 info->status = PUSH_STATUS_OUTOFDATE;
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500355 }
356 free_refs(local_refs);
357 free_refs(push_map);
358 return 0;
359}
360
361static int get_push_ref_states_noquery(struct ref_states *states)
362{
363 int i;
364 struct remote *remote = states->remote;
365 struct string_list_item *item;
366 struct push_info *info;
367
368 if (remote->mirror)
369 return 0;
370
371 states->push.strdup_strings = 1;
372 if (!remote->push_refspec_nr) {
373 item = string_list_append("(matching)", &states->push);
374 info = item->util = xcalloc(sizeof(struct push_info), 1);
375 info->status = PUSH_STATUS_NOTQUERIED;
376 info->dest = xstrdup(item->string);
377 }
378 for (i = 0; i < remote->push_refspec_nr; i++) {
379 struct refspec *spec = remote->push + i;
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500380 if (spec->matching)
381 item = string_list_append("(matching)", &states->push);
Junio C Hamano5ad6b022009-03-08 00:12:33 -0800382 else if (strlen(spec->src))
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500383 item = string_list_append(spec->src, &states->push);
384 else
385 item = string_list_append("(delete)", &states->push);
386
387 info = item->util = xcalloc(sizeof(struct push_info), 1);
388 info->forced = spec->force;
389 info->status = PUSH_STATUS_NOTQUERIED;
Junio C Hamano5ad6b022009-03-08 00:12:33 -0800390 info->dest = xstrdup(spec->dst ? spec->dst : item->string);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500391 }
392 return 0;
393}
394
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500395static int get_head_names(const struct ref *remote_refs, struct ref_states *states)
396{
397 struct ref *ref, *matches;
398 struct ref *fetch_map = NULL, **fetch_map_tail = &fetch_map;
399 struct refspec refspec;
400
401 refspec.force = 0;
402 refspec.pattern = 1;
Junio C Hamano5ad6b022009-03-08 00:12:33 -0800403 refspec.src = refspec.dst = "refs/heads/*";
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500404 states->heads.strdup_strings = 1;
405 get_fetch_map(remote_refs, &refspec, &fetch_map_tail, 0);
406 matches = guess_remote_head(find_ref_by_name(remote_refs, "HEAD"),
407 fetch_map, 1);
Brian Gianforcaroeeefa7c2009-09-01 01:35:10 -0400408 for (ref = matches; ref; ref = ref->next)
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500409 string_list_append(abbrev_branch(ref->name), &states->heads);
410
411 free_refs(fetch_map);
412 free_refs(matches);
413
414 return 0;
415}
416
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400417struct known_remote {
418 struct known_remote *next;
419 struct remote *remote;
420};
421
422struct known_remotes {
423 struct remote *to_delete;
424 struct known_remote *list;
425};
426
427static int add_known_remote(struct remote *remote, void *cb_data)
428{
429 struct known_remotes *all = cb_data;
430 struct known_remote *r;
431
432 if (!strcmp(all->to_delete->name, remote->name))
433 return 0;
434
435 r = xmalloc(sizeof(*r));
436 r->remote = remote;
437 r->next = all->list;
438 all->list = r;
439 return 0;
440}
441
Johannes Schindelin211c8962008-02-29 01:45:45 +0000442struct branches_for_remote {
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400443 struct remote *remote;
Jay Soffian441adf02009-02-04 11:06:07 -0500444 struct string_list *branches, *skipped;
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400445 struct known_remotes *keep;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000446};
447
448static int add_branch_for_removal(const char *refname,
449 const unsigned char *sha1, int flags, void *cb_data)
450{
451 struct branches_for_remote *branches = cb_data;
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400452 struct refspec refspec;
Johannes Schindelinc455c872008-07-21 19:03:49 +0100453 struct string_list_item *item;
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400454 struct known_remote *kr;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000455
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400456 memset(&refspec, 0, sizeof(refspec));
457 refspec.dst = (char *)refname;
458 if (remote_find_tracking(branches->remote, &refspec))
459 return 0;
Johannes Schindelin3b9dcff2008-03-08 23:40:42 +0100460
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400461 /* don't delete a branch if another remote also uses it */
462 for (kr = branches->keep->list; kr; kr = kr->next) {
463 memset(&refspec, 0, sizeof(refspec));
464 refspec.dst = (char *)refname;
465 if (!remote_find_tracking(kr->remote, &refspec))
466 return 0;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000467 }
468
Jay Soffian441adf02009-02-04 11:06:07 -0500469 /* don't delete non-remote refs */
470 if (prefixcmp(refname, "refs/remotes")) {
471 /* advise user how to delete local branches */
472 if (!prefixcmp(refname, "refs/heads/"))
473 string_list_append(abbrev_branch(refname),
474 branches->skipped);
475 /* silently skip over other non-remote refs */
476 return 0;
477 }
478
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400479 /* make sure that symrefs are deleted */
480 if (flags & REF_ISSYMREF)
Daniel Lowe9db56f72008-11-10 16:07:52 -0500481 return unlink(git_path("%s", refname));
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400482
Johannes Schindelinc455c872008-07-21 19:03:49 +0100483 item = string_list_append(refname, branches->branches);
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400484 item->util = xmalloc(20);
485 hashcpy(item->util, sha1);
486
Johannes Schindelin211c8962008-02-29 01:45:45 +0000487 return 0;
488}
489
Miklos Vajnabf984212008-11-03 19:26:18 +0100490struct rename_info {
491 const char *old;
492 const char *new;
493 struct string_list *remote_branches;
494};
495
496static int read_remote_branches(const char *refname,
497 const unsigned char *sha1, int flags, void *cb_data)
498{
499 struct rename_info *rename = cb_data;
500 struct strbuf buf = STRBUF_INIT;
501 struct string_list_item *item;
502 int flag;
503 unsigned char orig_sha1[20];
504 const char *symref;
505
506 strbuf_addf(&buf, "refs/remotes/%s", rename->old);
Brian Gianforcaroeeefa7c2009-09-01 01:35:10 -0400507 if (!prefixcmp(refname, buf.buf)) {
Miklos Vajnabf984212008-11-03 19:26:18 +0100508 item = string_list_append(xstrdup(refname), rename->remote_branches);
509 symref = resolve_ref(refname, orig_sha1, 1, &flag);
510 if (flag & REF_ISSYMREF)
511 item->util = xstrdup(symref);
512 else
513 item->util = NULL;
514 }
515
516 return 0;
517}
518
Miklos Vajna1dd12392008-11-10 21:43:01 +0100519static int migrate_file(struct remote *remote)
520{
521 struct strbuf buf = STRBUF_INIT;
522 int i;
523 char *path = NULL;
524
525 strbuf_addf(&buf, "remote.%s.url", remote->name);
526 for (i = 0; i < remote->url_nr; i++)
527 if (git_config_set_multivar(buf.buf, remote->url[i], "^$", 0))
528 return error("Could not append '%s' to '%s'",
529 remote->url[i], buf.buf);
530 strbuf_reset(&buf);
531 strbuf_addf(&buf, "remote.%s.push", remote->name);
532 for (i = 0; i < remote->push_refspec_nr; i++)
533 if (git_config_set_multivar(buf.buf, remote->push_refspec[i], "^$", 0))
534 return error("Could not append '%s' to '%s'",
535 remote->push_refspec[i], buf.buf);
536 strbuf_reset(&buf);
537 strbuf_addf(&buf, "remote.%s.fetch", remote->name);
538 for (i = 0; i < remote->fetch_refspec_nr; i++)
539 if (git_config_set_multivar(buf.buf, remote->fetch_refspec[i], "^$", 0))
540 return error("Could not append '%s' to '%s'",
541 remote->fetch_refspec[i], buf.buf);
542 if (remote->origin == REMOTE_REMOTES)
543 path = git_path("remotes/%s", remote->name);
544 else if (remote->origin == REMOTE_BRANCHES)
545 path = git_path("branches/%s", remote->name);
Alex Riesen691f1a22009-04-29 23:22:56 +0200546 if (path)
547 unlink_or_warn(path);
Miklos Vajna1dd12392008-11-10 21:43:01 +0100548 return 0;
549}
550
Miklos Vajnabf984212008-11-03 19:26:18 +0100551static int mv(int argc, const char **argv)
552{
553 struct option options[] = {
554 OPT_END()
555 };
556 struct remote *oldremote, *newremote;
557 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT, buf3 = STRBUF_INIT;
558 struct string_list remote_branches = { NULL, 0, 0, 0 };
559 struct rename_info rename;
560 int i;
561
562 if (argc != 3)
Tim Henigan45041072009-11-20 18:43:13 -0500563 usage_with_options(builtin_remote_rename_usage, options);
Miklos Vajnabf984212008-11-03 19:26:18 +0100564
565 rename.old = argv[1];
566 rename.new = argv[2];
567 rename.remote_branches = &remote_branches;
568
569 oldremote = remote_get(rename.old);
570 if (!oldremote)
571 die("No such remote: %s", rename.old);
572
Miklos Vajna1dd12392008-11-10 21:43:01 +0100573 if (!strcmp(rename.old, rename.new) && oldremote->origin != REMOTE_CONFIG)
574 return migrate_file(oldremote);
575
Miklos Vajnabf984212008-11-03 19:26:18 +0100576 newremote = remote_get(rename.new);
577 if (newremote && (newremote->url_nr > 1 || newremote->fetch_refspec_nr))
578 die("remote %s already exists.", rename.new);
579
580 strbuf_addf(&buf, "refs/heads/test:refs/remotes/%s/test", rename.new);
581 if (!valid_fetch_refspec(buf.buf))
582 die("'%s' is not a valid remote name", rename.new);
583
584 strbuf_reset(&buf);
585 strbuf_addf(&buf, "remote.%s", rename.old);
586 strbuf_addf(&buf2, "remote.%s", rename.new);
587 if (git_config_rename_section(buf.buf, buf2.buf) < 1)
588 return error("Could not rename config section '%s' to '%s'",
589 buf.buf, buf2.buf);
590
591 strbuf_reset(&buf);
592 strbuf_addf(&buf, "remote.%s.fetch", rename.new);
593 if (git_config_set_multivar(buf.buf, NULL, NULL, 1))
594 return error("Could not remove config section '%s'", buf.buf);
595 for (i = 0; i < oldremote->fetch_refspec_nr; i++) {
596 char *ptr;
597
598 strbuf_reset(&buf2);
599 strbuf_addstr(&buf2, oldremote->fetch_refspec[i]);
600 ptr = strstr(buf2.buf, rename.old);
601 if (ptr)
602 strbuf_splice(&buf2, ptr-buf2.buf, strlen(rename.old),
603 rename.new, strlen(rename.new));
604 if (git_config_set_multivar(buf.buf, buf2.buf, "^$", 0))
605 return error("Could not append '%s'", buf.buf);
606 }
607
608 read_branches();
609 for (i = 0; i < branch_list.nr; i++) {
610 struct string_list_item *item = branch_list.items + i;
611 struct branch_info *info = item->util;
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500612 if (info->remote_name && !strcmp(info->remote_name, rename.old)) {
Miklos Vajnabf984212008-11-03 19:26:18 +0100613 strbuf_reset(&buf);
614 strbuf_addf(&buf, "branch.%s.remote", item->string);
615 if (git_config_set(buf.buf, rename.new)) {
616 return error("Could not set '%s'", buf.buf);
617 }
618 }
619 }
620
621 /*
622 * First remove symrefs, then rename the rest, finally create
623 * the new symrefs.
624 */
625 for_each_ref(read_remote_branches, &rename);
626 for (i = 0; i < remote_branches.nr; i++) {
627 struct string_list_item *item = remote_branches.items + i;
628 int flag = 0;
629 unsigned char sha1[20];
Miklos Vajnabf984212008-11-03 19:26:18 +0100630
Benjamin Kramereb3a9dd2009-03-07 21:02:10 +0100631 resolve_ref(item->string, sha1, 1, &flag);
Miklos Vajnabf984212008-11-03 19:26:18 +0100632 if (!(flag & REF_ISSYMREF))
633 continue;
634 if (delete_ref(item->string, NULL, REF_NODEREF))
635 die("deleting '%s' failed", item->string);
636 }
637 for (i = 0; i < remote_branches.nr; i++) {
638 struct string_list_item *item = remote_branches.items + i;
639
640 if (item->util)
641 continue;
642 strbuf_reset(&buf);
643 strbuf_addstr(&buf, item->string);
644 strbuf_splice(&buf, strlen("refs/remotes/"), strlen(rename.old),
645 rename.new, strlen(rename.new));
646 strbuf_reset(&buf2);
647 strbuf_addf(&buf2, "remote: renamed %s to %s",
648 item->string, buf.buf);
649 if (rename_ref(item->string, buf.buf, buf2.buf))
650 die("renaming '%s' failed", item->string);
651 }
652 for (i = 0; i < remote_branches.nr; i++) {
653 struct string_list_item *item = remote_branches.items + i;
654
655 if (!item->util)
656 continue;
657 strbuf_reset(&buf);
658 strbuf_addstr(&buf, item->string);
659 strbuf_splice(&buf, strlen("refs/remotes/"), strlen(rename.old),
660 rename.new, strlen(rename.new));
661 strbuf_reset(&buf2);
662 strbuf_addstr(&buf2, item->util);
663 strbuf_splice(&buf2, strlen("refs/remotes/"), strlen(rename.old),
664 rename.new, strlen(rename.new));
665 strbuf_reset(&buf3);
666 strbuf_addf(&buf3, "remote: renamed %s to %s",
667 item->string, buf.buf);
668 if (create_symref(buf.buf, buf2.buf, buf3.buf))
669 die("creating '%s' failed", buf.buf);
670 }
671 return 0;
672}
673
Johannes Schindelinc455c872008-07-21 19:03:49 +0100674static int remove_branches(struct string_list *branches)
Johannes Schindelin211c8962008-02-29 01:45:45 +0000675{
676 int i, result = 0;
677 for (i = 0; i < branches->nr; i++) {
Johannes Schindelinc455c872008-07-21 19:03:49 +0100678 struct string_list_item *item = branches->items + i;
679 const char *refname = item->string;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000680 unsigned char *sha1 = item->util;
681
Miklos Vajnaeca35a22008-10-26 03:33:56 +0100682 if (delete_ref(refname, sha1, 0))
Johannes Schindelin211c8962008-02-29 01:45:45 +0000683 result |= error("Could not remove branch %s", refname);
684 }
685 return result;
686}
687
688static int rm(int argc, const char **argv)
689{
690 struct option options[] = {
691 OPT_END()
692 };
693 struct remote *remote;
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500694 struct strbuf buf = STRBUF_INIT;
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400695 struct known_remotes known_remotes = { NULL, NULL };
Johannes Schindelinc455c872008-07-21 19:03:49 +0100696 struct string_list branches = { NULL, 0, 0, 1 };
Jay Soffian441adf02009-02-04 11:06:07 -0500697 struct string_list skipped = { NULL, 0, 0, 1 };
698 struct branches_for_remote cb_data = {
699 NULL, &branches, &skipped, &known_remotes
700 };
Jay Soffiane02f1762009-02-03 12:51:12 -0500701 int i, result;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000702
703 if (argc != 2)
Tim Henigan45041072009-11-20 18:43:13 -0500704 usage_with_options(builtin_remote_rm_usage, options);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000705
706 remote = remote_get(argv[1]);
707 if (!remote)
708 die("No such remote: %s", argv[1]);
709
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400710 known_remotes.to_delete = remote;
711 for_each_remote(add_known_remote, &known_remotes);
712
Johannes Schindelin211c8962008-02-29 01:45:45 +0000713 strbuf_addf(&buf, "remote.%s", remote->name);
714 if (git_config_rename_section(buf.buf, NULL) < 1)
715 return error("Could not remove config section '%s'", buf.buf);
716
717 read_branches();
718 for (i = 0; i < branch_list.nr; i++) {
Johannes Schindelinc455c872008-07-21 19:03:49 +0100719 struct string_list_item *item = branch_list.items + i;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000720 struct branch_info *info = item->util;
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500721 if (info->remote_name && !strcmp(info->remote_name, remote->name)) {
Johannes Schindelin211c8962008-02-29 01:45:45 +0000722 const char *keys[] = { "remote", "merge", NULL }, **k;
723 for (k = keys; *k; k++) {
724 strbuf_reset(&buf);
725 strbuf_addf(&buf, "branch.%s.%s",
Johannes Schindelinc455c872008-07-21 19:03:49 +0100726 item->string, *k);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000727 if (git_config_set(buf.buf, NULL)) {
728 strbuf_release(&buf);
729 return -1;
730 }
731 }
732 }
733 }
734
735 /*
736 * We cannot just pass a function to for_each_ref() which deletes
737 * the branches one by one, since for_each_ref() relies on cached
738 * refs, which are invalidated when deleting a branch.
739 */
Shawn O. Pearce7ad24582008-06-01 00:28:04 -0400740 cb_data.remote = remote;
Jay Soffiane02f1762009-02-03 12:51:12 -0500741 result = for_each_ref(add_branch_for_removal, &cb_data);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000742 strbuf_release(&buf);
743
Jay Soffiane02f1762009-02-03 12:51:12 -0500744 if (!result)
745 result = remove_branches(&branches);
Johannes Schindelinc455c872008-07-21 19:03:49 +0100746 string_list_clear(&branches, 1);
Johannes Schindelin211c8962008-02-29 01:45:45 +0000747
Jay Soffian441adf02009-02-04 11:06:07 -0500748 if (skipped.nr) {
749 fprintf(stderr, skipped.nr == 1 ?
750 "Note: A non-remote branch was not removed; "
751 "to delete it, use:\n" :
752 "Note: Non-remote branches were not removed; "
753 "to delete them, use:\n");
754 for (i = 0; i < skipped.nr; i++)
755 fprintf(stderr, " git branch -d %s\n",
756 skipped.items[i].string);
757 }
758 string_list_clear(&skipped, 0);
759
Jay Soffiane02f1762009-02-03 12:51:12 -0500760 return result;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000761}
762
Linus Torvalds2af202b2009-06-18 10:28:43 -0700763static void clear_push_info(void *util, const char *string)
Johannes Schindelin211c8962008-02-29 01:45:45 +0000764{
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500765 struct push_info *info = util;
766 free(info->dest);
767 free(info);
768}
Johannes Schindelin211c8962008-02-29 01:45:45 +0000769
Jay Soffian88733232009-02-25 03:32:19 -0500770static void free_remote_ref_states(struct ref_states *states)
771{
772 string_list_clear(&states->new, 0);
Bert Wesarg92f676f2009-12-01 00:57:27 +0100773 string_list_clear(&states->stale, 1);
Jay Soffian88733232009-02-25 03:32:19 -0500774 string_list_clear(&states->tracked, 0);
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500775 string_list_clear(&states->heads, 0);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500776 string_list_clear_func(&states->push, clear_push_info);
Jay Soffian88733232009-02-25 03:32:19 -0500777}
Johannes Schindelin211c8962008-02-29 01:45:45 +0000778
Jay Soffiancca7c972009-02-25 03:32:22 -0500779static int append_ref_to_tracked_list(const char *refname,
780 const unsigned char *sha1, int flags, void *cb_data)
781{
782 struct ref_states *states = cb_data;
783 struct refspec refspec;
784
Jay Soffian3bd92562009-02-25 03:32:23 -0500785 if (flags & REF_ISSYMREF)
786 return 0;
787
Jay Soffiancca7c972009-02-25 03:32:22 -0500788 memset(&refspec, 0, sizeof(refspec));
789 refspec.dst = (char *)refname;
790 if (!remote_find_tracking(states->remote, &refspec))
791 string_list_append(abbrev_branch(refspec.src), &states->tracked);
792
793 return 0;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000794}
795
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200796static int get_remote_ref_states(const char *name,
797 struct ref_states *states,
798 int query)
799{
800 struct transport *transport;
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500801 const struct ref *remote_refs;
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200802
803 states->remote = remote_get(name);
804 if (!states->remote)
805 return error("No such remote: %s", name);
806
807 read_branches();
808
809 if (query) {
Chris Frey345a3802009-06-25 17:21:35 -0400810 transport = transport_get(states->remote, states->remote->url_nr > 0 ?
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200811 states->remote->url[0] : NULL);
Jay Soffiane0cc81e2009-02-25 03:32:21 -0500812 remote_refs = transport_get_remote_refs(transport);
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200813 transport_disconnect(transport);
814
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500815 states->queried = 1;
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500816 if (query & GET_REF_STATES)
817 get_ref_states(remote_refs, states);
818 if (query & GET_HEAD_NAMES)
819 get_head_names(remote_refs, states);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500820 if (query & GET_PUSH_REF_STATES)
821 get_push_ref_states(remote_refs, states);
Jay Soffian3bd92562009-02-25 03:32:23 -0500822 } else {
Jay Soffiancca7c972009-02-25 03:32:22 -0500823 for_each_ref(append_ref_to_tracked_list, states);
Jay Soffian3bd92562009-02-25 03:32:23 -0500824 sort_string_list(&states->tracked);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500825 get_push_ref_states_noquery(states);
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200826 }
827
828 return 0;
829}
830
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500831struct show_info {
832 struct string_list *list;
833 struct ref_states *states;
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500834 int width, width2;
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500835 int any_rebase;
836};
837
Linus Torvalds2af202b2009-06-18 10:28:43 -0700838static int add_remote_to_show_info(struct string_list_item *item, void *cb_data)
Olivier Marine7d5a972008-06-11 00:54:49 +0200839{
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500840 struct show_info *info = cb_data;
841 int n = strlen(item->string);
842 if (n > info->width)
843 info->width = n;
844 string_list_insert(item->string, info->list);
845 return 0;
846}
Olivier Marine7d5a972008-06-11 00:54:49 +0200847
Linus Torvalds2af202b2009-06-18 10:28:43 -0700848static int show_remote_info_item(struct string_list_item *item, void *cb_data)
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500849{
850 struct show_info *info = cb_data;
851 struct ref_states *states = info->states;
852 const char *name = item->string;
Olivier Marine7d5a972008-06-11 00:54:49 +0200853
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500854 if (states->queried) {
855 const char *fmt = "%s";
856 const char *arg = "";
857 if (string_list_has_string(&states->new, name)) {
858 fmt = " new (next fetch will store in remotes/%s)";
859 arg = states->remote->name;
860 } else if (string_list_has_string(&states->tracked, name))
861 arg = " tracked";
862 else if (string_list_has_string(&states->stale, name))
863 arg = " stale (use 'git remote prune' to remove)";
864 else
865 arg = " ???";
866 printf(" %-*s", info->width, name);
867 printf(fmt, arg);
868 printf("\n");
869 } else
870 printf(" %s\n", name);
871
872 return 0;
873}
874
Linus Torvalds2af202b2009-06-18 10:28:43 -0700875static int add_local_to_show_info(struct string_list_item *branch_item, void *cb_data)
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500876{
877 struct show_info *show_info = cb_data;
878 struct ref_states *states = show_info->states;
879 struct branch_info *branch_info = branch_item->util;
880 struct string_list_item *item;
881 int n;
882
883 if (!branch_info->merge.nr || !branch_info->remote_name ||
884 strcmp(states->remote->name, branch_info->remote_name))
885 return 0;
886 if ((n = strlen(branch_item->string)) > show_info->width)
887 show_info->width = n;
888 if (branch_info->rebase)
889 show_info->any_rebase = 1;
890
891 item = string_list_insert(branch_item->string, show_info->list);
892 item->util = branch_info;
893
894 return 0;
895}
896
Linus Torvalds2af202b2009-06-18 10:28:43 -0700897static int show_local_info_item(struct string_list_item *item, void *cb_data)
Jay Soffian7ecbbf82009-02-25 03:32:27 -0500898{
899 struct show_info *show_info = cb_data;
900 struct branch_info *branch_info = item->util;
901 struct string_list *merge = &branch_info->merge;
902 const char *also;
903 int i;
904
905 if (branch_info->rebase && branch_info->merge.nr > 1) {
906 error("invalid branch.%s.merge; cannot rebase onto > 1 branch",
907 item->string);
908 return 0;
909 }
910
911 printf(" %-*s ", show_info->width, item->string);
912 if (branch_info->rebase) {
913 printf("rebases onto remote %s\n", merge->items[0].string);
914 return 0;
915 } else if (show_info->any_rebase) {
916 printf(" merges with remote %s\n", merge->items[0].string);
917 also = " and with remote";
918 } else {
919 printf("merges with remote %s\n", merge->items[0].string);
920 also = " and with remote";
921 }
922 for (i = 1; i < merge->nr; i++)
923 printf(" %-*s %s %s\n", show_info->width, "", also,
924 merge->items[i].string);
925
926 return 0;
927}
928
Linus Torvalds2af202b2009-06-18 10:28:43 -0700929static int add_push_to_show_info(struct string_list_item *push_item, void *cb_data)
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500930{
931 struct show_info *show_info = cb_data;
932 struct push_info *push_info = push_item->util;
933 struct string_list_item *item;
934 int n;
935 if ((n = strlen(push_item->string)) > show_info->width)
936 show_info->width = n;
937 if ((n = strlen(push_info->dest)) > show_info->width2)
938 show_info->width2 = n;
939 item = string_list_append(push_item->string, show_info->list);
940 item->util = push_item->util;
941 return 0;
942}
943
Jeff King48ef5632009-03-22 04:59:20 -0400944/*
945 * Sorting comparison for a string list that has push_info
946 * structs in its util field
947 */
948static int cmp_string_with_push(const void *va, const void *vb)
949{
950 const struct string_list_item *a = va;
951 const struct string_list_item *b = vb;
952 const struct push_info *a_push = a->util;
953 const struct push_info *b_push = b->util;
954 int cmp = strcmp(a->string, b->string);
955 return cmp ? cmp : strcmp(a_push->dest, b_push->dest);
956}
957
Linus Torvalds2af202b2009-06-18 10:28:43 -0700958static int show_push_info_item(struct string_list_item *item, void *cb_data)
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500959{
960 struct show_info *show_info = cb_data;
961 struct push_info *push_info = item->util;
962 char *src = item->string, *status = NULL;
963
964 switch (push_info->status) {
965 case PUSH_STATUS_CREATE:
966 status = "create";
967 break;
968 case PUSH_STATUS_DELETE:
969 status = "delete";
970 src = "(none)";
971 break;
972 case PUSH_STATUS_UPTODATE:
973 status = "up to date";
974 break;
975 case PUSH_STATUS_FASTFORWARD:
Felipe Contrerasa75d7b52009-10-24 11:31:32 +0300976 status = "fast-forwardable";
Jay Soffiane5dcbfd2009-02-25 03:32:28 -0500977 break;
978 case PUSH_STATUS_OUTOFDATE:
979 status = "local out of date";
980 break;
981 case PUSH_STATUS_NOTQUERIED:
982 break;
983 }
984 if (status)
985 printf(" %-*s %s to %-*s (%s)\n", show_info->width, src,
986 push_info->forced ? "forces" : "pushes",
987 show_info->width2, push_info->dest, status);
988 else
989 printf(" %-*s %s to %s\n", show_info->width, src,
990 push_info->forced ? "forces" : "pushes",
991 push_info->dest);
Olivier Marine7d5a972008-06-11 00:54:49 +0200992 return 0;
993}
994
Olivier Marin67a7e2d2008-06-10 16:51:21 +0200995static int show(int argc, const char **argv)
Johannes Schindelin211c8962008-02-29 01:45:45 +0000996{
Jay Soffiane61e0cc2009-02-25 03:32:24 -0500997 int no_query = 0, result = 0, query_flag = 0;
Johannes Schindelin211c8962008-02-29 01:45:45 +0000998 struct option options[] = {
Olivier Marin0ecfcb32008-06-10 16:51:08 +0200999 OPT_BOOLEAN('n', NULL, &no_query, "do not query remotes"),
Johannes Schindelin211c8962008-02-29 01:45:45 +00001000 OPT_END()
1001 };
1002 struct ref_states states;
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001003 struct string_list info_list = { NULL, 0, 0, 0 };
1004 struct show_info info;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001005
Tim Henigan45041072009-11-20 18:43:13 -05001006 argc = parse_options(argc, argv, NULL, options, builtin_remote_show_usage,
Stephen Boyd37782922009-05-23 11:53:12 -07001007 0);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001008
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001009 if (argc < 1)
1010 return show_all();
Johannes Schindelin211c8962008-02-29 01:45:45 +00001011
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001012 if (!no_query)
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001013 query_flag = (GET_REF_STATES | GET_HEAD_NAMES | GET_PUSH_REF_STATES);
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001014
Johannes Schindelin211c8962008-02-29 01:45:45 +00001015 memset(&states, 0, sizeof(states));
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001016 memset(&info, 0, sizeof(info));
1017 info.states = &states;
1018 info.list = &info_list;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001019 for (; argc; argc--, argv++) {
Olivier Marin0ecfcb32008-06-10 16:51:08 +02001020 int i;
Michael J Gruber857f8c32009-06-13 18:29:10 +02001021 const char **url;
1022 int url_nr;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001023
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001024 get_remote_ref_states(*argv, &states, query_flag);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001025
Michael J Gruber956d27a2009-06-06 17:16:30 +02001026 printf("* remote %s\n", *argv);
Michael J Gruber857f8c32009-06-13 18:29:10 +02001027 printf(" Fetch URL: %s\n", states.remote->url_nr > 0 ?
1028 states.remote->url[0] : "(no URL)");
1029 if (states.remote->pushurl_nr) {
1030 url = states.remote->pushurl;
1031 url_nr = states.remote->pushurl_nr;
1032 } else {
1033 url = states.remote->url;
1034 url_nr = states.remote->url_nr;
1035 }
1036 for (i=0; i < url_nr; i++)
1037 printf(" Push URL: %s\n", url[i]);
1038 if (!i)
1039 printf(" Push URL: %s\n", "(no URL)");
Olivier Marine7d5a972008-06-11 00:54:49 +02001040 if (no_query)
Jay Soffiane61e0cc2009-02-25 03:32:24 -05001041 printf(" HEAD branch: (not queried)\n");
1042 else if (!states.heads.nr)
1043 printf(" HEAD branch: (unknown)\n");
1044 else if (states.heads.nr == 1)
1045 printf(" HEAD branch: %s\n", states.heads.items[0].string);
1046 else {
1047 printf(" HEAD branch (remote HEAD is ambiguous,"
1048 " may be one of the following):\n");
1049 for (i = 0; i < states.heads.nr; i++)
1050 printf(" %s\n", states.heads.items[i].string);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001051 }
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001052
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001053 /* remote branch info */
1054 info.width = 0;
1055 for_each_string_list(add_remote_to_show_info, &states.new, &info);
1056 for_each_string_list(add_remote_to_show_info, &states.tracked, &info);
1057 for_each_string_list(add_remote_to_show_info, &states.stale, &info);
1058 if (info.list->nr)
1059 printf(" Remote branch%s:%s\n",
1060 info.list->nr > 1 ? "es" : "",
1061 no_query ? " (status not queried)" : "");
1062 for_each_string_list(show_remote_info_item, info.list, &info);
1063 string_list_clear(info.list, 0);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001064
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001065 /* git pull info */
1066 info.width = 0;
1067 info.any_rebase = 0;
1068 for_each_string_list(add_local_to_show_info, &branch_list, &info);
1069 if (info.list->nr)
1070 printf(" Local branch%s configured for 'git pull':\n",
1071 info.list->nr > 1 ? "es" : "");
1072 for_each_string_list(show_local_info_item, info.list, &info);
1073 string_list_clear(info.list, 0);
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001074
Jay Soffian7ecbbf82009-02-25 03:32:27 -05001075 /* git push info */
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001076 if (states.remote->mirror)
1077 printf(" Local refs will be mirrored by 'git push'\n");
1078
1079 info.width = info.width2 = 0;
1080 for_each_string_list(add_push_to_show_info, &states.push, &info);
Jeff King48ef5632009-03-22 04:59:20 -04001081 qsort(info.list->items, info.list->nr,
1082 sizeof(*info.list->items), cmp_string_with_push);
Jay Soffiane5dcbfd2009-02-25 03:32:28 -05001083 if (info.list->nr)
1084 printf(" Local ref%s configured for 'git push'%s:\n",
1085 info.list->nr > 1 ? "s" : "",
1086 no_query ? " (status not queried)" : "");
1087 for_each_string_list(show_push_info_item, info.list, &info);
1088 string_list_clear(info.list, 0);
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001089
Jay Soffian88733232009-02-25 03:32:19 -05001090 free_remote_ref_states(&states);
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001091 }
1092
1093 return result;
1094}
1095
Jay Soffianbc14fac2009-02-25 03:32:25 -05001096static int set_head(int argc, const char **argv)
1097{
1098 int i, opt_a = 0, opt_d = 0, result = 0;
1099 struct strbuf buf = STRBUF_INIT, buf2 = STRBUF_INIT;
1100 char *head_name = NULL;
1101
1102 struct option options[] = {
Jay Soffianbc14fac2009-02-25 03:32:25 -05001103 OPT_BOOLEAN('a', "auto", &opt_a,
1104 "set refs/remotes/<name>/HEAD according to remote"),
1105 OPT_BOOLEAN('d', "delete", &opt_d,
1106 "delete refs/remotes/<name>/HEAD"),
1107 OPT_END()
1108 };
Tim Henigan45041072009-11-20 18:43:13 -05001109 argc = parse_options(argc, argv, NULL, options, builtin_remote_sethead_usage,
Stephen Boyd37782922009-05-23 11:53:12 -07001110 0);
Jay Soffianbc14fac2009-02-25 03:32:25 -05001111 if (argc)
1112 strbuf_addf(&buf, "refs/remotes/%s/HEAD", argv[0]);
1113
1114 if (!opt_a && !opt_d && argc == 2) {
1115 head_name = xstrdup(argv[1]);
1116 } else if (opt_a && !opt_d && argc == 1) {
1117 struct ref_states states;
1118 memset(&states, 0, sizeof(states));
1119 get_remote_ref_states(argv[0], &states, GET_HEAD_NAMES);
1120 if (!states.heads.nr)
1121 result |= error("Cannot determine remote HEAD");
1122 else if (states.heads.nr > 1) {
1123 result |= error("Multiple remote HEAD branches. "
1124 "Please choose one explicitly with:");
1125 for (i = 0; i < states.heads.nr; i++)
1126 fprintf(stderr, " git remote set-head %s %s\n",
1127 argv[0], states.heads.items[i].string);
1128 } else
1129 head_name = xstrdup(states.heads.items[0].string);
1130 free_remote_ref_states(&states);
1131 } else if (opt_d && !opt_a && argc == 1) {
1132 if (delete_ref(buf.buf, NULL, REF_NODEREF))
1133 result |= error("Could not delete %s", buf.buf);
1134 } else
Tim Henigan45041072009-11-20 18:43:13 -05001135 usage_with_options(builtin_remote_sethead_usage, options);
Jay Soffianbc14fac2009-02-25 03:32:25 -05001136
1137 if (head_name) {
1138 unsigned char sha1[20];
1139 strbuf_addf(&buf2, "refs/remotes/%s/%s", argv[0], head_name);
1140 /* make sure it's valid */
1141 if (!resolve_ref(buf2.buf, sha1, 1, NULL))
1142 result |= error("Not a valid ref: %s", buf2.buf);
1143 else if (create_symref(buf.buf, buf2.buf, "remote set-head"))
1144 result |= error("Could not setup %s", buf.buf);
1145 if (opt_a)
1146 printf("%s/HEAD set to %s\n", argv[0], head_name);
1147 free(head_name);
1148 }
1149
1150 strbuf_release(&buf);
1151 strbuf_release(&buf2);
1152 return result;
1153}
1154
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001155static int prune(int argc, const char **argv)
1156{
Olivier Marin8d767922008-06-10 16:51:35 +02001157 int dry_run = 0, result = 0;
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001158 struct option options[] = {
Olivier Marin8d767922008-06-10 16:51:35 +02001159 OPT__DRY_RUN(&dry_run),
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001160 OPT_END()
1161 };
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001162
Tim Henigan45041072009-11-20 18:43:13 -05001163 argc = parse_options(argc, argv, NULL, options, builtin_remote_prune_usage,
Stephen Boyd37782922009-05-23 11:53:12 -07001164 0);
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001165
1166 if (argc < 1)
Tim Henigan45041072009-11-20 18:43:13 -05001167 usage_with_options(builtin_remote_prune_usage, options);
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001168
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001169 for (; argc; argc--, argv++)
1170 result |= prune_remote(*argv, dry_run);
1171
1172 return result;
1173}
1174
1175static int prune_remote(const char *remote, int dry_run)
1176{
1177 int result = 0, i;
1178 struct ref_states states;
1179 const char *dangling_msg = dry_run
1180 ? " %s will become dangling!\n"
1181 : " %s has become dangling!\n";
Junio C Hamanof8948e22009-02-08 23:27:10 -08001182
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001183 memset(&states, 0, sizeof(states));
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001184 get_remote_ref_states(remote, &states, GET_REF_STATES);
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001185
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001186 if (states.stale.nr) {
1187 printf("Pruning %s\n", remote);
1188 printf("URL: %s\n",
1189 states.remote->url_nr
1190 ? states.remote->url[0]
1191 : "(no URL)");
Johannes Schindelin211c8962008-02-29 01:45:45 +00001192 }
1193
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001194 for (i = 0; i < states.stale.nr; i++) {
1195 const char *refname = states.stale.items[i].util;
1196
1197 if (!dry_run)
1198 result |= delete_ref(refname, NULL, 0);
1199
1200 printf(" * [%s] %s\n", dry_run ? "would prune" : "pruned",
1201 abbrev_ref(refname, "refs/remotes/"));
Jay Soffian3cf61342009-11-10 00:03:32 -05001202 warn_dangling_symref(stdout, dangling_msg, refname);
Finn Arne Gangstadb92c5f22009-04-03 11:02:37 +02001203 }
1204
1205 free_remote_ref_states(&states);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001206 return result;
1207}
1208
Björn Gustavsson8db35592009-11-10 09:21:32 +01001209static int get_remote_default(const char *key, const char *value, void *priv)
Johannes Schindelin211c8962008-02-29 01:45:45 +00001210{
Björn Gustavsson8db35592009-11-10 09:21:32 +01001211 if (strcmp(key, "remotes.default") == 0) {
1212 int *found = priv;
1213 *found = 1;
Johannes Schindelin84521ed2008-03-04 11:23:53 +00001214 }
Johannes Schindelin211c8962008-02-29 01:45:45 +00001215 return 0;
1216}
1217
1218static int update(int argc, const char **argv)
1219{
Björn Gustavsson8db35592009-11-10 09:21:32 +01001220 int i, prune = 0;
Finn Arne Gangstadefa54802009-04-03 11:03:44 +02001221 struct option options[] = {
Finn Arne Gangstadefa54802009-04-03 11:03:44 +02001222 OPT_BOOLEAN('p', "prune", &prune,
Mike Ralphson7c0282b2009-04-17 19:13:29 +01001223 "prune remotes after fetching"),
Finn Arne Gangstadefa54802009-04-03 11:03:44 +02001224 OPT_END()
1225 };
Björn Gustavsson8db35592009-11-10 09:21:32 +01001226 const char **fetch_argv;
1227 int fetch_argc = 0;
1228 int default_defined = 0;
1229
1230 fetch_argv = xmalloc(sizeof(char *) * (argc+5));
Johannes Schindelin211c8962008-02-29 01:45:45 +00001231
Tim Henigan45041072009-11-20 18:43:13 -05001232 argc = parse_options(argc, argv, NULL, options, builtin_remote_update_usage,
Finn Arne Gangstadefa54802009-04-03 11:03:44 +02001233 PARSE_OPT_KEEP_ARGV0);
Björn Gustavsson8db35592009-11-10 09:21:32 +01001234
1235 fetch_argv[fetch_argc++] = "fetch";
1236
1237 if (prune)
1238 fetch_argv[fetch_argc++] = "--prune";
1239 if (verbose)
1240 fetch_argv[fetch_argc++] = "-v";
Björn Gustavsson4f2e8422009-12-31 10:43:17 +01001241 fetch_argv[fetch_argc++] = "--multiple";
1242 if (argc < 2)
Björn Gustavsson8db35592009-11-10 09:21:32 +01001243 fetch_argv[fetch_argc++] = "default";
Björn Gustavsson4f2e8422009-12-31 10:43:17 +01001244 for (i = 1; i < argc; i++)
1245 fetch_argv[fetch_argc++] = argv[i];
Johannes Schindelin211c8962008-02-29 01:45:45 +00001246
Björn Gustavsson8db35592009-11-10 09:21:32 +01001247 if (strcmp(fetch_argv[fetch_argc-1], "default") == 0) {
1248 git_config(get_remote_default, &default_defined);
1249 if (!default_defined)
1250 fetch_argv[fetch_argc-1] = "--all";
Johannes Schindelin84521ed2008-03-04 11:23:53 +00001251 }
1252
Björn Gustavsson8db35592009-11-10 09:21:32 +01001253 fetch_argv[fetch_argc] = NULL;
Johannes Schindelin84521ed2008-03-04 11:23:53 +00001254
Björn Gustavsson8db35592009-11-10 09:21:32 +01001255 return run_command_v_opt(fetch_argv, RUN_GIT_CMD);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001256}
1257
1258static int get_one_entry(struct remote *remote, void *priv)
1259{
Johannes Schindelinc455c872008-07-21 19:03:49 +01001260 struct string_list *list = priv;
Bert Wesarg3f721d12009-06-23 00:27:44 +02001261 struct strbuf url_buf = STRBUF_INIT;
Michael J Gruber4a4b4cd2009-06-13 18:29:11 +02001262 const char **url;
1263 int i, url_nr;
Johannes Schindelin211c8962008-02-29 01:45:45 +00001264
Michael J Gruber7d20e212008-09-22 10:57:51 +02001265 if (remote->url_nr > 0) {
Bert Wesarg3f721d12009-06-23 00:27:44 +02001266 strbuf_addf(&url_buf, "%s (fetch)", remote->url[0]);
1267 string_list_append(remote->name, list)->util =
1268 strbuf_detach(&url_buf, NULL);
Michael J Gruber7d20e212008-09-22 10:57:51 +02001269 } else
1270 string_list_append(remote->name, list)->util = NULL;
Michael J Gruber4a4b4cd2009-06-13 18:29:11 +02001271 if (remote->pushurl_nr) {
1272 url = remote->pushurl;
1273 url_nr = remote->pushurl_nr;
1274 } else {
1275 url = remote->url;
1276 url_nr = remote->url_nr;
1277 }
1278 for (i = 0; i < url_nr; i++)
1279 {
Bert Wesarg3f721d12009-06-23 00:27:44 +02001280 strbuf_addf(&url_buf, "%s (push)", url[i]);
1281 string_list_append(remote->name, list)->util =
1282 strbuf_detach(&url_buf, NULL);
Michael J Gruber4a4b4cd2009-06-13 18:29:11 +02001283 }
Johannes Schindelin211c8962008-02-29 01:45:45 +00001284
1285 return 0;
1286}
1287
1288static int show_all(void)
1289{
Johannes Schindelinc455c872008-07-21 19:03:49 +01001290 struct string_list list = { NULL, 0, 0 };
Michael J Gruber4a4b4cd2009-06-13 18:29:11 +02001291 int result;
1292
1293 list.strdup_strings = 1;
1294 result = for_each_remote(get_one_entry, &list);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001295
1296 if (!result) {
1297 int i;
1298
Johannes Schindelinc455c872008-07-21 19:03:49 +01001299 sort_string_list(&list);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001300 for (i = 0; i < list.nr; i++) {
Johannes Schindelinc455c872008-07-21 19:03:49 +01001301 struct string_list_item *item = list.items + i;
Michael J Gruber7d20e212008-09-22 10:57:51 +02001302 if (verbose)
1303 printf("%s\t%s\n", item->string,
1304 item->util ? (const char *)item->util : "");
1305 else {
1306 if (i && !strcmp((item - 1)->string, item->string))
1307 continue;
1308 printf("%s\n", item->string);
1309 }
Johannes Schindelin211c8962008-02-29 01:45:45 +00001310 }
1311 }
Michael J Gruber4a4b4cd2009-06-13 18:29:11 +02001312 string_list_clear(&list, 1);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001313 return result;
1314}
1315
1316int cmd_remote(int argc, const char **argv, const char *prefix)
1317{
1318 struct option options[] = {
Tim Henigan45041072009-11-20 18:43:13 -05001319 OPT_BOOLEAN('v', "verbose", &verbose, "be verbose; must be placed before a subcommand"),
Johannes Schindelin211c8962008-02-29 01:45:45 +00001320 OPT_END()
1321 };
1322 int result;
1323
Stephen Boyd37782922009-05-23 11:53:12 -07001324 argc = parse_options(argc, argv, prefix, options, builtin_remote_usage,
Johannes Schindelin211c8962008-02-29 01:45:45 +00001325 PARSE_OPT_STOP_AT_NON_OPTION);
1326
1327 if (argc < 1)
1328 result = show_all();
1329 else if (!strcmp(argv[0], "add"))
1330 result = add(argc, argv);
Miklos Vajnabf984212008-11-03 19:26:18 +01001331 else if (!strcmp(argv[0], "rename"))
1332 result = mv(argc, argv);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001333 else if (!strcmp(argv[0], "rm"))
1334 result = rm(argc, argv);
Jay Soffianbc14fac2009-02-25 03:32:25 -05001335 else if (!strcmp(argv[0], "set-head"))
1336 result = set_head(argc, argv);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001337 else if (!strcmp(argv[0], "show"))
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001338 result = show(argc, argv);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001339 else if (!strcmp(argv[0], "prune"))
Olivier Marin67a7e2d2008-06-10 16:51:21 +02001340 result = prune(argc, argv);
Johannes Schindelin211c8962008-02-29 01:45:45 +00001341 else if (!strcmp(argv[0], "update"))
1342 result = update(argc, argv);
1343 else {
1344 error("Unknown subcommand: %s", argv[0]);
1345 usage_with_options(builtin_remote_usage, options);
1346 }
1347
1348 return result ? 1 : 0;
1349}