git-branch, git-checkout: autosetup for remote branch tracking
[git/dscho.git] / builtin-branch.c
blobe161e00978d5b26d7c5f520600359e6650f2fb34
1 /*
2 * Builtin "git branch"
4 * Copyright (c) 2006 Kristian Høgsberg <krh@redhat.com>
5 * Based on git-branch.sh by Junio C Hamano.
6 */
8 #include "cache.h"
9 #include "color.h"
10 #include "refs.h"
11 #include "commit.h"
12 #include "builtin.h"
14 static const char builtin_branch_usage[] =
15 "git-branch [-r] (-d | -D) <branchname> | [--track | --no-track] [-l] [-f] <branchname> [<start-point>] | (-m | -M) [<oldbranch>] <newbranch> | [--color | --no-color] [-r | -a] [-v [--abbrev=<length> | --no-abbrev]]";
17 #define REF_UNKNOWN_TYPE 0x00
18 #define REF_LOCAL_BRANCH 0x01
19 #define REF_REMOTE_BRANCH 0x02
20 #define REF_TAG 0x04
22 static const char *head;
23 static unsigned char head_sha1[20];
25 static int branch_track_remotes;
27 static int branch_use_color;
28 static char branch_colors[][COLOR_MAXLEN] = {
29 "\033[m", /* reset */
30 "", /* PLAIN (normal) */
31 "\033[31m", /* REMOTE (red) */
32 "", /* LOCAL (normal) */
33 "\033[32m", /* CURRENT (green) */
35 enum color_branch {
36 COLOR_BRANCH_RESET = 0,
37 COLOR_BRANCH_PLAIN = 1,
38 COLOR_BRANCH_REMOTE = 2,
39 COLOR_BRANCH_LOCAL = 3,
40 COLOR_BRANCH_CURRENT = 4,
43 static int parse_branch_color_slot(const char *var, int ofs)
45 if (!strcasecmp(var+ofs, "plain"))
46 return COLOR_BRANCH_PLAIN;
47 if (!strcasecmp(var+ofs, "reset"))
48 return COLOR_BRANCH_RESET;
49 if (!strcasecmp(var+ofs, "remote"))
50 return COLOR_BRANCH_REMOTE;
51 if (!strcasecmp(var+ofs, "local"))
52 return COLOR_BRANCH_LOCAL;
53 if (!strcasecmp(var+ofs, "current"))
54 return COLOR_BRANCH_CURRENT;
55 die("bad config variable '%s'", var);
58 int git_branch_config(const char *var, const char *value)
60 if (!strcmp(var, "color.branch")) {
61 branch_use_color = git_config_colorbool(var, value);
62 return 0;
64 if (!prefixcmp(var, "color.branch.")) {
65 int slot = parse_branch_color_slot(var, 13);
66 color_parse(value, var, branch_colors[slot]);
67 return 0;
69 if (!strcmp(var, "branch.autosetupmerge"))
70 branch_track_remotes = git_config_bool(var, value);
72 return git_default_config(var, value);
75 const char *branch_get_color(enum color_branch ix)
77 if (branch_use_color)
78 return branch_colors[ix];
79 return "";
82 static int delete_branches(int argc, const char **argv, int force, int kinds)
84 struct commit *rev, *head_rev = head_rev;
85 unsigned char sha1[20];
86 char *name = NULL;
87 const char *fmt, *remote;
88 int i;
89 int ret = 0;
91 switch (kinds) {
92 case REF_REMOTE_BRANCH:
93 fmt = "refs/remotes/%s";
94 remote = "remote ";
95 force = 1;
96 break;
97 case REF_LOCAL_BRANCH:
98 fmt = "refs/heads/%s";
99 remote = "";
100 break;
101 default:
102 die("cannot use -a with -d");
105 if (!force) {
106 head_rev = lookup_commit_reference(head_sha1);
107 if (!head_rev)
108 die("Couldn't look up commit object for HEAD");
110 for (i = 0; i < argc; i++) {
111 if (kinds == REF_LOCAL_BRANCH && !strcmp(head, argv[i])) {
112 error("Cannot delete the branch '%s' "
113 "which you are currently on.", argv[i]);
114 ret = 1;
115 continue;
118 if (name)
119 free(name);
121 name = xstrdup(mkpath(fmt, argv[i]));
122 if (!resolve_ref(name, sha1, 1, NULL)) {
123 error("%sbranch '%s' not found.",
124 remote, argv[i]);
125 ret = 1;
126 continue;
129 rev = lookup_commit_reference(sha1);
130 if (!rev) {
131 error("Couldn't look up commit object for '%s'", name);
132 ret = 1;
133 continue;
136 /* This checks whether the merge bases of branch and
137 * HEAD contains branch -- which means that the HEAD
138 * contains everything in both.
141 if (!force &&
142 !in_merge_bases(rev, &head_rev, 1)) {
143 error("The branch '%s' is not a strict subset of "
144 "your current HEAD.\n"
145 "If you are sure you want to delete it, "
146 "run 'git branch -D %s'.", argv[i], argv[i]);
147 ret = 1;
148 continue;
151 if (delete_ref(name, sha1)) {
152 error("Error deleting %sbranch '%s'", remote,
153 argv[i]);
154 ret = 1;
155 } else
156 printf("Deleted %sbranch %s.\n", remote, argv[i]);
160 if (name)
161 free(name);
163 return(ret);
166 struct ref_item {
167 char *name;
168 unsigned int kind;
169 unsigned char sha1[20];
172 struct ref_list {
173 int index, alloc, maxwidth;
174 struct ref_item *list;
175 int kinds;
178 static int append_ref(const char *refname, const unsigned char *sha1, int flags, void *cb_data)
180 struct ref_list *ref_list = (struct ref_list*)(cb_data);
181 struct ref_item *newitem;
182 int kind = REF_UNKNOWN_TYPE;
183 int len;
185 /* Detect kind */
186 if (!prefixcmp(refname, "refs/heads/")) {
187 kind = REF_LOCAL_BRANCH;
188 refname += 11;
189 } else if (!prefixcmp(refname, "refs/remotes/")) {
190 kind = REF_REMOTE_BRANCH;
191 refname += 13;
192 } else if (!prefixcmp(refname, "refs/tags/")) {
193 kind = REF_TAG;
194 refname += 10;
197 /* Don't add types the caller doesn't want */
198 if ((kind & ref_list->kinds) == 0)
199 return 0;
201 /* Resize buffer */
202 if (ref_list->index >= ref_list->alloc) {
203 ref_list->alloc = alloc_nr(ref_list->alloc);
204 ref_list->list = xrealloc(ref_list->list,
205 ref_list->alloc * sizeof(struct ref_item));
208 /* Record the new item */
209 newitem = &(ref_list->list[ref_list->index++]);
210 newitem->name = xstrdup(refname);
211 newitem->kind = kind;
212 hashcpy(newitem->sha1, sha1);
213 len = strlen(newitem->name);
214 if (len > ref_list->maxwidth)
215 ref_list->maxwidth = len;
217 return 0;
220 static void free_ref_list(struct ref_list *ref_list)
222 int i;
224 for (i = 0; i < ref_list->index; i++)
225 free(ref_list->list[i].name);
226 free(ref_list->list);
229 static int ref_cmp(const void *r1, const void *r2)
231 struct ref_item *c1 = (struct ref_item *)(r1);
232 struct ref_item *c2 = (struct ref_item *)(r2);
234 if (c1->kind != c2->kind)
235 return c1->kind - c2->kind;
236 return strcmp(c1->name, c2->name);
239 static void print_ref_item(struct ref_item *item, int maxwidth, int verbose,
240 int abbrev, int current)
242 char c;
243 int color;
244 struct commit *commit;
245 char subject[256];
247 switch (item->kind) {
248 case REF_LOCAL_BRANCH:
249 color = COLOR_BRANCH_LOCAL;
250 break;
251 case REF_REMOTE_BRANCH:
252 color = COLOR_BRANCH_REMOTE;
253 break;
254 default:
255 color = COLOR_BRANCH_PLAIN;
256 break;
259 c = ' ';
260 if (current) {
261 c = '*';
262 color = COLOR_BRANCH_CURRENT;
265 if (verbose) {
266 commit = lookup_commit(item->sha1);
267 if (commit && !parse_commit(commit))
268 pretty_print_commit(CMIT_FMT_ONELINE, commit, ~0,
269 subject, sizeof(subject), 0,
270 NULL, NULL, 0);
271 else
272 strcpy(subject, " **** invalid ref ****");
273 printf("%c %s%-*s%s %s %s\n", c, branch_get_color(color),
274 maxwidth, item->name,
275 branch_get_color(COLOR_BRANCH_RESET),
276 find_unique_abbrev(item->sha1, abbrev), subject);
277 } else {
278 printf("%c %s%s%s\n", c, branch_get_color(color), item->name,
279 branch_get_color(COLOR_BRANCH_RESET));
283 static void print_ref_list(int kinds, int detached, int verbose, int abbrev)
285 int i;
286 struct ref_list ref_list;
288 memset(&ref_list, 0, sizeof(ref_list));
289 ref_list.kinds = kinds;
290 for_each_ref(append_ref, &ref_list);
292 qsort(ref_list.list, ref_list.index, sizeof(struct ref_item), ref_cmp);
294 detached = (detached && (kinds & REF_LOCAL_BRANCH));
295 if (detached) {
296 struct ref_item item;
297 item.name = xstrdup("(no branch)");
298 item.kind = REF_LOCAL_BRANCH;
299 hashcpy(item.sha1, head_sha1);
300 if (strlen(item.name) > ref_list.maxwidth)
301 ref_list.maxwidth = strlen(item.name);
302 print_ref_item(&item, ref_list.maxwidth, verbose, abbrev, 1);
303 free(item.name);
306 for (i = 0; i < ref_list.index; i++) {
307 int current = !detached &&
308 (ref_list.list[i].kind == REF_LOCAL_BRANCH) &&
309 !strcmp(ref_list.list[i].name, head);
310 print_ref_item(&ref_list.list[i], ref_list.maxwidth, verbose,
311 abbrev, current);
314 free_ref_list(&ref_list);
317 static char *config_repo;
318 static char *config_remote;
319 static const char *start_ref;
320 static int start_len;
321 static int base_len;
323 static int get_remote_branch_name(const char *value)
325 const char *colon;
326 const char *end;
328 if (*value == '+')
329 value++;
331 colon = strchr(value, ':');
332 if (!colon)
333 return 0;
335 end = value + strlen(value);
337 /* Try an exact match first. */
338 if (!strcmp(colon + 1, start_ref)) {
339 /* Truncate the value before the colon. */
340 nfasprintf(&config_repo, "%.*s", colon - value, value);
341 return 1;
344 /* Try with a wildcard match now. */
345 if (end - value > 2 && end[-2] == '/' && end[-1] == '*' &&
346 colon - value > 2 && colon[-2] == '/' && colon[-1] == '*' &&
347 (end - 2) - (colon + 1) == base_len &&
348 !strncmp(colon + 1, start_ref, base_len)) {
349 /* Replace the star with the remote branch name. */
350 nfasprintf(&config_repo, "%.*s%s",
351 (colon - 2) - value, value,
352 start_ref + base_len);
353 return 1;
356 return 0;
359 static int get_remote_config(const char *key, const char *value)
361 const char *var;
362 if (prefixcmp(key, "remote."))
363 return 0;
365 var = strrchr(key, '.');
366 if (var == key + 6)
367 return 0;
369 if (!strcmp(var, ".fetch") && get_remote_branch_name(value))
370 nfasprintf(&config_remote, "%.*s", var - (key + 7), key + 7);
372 return 0;
375 static void set_branch_defaults(const char *name, const char *real_ref)
377 char key[1024];
378 const char *slash = strrchr(real_ref, '/');
380 if (!slash)
381 return;
383 start_ref = real_ref;
384 start_len = strlen(real_ref);
385 base_len = slash - real_ref;
386 git_config(get_remote_config);
388 if (config_repo && config_remote) {
389 if (sizeof(key) <=
390 snprintf(key, sizeof(key), "branch.%s.remote", name))
391 die("what a long branch name you have!");
392 git_config_set(key, config_remote);
395 * We do not have to check if we have enough space for
396 * the 'merge' key, since it's shorter than the
397 * previous 'remote' key, which we already checked.
399 snprintf(key, sizeof(key), "branch.%s.merge", name);
400 git_config_set(key, config_repo);
402 printf("Branch %s set up to track remote branch %s.\n",
403 name, real_ref);
406 if (config_repo)
407 free(config_repo);
408 if (config_remote)
409 free(config_remote);
412 static void create_branch(const char *name, const char *start_name,
413 unsigned char *start_sha1,
414 int force, int reflog, int track)
416 struct ref_lock *lock;
417 struct commit *commit;
418 unsigned char sha1[20];
419 char *real_ref, ref[PATH_MAX], msg[PATH_MAX + 20];
420 int forcing = 0;
422 snprintf(ref, sizeof ref, "refs/heads/%s", name);
423 if (check_ref_format(ref))
424 die("'%s' is not a valid branch name.", name);
426 if (resolve_ref(ref, sha1, 1, NULL)) {
427 if (!force)
428 die("A branch named '%s' already exists.", name);
429 else if (!is_bare_repository() && !strcmp(head, name))
430 die("Cannot force update the current branch.");
431 forcing = 1;
434 if (start_sha1) {
435 /* detached HEAD */
436 hashcpy(sha1, start_sha1);
437 real_ref = NULL;
439 else if (dwim_ref(start_name, strlen(start_name), sha1, &real_ref) > 1)
440 die("Ambiguous object name: '%s'.", start_name);
441 else if (real_ref == NULL)
442 die("Not a valid object name: '%s'.", start_name);
444 if ((commit = lookup_commit_reference(sha1)) == NULL)
445 die("Not a valid branch point: '%s'.", start_name);
446 hashcpy(sha1, commit->object.sha1);
448 lock = lock_any_ref_for_update(ref, NULL);
449 if (!lock)
450 die("Failed to lock ref for update: %s.", strerror(errno));
452 if (reflog)
453 log_all_ref_updates = 1;
455 if (forcing)
456 snprintf(msg, sizeof msg, "branch: Reset from %s",
457 start_name);
458 else
459 snprintf(msg, sizeof msg, "branch: Created from %s",
460 start_name);
462 /* When branching off a remote branch, set up so that git-pull
463 automatically merges from there. So far, this is only done for
464 remotes registered via .git/config. */
465 if (real_ref && track)
466 set_branch_defaults(name, real_ref);
468 if (write_ref_sha1(lock, sha1, msg) < 0)
469 die("Failed to write ref: %s.", strerror(errno));
471 if (real_ref)
472 free(real_ref);
475 static void rename_branch(const char *oldname, const char *newname, int force)
477 char oldref[PATH_MAX], newref[PATH_MAX], logmsg[PATH_MAX*2 + 100];
478 unsigned char sha1[20];
480 if (!oldname)
481 die("cannot rename the current branch while not on any.");
483 if (snprintf(oldref, sizeof(oldref), "refs/heads/%s", oldname) > sizeof(oldref))
484 die("Old branchname too long");
486 if (check_ref_format(oldref))
487 die("Invalid branch name: %s", oldref);
489 if (snprintf(newref, sizeof(newref), "refs/heads/%s", newname) > sizeof(newref))
490 die("New branchname too long");
492 if (check_ref_format(newref))
493 die("Invalid branch name: %s", newref);
495 if (resolve_ref(newref, sha1, 1, NULL) && !force)
496 die("A branch named '%s' already exists.", newname);
498 snprintf(logmsg, sizeof(logmsg), "Branch: renamed %s to %s",
499 oldref, newref);
501 if (rename_ref(oldref, newref, logmsg))
502 die("Branch rename failed");
504 /* no need to pass logmsg here as HEAD didn't really move */
505 if (!strcmp(oldname, head) && create_symref("HEAD", newref, NULL))
506 die("Branch renamed to %s, but HEAD is not updated!", newname);
509 int cmd_branch(int argc, const char **argv, const char *prefix)
511 int delete = 0, force_delete = 0, force_create = 0;
512 int rename = 0, force_rename = 0;
513 int verbose = 0, abbrev = DEFAULT_ABBREV, detached = 0;
514 int reflog = 0, track;
515 int kinds = REF_LOCAL_BRANCH;
516 int i;
518 git_config(git_branch_config);
519 track = branch_track_remotes;
521 for (i = 1; i < argc; i++) {
522 const char *arg = argv[i];
524 if (arg[0] != '-')
525 break;
526 if (!strcmp(arg, "--")) {
527 i++;
528 break;
530 if (!strcmp(arg, "--track")) {
531 track = 1;
532 continue;
534 if (!strcmp(arg, "--no-track")) {
535 track = 0;
536 continue;
538 if (!strcmp(arg, "-d")) {
539 delete = 1;
540 continue;
542 if (!strcmp(arg, "-D")) {
543 delete = 1;
544 force_delete = 1;
545 continue;
547 if (!strcmp(arg, "-f")) {
548 force_create = 1;
549 continue;
551 if (!strcmp(arg, "-m")) {
552 rename = 1;
553 continue;
555 if (!strcmp(arg, "-M")) {
556 rename = 1;
557 force_rename = 1;
558 continue;
560 if (!strcmp(arg, "-r")) {
561 kinds = REF_REMOTE_BRANCH;
562 continue;
564 if (!strcmp(arg, "-a")) {
565 kinds = REF_REMOTE_BRANCH | REF_LOCAL_BRANCH;
566 continue;
568 if (!strcmp(arg, "-l")) {
569 reflog = 1;
570 continue;
572 if (!prefixcmp(arg, "--no-abbrev")) {
573 abbrev = 0;
574 continue;
576 if (!prefixcmp(arg, "--abbrev=")) {
577 abbrev = strtoul(arg + 9, NULL, 10);
578 if (abbrev < MINIMUM_ABBREV)
579 abbrev = MINIMUM_ABBREV;
580 else if (abbrev > 40)
581 abbrev = 40;
582 continue;
584 if (!strcmp(arg, "-v")) {
585 verbose = 1;
586 continue;
588 if (!strcmp(arg, "--color")) {
589 branch_use_color = 1;
590 continue;
592 if (!strcmp(arg, "--no-color")) {
593 branch_use_color = 0;
594 continue;
596 usage(builtin_branch_usage);
599 if ((delete && rename) || (delete && force_create) ||
600 (rename && force_create))
601 usage(builtin_branch_usage);
603 head = xstrdup(resolve_ref("HEAD", head_sha1, 0, NULL));
604 if (!head)
605 die("Failed to resolve HEAD as a valid ref.");
606 if (!strcmp(head, "HEAD")) {
607 detached = 1;
609 else {
610 if (prefixcmp(head, "refs/heads/"))
611 die("HEAD not found below refs/heads!");
612 head += 11;
615 if (delete)
616 return delete_branches(argc - i, argv + i, force_delete, kinds);
617 else if (i == argc)
618 print_ref_list(kinds, detached, verbose, abbrev);
619 else if (rename && (i == argc - 1))
620 rename_branch(head, argv[i], force_rename);
621 else if (rename && (i == argc - 2))
622 rename_branch(argv[i], argv[i + 1], force_rename);
623 else if (i == argc - 1)
624 create_branch(argv[i], head, head_sha1, force_create, reflog,
625 track);
626 else if (i == argc - 2)
627 create_branch(argv[i], argv[i+1], NULL, force_create, reflog,
628 track);
629 else
630 usage(builtin_branch_usage);
632 return 0;