Merge branch 'bw/trace-no-inline-getnanotime'
[git] / builtin / branch.c
1 /*
2  * Builtin "git branch"
3  *
4  * Copyright (c) 2006 Kristian Høgsberg <krh@redhat.com>
5  * Based on git-branch.sh by Junio C Hamano.
6  */
7
8 #include "cache.h"
9 #include "color.h"
10 #include "refs.h"
11 #include "commit.h"
12 #include "builtin.h"
13 #include "remote.h"
14 #include "parse-options.h"
15 #include "branch.h"
16 #include "diff.h"
17 #include "revision.h"
18 #include "string-list.h"
19 #include "column.h"
20 #include "utf8.h"
21 #include "wt-status.h"
22
23 static const char * const builtin_branch_usage[] = {
24         N_("git branch [options] [-r | -a] [--merged | --no-merged]"),
25         N_("git branch [options] [-l] [-f] <branchname> [<start-point>]"),
26         N_("git branch [options] [-r] (-d | -D) <branchname>..."),
27         N_("git branch [options] (-m | -M) [<oldbranch>] <newbranch>"),
28         NULL
29 };
30
31 #define REF_LOCAL_BRANCH    0x01
32 #define REF_REMOTE_BRANCH   0x02
33
34 static const char *head;
35 static unsigned char head_sha1[20];
36
37 static int branch_use_color = -1;
38 static char branch_colors[][COLOR_MAXLEN] = {
39         GIT_COLOR_RESET,
40         GIT_COLOR_NORMAL,       /* PLAIN */
41         GIT_COLOR_RED,          /* REMOTE */
42         GIT_COLOR_NORMAL,       /* LOCAL */
43         GIT_COLOR_GREEN,        /* CURRENT */
44         GIT_COLOR_BLUE,         /* UPSTREAM */
45 };
46 enum color_branch {
47         BRANCH_COLOR_RESET = 0,
48         BRANCH_COLOR_PLAIN = 1,
49         BRANCH_COLOR_REMOTE = 2,
50         BRANCH_COLOR_LOCAL = 3,
51         BRANCH_COLOR_CURRENT = 4,
52         BRANCH_COLOR_UPSTREAM = 5
53 };
54
55 static enum merge_filter {
56         NO_FILTER = 0,
57         SHOW_NOT_MERGED,
58         SHOW_MERGED
59 } merge_filter;
60 static unsigned char merge_filter_ref[20];
61
62 static struct string_list output = STRING_LIST_INIT_DUP;
63 static unsigned int colopts;
64
65 static int parse_branch_color_slot(const char *var, int ofs)
66 {
67         if (!strcasecmp(var+ofs, "plain"))
68                 return BRANCH_COLOR_PLAIN;
69         if (!strcasecmp(var+ofs, "reset"))
70                 return BRANCH_COLOR_RESET;
71         if (!strcasecmp(var+ofs, "remote"))
72                 return BRANCH_COLOR_REMOTE;
73         if (!strcasecmp(var+ofs, "local"))
74                 return BRANCH_COLOR_LOCAL;
75         if (!strcasecmp(var+ofs, "current"))
76                 return BRANCH_COLOR_CURRENT;
77         if (!strcasecmp(var+ofs, "upstream"))
78                 return BRANCH_COLOR_UPSTREAM;
79         return -1;
80 }
81
82 static int git_branch_config(const char *var, const char *value, void *cb)
83 {
84         const char *slot_name;
85
86         if (starts_with(var, "column."))
87                 return git_column_config(var, value, "branch", &colopts);
88         if (!strcmp(var, "color.branch")) {
89                 branch_use_color = git_config_colorbool(var, value);
90                 return 0;
91         }
92         if (skip_prefix(var, "color.branch.", &slot_name)) {
93                 int slot = parse_branch_color_slot(var, slot_name - var);
94                 if (slot < 0)
95                         return 0;
96                 if (!value)
97                         return config_error_nonbool(var);
98                 color_parse(value, var, branch_colors[slot]);
99                 return 0;
100         }
101         return git_color_default_config(var, value, cb);
102 }
103
104 static const char *branch_get_color(enum color_branch ix)
105 {
106         if (want_color(branch_use_color))
107                 return branch_colors[ix];
108         return "";
109 }
110
111 static int branch_merged(int kind, const char *name,
112                          struct commit *rev, struct commit *head_rev)
113 {
114         /*
115          * This checks whether the merge bases of branch and HEAD (or
116          * the other branch this branch builds upon) contains the
117          * branch, which means that the branch has already been merged
118          * safely to HEAD (or the other branch).
119          */
120         struct commit *reference_rev = NULL;
121         const char *reference_name = NULL;
122         void *reference_name_to_free = NULL;
123         int merged;
124
125         if (kind == REF_LOCAL_BRANCH) {
126                 struct branch *branch = branch_get(name);
127                 unsigned char sha1[20];
128
129                 if (branch &&
130                     branch->merge &&
131                     branch->merge[0] &&
132                     branch->merge[0]->dst &&
133                     (reference_name = reference_name_to_free =
134                      resolve_refdup(branch->merge[0]->dst, sha1, 1, NULL)) != NULL)
135                         reference_rev = lookup_commit_reference(sha1);
136         }
137         if (!reference_rev)
138                 reference_rev = head_rev;
139
140         merged = in_merge_bases(rev, reference_rev);
141
142         /*
143          * After the safety valve is fully redefined to "check with
144          * upstream, if any, otherwise with HEAD", we should just
145          * return the result of the in_merge_bases() above without
146          * any of the following code, but during the transition period,
147          * a gentle reminder is in order.
148          */
149         if ((head_rev != reference_rev) &&
150             in_merge_bases(rev, head_rev) != merged) {
151                 if (merged)
152                         warning(_("deleting branch '%s' that has been merged to\n"
153                                 "         '%s', but not yet merged to HEAD."),
154                                 name, reference_name);
155                 else
156                         warning(_("not deleting branch '%s' that is not yet merged to\n"
157                                 "         '%s', even though it is merged to HEAD."),
158                                 name, reference_name);
159         }
160         free(reference_name_to_free);
161         return merged;
162 }
163
164 static int check_branch_commit(const char *branchname, const char *refname,
165                                unsigned char *sha1, struct commit *head_rev,
166                                int kinds, int force)
167 {
168         struct commit *rev = lookup_commit_reference(sha1);
169         if (!rev) {
170                 error(_("Couldn't look up commit object for '%s'"), refname);
171                 return -1;
172         }
173         if (!force && !branch_merged(kinds, branchname, rev, head_rev)) {
174                 error(_("The branch '%s' is not fully merged.\n"
175                       "If you are sure you want to delete it, "
176                       "run 'git branch -D %s'."), branchname, branchname);
177                 return -1;
178         }
179         return 0;
180 }
181
182 static void delete_branch_config(const char *branchname)
183 {
184         struct strbuf buf = STRBUF_INIT;
185         strbuf_addf(&buf, "branch.%s", branchname);
186         if (git_config_rename_section(buf.buf, NULL) < 0)
187                 warning(_("Update of config-file failed"));
188         strbuf_release(&buf);
189 }
190
191 static int delete_branches(int argc, const char **argv, int force, int kinds,
192                            int quiet)
193 {
194         struct commit *head_rev = NULL;
195         unsigned char sha1[20];
196         char *name = NULL;
197         const char *fmt;
198         int i;
199         int ret = 0;
200         int remote_branch = 0;
201         struct strbuf bname = STRBUF_INIT;
202
203         switch (kinds) {
204         case REF_REMOTE_BRANCH:
205                 fmt = "refs/remotes/%s";
206                 /* For subsequent UI messages */
207                 remote_branch = 1;
208
209                 force = 1;
210                 break;
211         case REF_LOCAL_BRANCH:
212                 fmt = "refs/heads/%s";
213                 break;
214         default:
215                 die(_("cannot use -a with -d"));
216         }
217
218         if (!force) {
219                 head_rev = lookup_commit_reference(head_sha1);
220                 if (!head_rev)
221                         die(_("Couldn't look up commit object for HEAD"));
222         }
223         for (i = 0; i < argc; i++, strbuf_release(&bname)) {
224                 const char *target;
225                 int flags = 0;
226
227                 strbuf_branchname(&bname, argv[i]);
228                 if (kinds == REF_LOCAL_BRANCH && !strcmp(head, bname.buf)) {
229                         error(_("Cannot delete the branch '%s' "
230                               "which you are currently on."), bname.buf);
231                         ret = 1;
232                         continue;
233                 }
234
235                 free(name);
236
237                 name = mkpathdup(fmt, bname.buf);
238                 target = resolve_ref_unsafe(name, sha1, 0, &flags);
239                 if (!target ||
240                     (!(flags & REF_ISSYMREF) && is_null_sha1(sha1))) {
241                         error(remote_branch
242                               ? _("remote branch '%s' not found.")
243                               : _("branch '%s' not found."), bname.buf);
244                         ret = 1;
245                         continue;
246                 }
247
248                 if (!(flags & REF_ISSYMREF) &&
249                     check_branch_commit(bname.buf, name, sha1, head_rev, kinds,
250                                         force)) {
251                         ret = 1;
252                         continue;
253                 }
254
255                 if (delete_ref(name, sha1, REF_NODEREF)) {
256                         error(remote_branch
257                               ? _("Error deleting remote branch '%s'")
258                               : _("Error deleting branch '%s'"),
259                               bname.buf);
260                         ret = 1;
261                         continue;
262                 }
263                 if (!quiet) {
264                         printf(remote_branch
265                                ? _("Deleted remote branch %s (was %s).\n")
266                                : _("Deleted branch %s (was %s).\n"),
267                                bname.buf,
268                                (flags & REF_ISSYMREF)
269                                ? target
270                                : find_unique_abbrev(sha1, DEFAULT_ABBREV));
271                 }
272                 delete_branch_config(bname.buf);
273         }
274
275         free(name);
276
277         return(ret);
278 }
279
280 struct ref_item {
281         char *name;
282         char *dest;
283         unsigned int kind, width;
284         struct commit *commit;
285         int ignore;
286 };
287
288 struct ref_list {
289         struct rev_info revs;
290         int index, alloc, maxwidth, verbose, abbrev;
291         struct ref_item *list;
292         struct commit_list *with_commit;
293         int kinds;
294 };
295
296 static char *resolve_symref(const char *src, const char *prefix)
297 {
298         unsigned char sha1[20];
299         int flag;
300         const char *dst;
301
302         dst = resolve_ref_unsafe(src, sha1, 0, &flag);
303         if (!(dst && (flag & REF_ISSYMREF)))
304                 return NULL;
305         if (prefix)
306                 skip_prefix(dst, prefix, &dst);
307         return xstrdup(dst);
308 }
309
310 struct append_ref_cb {
311         struct ref_list *ref_list;
312         const char **pattern;
313         int ret;
314 };
315
316 static int match_patterns(const char **pattern, const char *refname)
317 {
318         if (!*pattern)
319                 return 1; /* no pattern always matches */
320         while (*pattern) {
321                 if (!wildmatch(*pattern, refname, 0, NULL))
322                         return 1;
323                 pattern++;
324         }
325         return 0;
326 }
327
328 static int append_ref(const char *refname, const unsigned char *sha1, int flags, void *cb_data)
329 {
330         struct append_ref_cb *cb = (struct append_ref_cb *)(cb_data);
331         struct ref_list *ref_list = cb->ref_list;
332         struct ref_item *newitem;
333         struct commit *commit;
334         int kind, i;
335         const char *prefix, *orig_refname = refname;
336
337         static struct {
338                 int kind;
339                 const char *prefix;
340         } ref_kind[] = {
341                 { REF_LOCAL_BRANCH, "refs/heads/" },
342                 { REF_REMOTE_BRANCH, "refs/remotes/" },
343         };
344
345         /* Detect kind */
346         for (i = 0; i < ARRAY_SIZE(ref_kind); i++) {
347                 prefix = ref_kind[i].prefix;
348                 if (skip_prefix(refname, prefix, &refname)) {
349                         kind = ref_kind[i].kind;
350                         break;
351                 }
352         }
353         if (ARRAY_SIZE(ref_kind) <= i)
354                 return 0;
355
356         /* Don't add types the caller doesn't want */
357         if ((kind & ref_list->kinds) == 0)
358                 return 0;
359
360         if (!match_patterns(cb->pattern, refname))
361                 return 0;
362
363         commit = NULL;
364         if (ref_list->verbose || ref_list->with_commit || merge_filter != NO_FILTER) {
365                 commit = lookup_commit_reference_gently(sha1, 1);
366                 if (!commit) {
367                         cb->ret = error(_("branch '%s' does not point at a commit"), refname);
368                         return 0;
369                 }
370
371                 /* Filter with with_commit if specified */
372                 if (!is_descendant_of(commit, ref_list->with_commit))
373                         return 0;
374
375                 if (merge_filter != NO_FILTER)
376                         add_pending_object(&ref_list->revs,
377                                            (struct object *)commit, refname);
378         }
379
380         ALLOC_GROW(ref_list->list, ref_list->index + 1, ref_list->alloc);
381
382         /* Record the new item */
383         newitem = &(ref_list->list[ref_list->index++]);
384         newitem->name = xstrdup(refname);
385         newitem->kind = kind;
386         newitem->commit = commit;
387         newitem->width = utf8_strwidth(refname);
388         newitem->dest = resolve_symref(orig_refname, prefix);
389         newitem->ignore = 0;
390         /* adjust for "remotes/" */
391         if (newitem->kind == REF_REMOTE_BRANCH &&
392             ref_list->kinds != REF_REMOTE_BRANCH)
393                 newitem->width += 8;
394         if (newitem->width > ref_list->maxwidth)
395                 ref_list->maxwidth = newitem->width;
396
397         return 0;
398 }
399
400 static void free_ref_list(struct ref_list *ref_list)
401 {
402         int i;
403
404         for (i = 0; i < ref_list->index; i++) {
405                 free(ref_list->list[i].name);
406                 free(ref_list->list[i].dest);
407         }
408         free(ref_list->list);
409 }
410
411 static int ref_cmp(const void *r1, const void *r2)
412 {
413         struct ref_item *c1 = (struct ref_item *)(r1);
414         struct ref_item *c2 = (struct ref_item *)(r2);
415
416         if (c1->kind != c2->kind)
417                 return c1->kind - c2->kind;
418         return strcmp(c1->name, c2->name);
419 }
420
421 static void fill_tracking_info(struct strbuf *stat, const char *branch_name,
422                 int show_upstream_ref)
423 {
424         int ours, theirs;
425         char *ref = NULL;
426         struct branch *branch = branch_get(branch_name);
427         struct strbuf fancy = STRBUF_INIT;
428         int upstream_is_gone = 0;
429         int added_decoration = 1;
430
431         switch (stat_tracking_info(branch, &ours, &theirs)) {
432         case 0:
433                 /* no base */
434                 return;
435         case -1:
436                 /* with "gone" base */
437                 upstream_is_gone = 1;
438                 break;
439         default:
440                 /* with base */
441                 break;
442         }
443
444         if (show_upstream_ref) {
445                 ref = shorten_unambiguous_ref(branch->merge[0]->dst, 0);
446                 if (want_color(branch_use_color))
447                         strbuf_addf(&fancy, "%s%s%s",
448                                         branch_get_color(BRANCH_COLOR_UPSTREAM),
449                                         ref, branch_get_color(BRANCH_COLOR_RESET));
450                 else
451                         strbuf_addstr(&fancy, ref);
452         }
453
454         if (upstream_is_gone) {
455                 if (show_upstream_ref)
456                         strbuf_addf(stat, _("[%s: gone]"), fancy.buf);
457                 else
458                         added_decoration = 0;
459         } else if (!ours && !theirs) {
460                 if (show_upstream_ref)
461                         strbuf_addf(stat, _("[%s]"), fancy.buf);
462                 else
463                         added_decoration = 0;
464         } else if (!ours) {
465                 if (show_upstream_ref)
466                         strbuf_addf(stat, _("[%s: behind %d]"), fancy.buf, theirs);
467                 else
468                         strbuf_addf(stat, _("[behind %d]"), theirs);
469
470         } else if (!theirs) {
471                 if (show_upstream_ref)
472                         strbuf_addf(stat, _("[%s: ahead %d]"), fancy.buf, ours);
473                 else
474                         strbuf_addf(stat, _("[ahead %d]"), ours);
475         } else {
476                 if (show_upstream_ref)
477                         strbuf_addf(stat, _("[%s: ahead %d, behind %d]"),
478                                     fancy.buf, ours, theirs);
479                 else
480                         strbuf_addf(stat, _("[ahead %d, behind %d]"),
481                                     ours, theirs);
482         }
483         strbuf_release(&fancy);
484         if (added_decoration)
485                 strbuf_addch(stat, ' ');
486         free(ref);
487 }
488
489 static void add_verbose_info(struct strbuf *out, struct ref_item *item,
490                              int verbose, int abbrev)
491 {
492         struct strbuf subject = STRBUF_INIT, stat = STRBUF_INIT;
493         const char *sub = _(" **** invalid ref ****");
494         struct commit *commit = item->commit;
495
496         if (!parse_commit(commit)) {
497                 pp_commit_easy(CMIT_FMT_ONELINE, commit, &subject);
498                 sub = subject.buf;
499         }
500
501         if (item->kind == REF_LOCAL_BRANCH)
502                 fill_tracking_info(&stat, item->name, verbose > 1);
503
504         strbuf_addf(out, " %s %s%s",
505                 find_unique_abbrev(item->commit->object.sha1, abbrev),
506                 stat.buf, sub);
507         strbuf_release(&stat);
508         strbuf_release(&subject);
509 }
510
511 static void print_ref_item(struct ref_item *item, int maxwidth, int verbose,
512                            int abbrev, int current, char *prefix)
513 {
514         char c;
515         int color;
516         struct strbuf out = STRBUF_INIT, name = STRBUF_INIT;
517
518         if (item->ignore)
519                 return;
520
521         switch (item->kind) {
522         case REF_LOCAL_BRANCH:
523                 color = BRANCH_COLOR_LOCAL;
524                 break;
525         case REF_REMOTE_BRANCH:
526                 color = BRANCH_COLOR_REMOTE;
527                 break;
528         default:
529                 color = BRANCH_COLOR_PLAIN;
530                 break;
531         }
532
533         c = ' ';
534         if (current) {
535                 c = '*';
536                 color = BRANCH_COLOR_CURRENT;
537         }
538
539         strbuf_addf(&name, "%s%s", prefix, item->name);
540         if (verbose) {
541                 int utf8_compensation = strlen(name.buf) - utf8_strwidth(name.buf);
542                 strbuf_addf(&out, "%c %s%-*s%s", c, branch_get_color(color),
543                             maxwidth + utf8_compensation, name.buf,
544                             branch_get_color(BRANCH_COLOR_RESET));
545         } else
546                 strbuf_addf(&out, "%c %s%s%s", c, branch_get_color(color),
547                             name.buf, branch_get_color(BRANCH_COLOR_RESET));
548
549         if (item->dest)
550                 strbuf_addf(&out, " -> %s", item->dest);
551         else if (verbose)
552                 /* " f7c0c00 [ahead 58, behind 197] vcs-svn: drop obj_pool.h" */
553                 add_verbose_info(&out, item, verbose, abbrev);
554         if (column_active(colopts)) {
555                 assert(!verbose && "--column and --verbose are incompatible");
556                 string_list_append(&output, out.buf);
557         } else {
558                 printf("%s\n", out.buf);
559         }
560         strbuf_release(&name);
561         strbuf_release(&out);
562 }
563
564 static int calc_maxwidth(struct ref_list *refs)
565 {
566         int i, w = 0;
567         for (i = 0; i < refs->index; i++) {
568                 if (refs->list[i].ignore)
569                         continue;
570                 if (refs->list[i].width > w)
571                         w = refs->list[i].width;
572         }
573         return w;
574 }
575
576 static char *get_head_description(void)
577 {
578         struct strbuf desc = STRBUF_INIT;
579         struct wt_status_state state;
580         memset(&state, 0, sizeof(state));
581         wt_status_get_state(&state, 1);
582         if (state.rebase_in_progress ||
583             state.rebase_interactive_in_progress)
584                 strbuf_addf(&desc, _("(no branch, rebasing %s)"),
585                             state.branch);
586         else if (state.bisect_in_progress)
587                 strbuf_addf(&desc, _("(no branch, bisect started on %s)"),
588                             state.branch);
589         else if (state.detached_from)
590                 strbuf_addf(&desc, _("(detached from %s)"),
591                             state.detached_from);
592         else
593                 strbuf_addstr(&desc, _("(no branch)"));
594         free(state.branch);
595         free(state.onto);
596         free(state.detached_from);
597         return strbuf_detach(&desc, NULL);
598 }
599
600 static void show_detached(struct ref_list *ref_list)
601 {
602         struct commit *head_commit = lookup_commit_reference_gently(head_sha1, 1);
603
604         if (head_commit && is_descendant_of(head_commit, ref_list->with_commit)) {
605                 struct ref_item item;
606                 item.name = get_head_description();
607                 item.width = utf8_strwidth(item.name);
608                 item.kind = REF_LOCAL_BRANCH;
609                 item.dest = NULL;
610                 item.commit = head_commit;
611                 item.ignore = 0;
612                 if (item.width > ref_list->maxwidth)
613                         ref_list->maxwidth = item.width;
614                 print_ref_item(&item, ref_list->maxwidth, ref_list->verbose, ref_list->abbrev, 1, "");
615                 free(item.name);
616         }
617 }
618
619 static int print_ref_list(int kinds, int detached, int verbose, int abbrev, struct commit_list *with_commit, const char **pattern)
620 {
621         int i;
622         struct append_ref_cb cb;
623         struct ref_list ref_list;
624
625         memset(&ref_list, 0, sizeof(ref_list));
626         ref_list.kinds = kinds;
627         ref_list.verbose = verbose;
628         ref_list.abbrev = abbrev;
629         ref_list.with_commit = with_commit;
630         if (merge_filter != NO_FILTER)
631                 init_revisions(&ref_list.revs, NULL);
632         cb.ref_list = &ref_list;
633         cb.pattern = pattern;
634         cb.ret = 0;
635         for_each_rawref(append_ref, &cb);
636         if (merge_filter != NO_FILTER) {
637                 struct commit *filter;
638                 filter = lookup_commit_reference_gently(merge_filter_ref, 0);
639                 if (!filter)
640                         die(_("object '%s' does not point to a commit"),
641                             sha1_to_hex(merge_filter_ref));
642
643                 filter->object.flags |= UNINTERESTING;
644                 add_pending_object(&ref_list.revs,
645                                    (struct object *) filter, "");
646                 ref_list.revs.limited = 1;
647
648                 if (prepare_revision_walk(&ref_list.revs))
649                         die(_("revision walk setup failed"));
650
651                 for (i = 0; i < ref_list.index; i++) {
652                         struct ref_item *item = &ref_list.list[i];
653                         struct commit *commit = item->commit;
654                         int is_merged = !!(commit->object.flags & UNINTERESTING);
655                         item->ignore = is_merged != (merge_filter == SHOW_MERGED);
656                 }
657
658                 for (i = 0; i < ref_list.index; i++) {
659                         struct ref_item *item = &ref_list.list[i];
660                         clear_commit_marks(item->commit, ALL_REV_FLAGS);
661                 }
662                 clear_commit_marks(filter, ALL_REV_FLAGS);
663
664                 if (verbose)
665                         ref_list.maxwidth = calc_maxwidth(&ref_list);
666         }
667
668         qsort(ref_list.list, ref_list.index, sizeof(struct ref_item), ref_cmp);
669
670         detached = (detached && (kinds & REF_LOCAL_BRANCH));
671         if (detached && match_patterns(pattern, "HEAD"))
672                 show_detached(&ref_list);
673
674         for (i = 0; i < ref_list.index; i++) {
675                 int current = !detached &&
676                         (ref_list.list[i].kind == REF_LOCAL_BRANCH) &&
677                         !strcmp(ref_list.list[i].name, head);
678                 char *prefix = (kinds != REF_REMOTE_BRANCH &&
679                                 ref_list.list[i].kind == REF_REMOTE_BRANCH)
680                                 ? "remotes/" : "";
681                 print_ref_item(&ref_list.list[i], ref_list.maxwidth, verbose,
682                                abbrev, current, prefix);
683         }
684
685         free_ref_list(&ref_list);
686
687         if (cb.ret)
688                 error(_("some refs could not be read"));
689
690         return cb.ret;
691 }
692
693 static void rename_branch(const char *oldname, const char *newname, int force)
694 {
695         struct strbuf oldref = STRBUF_INIT, newref = STRBUF_INIT, logmsg = STRBUF_INIT;
696         struct strbuf oldsection = STRBUF_INIT, newsection = STRBUF_INIT;
697         int recovery = 0;
698         int clobber_head_ok;
699
700         if (!oldname)
701                 die(_("cannot rename the current branch while not on any."));
702
703         if (strbuf_check_branch_ref(&oldref, oldname)) {
704                 /*
705                  * Bad name --- this could be an attempt to rename a
706                  * ref that we used to allow to be created by accident.
707                  */
708                 if (ref_exists(oldref.buf))
709                         recovery = 1;
710                 else
711                         die(_("Invalid branch name: '%s'"), oldname);
712         }
713
714         /*
715          * A command like "git branch -M currentbranch currentbranch" cannot
716          * cause the worktree to become inconsistent with HEAD, so allow it.
717          */
718         clobber_head_ok = !strcmp(oldname, newname);
719
720         validate_new_branchname(newname, &newref, force, clobber_head_ok);
721
722         strbuf_addf(&logmsg, "Branch: renamed %s to %s",
723                  oldref.buf, newref.buf);
724
725         if (rename_ref(oldref.buf, newref.buf, logmsg.buf))
726                 die(_("Branch rename failed"));
727         strbuf_release(&logmsg);
728
729         if (recovery)
730                 warning(_("Renamed a misnamed branch '%s' away"), oldref.buf + 11);
731
732         /* no need to pass logmsg here as HEAD didn't really move */
733         if (!strcmp(oldname, head) && create_symref("HEAD", newref.buf, NULL))
734                 die(_("Branch renamed to %s, but HEAD is not updated!"), newname);
735
736         strbuf_addf(&oldsection, "branch.%s", oldref.buf + 11);
737         strbuf_release(&oldref);
738         strbuf_addf(&newsection, "branch.%s", newref.buf + 11);
739         strbuf_release(&newref);
740         if (git_config_rename_section(oldsection.buf, newsection.buf) < 0)
741                 die(_("Branch is renamed, but update of config-file failed"));
742         strbuf_release(&oldsection);
743         strbuf_release(&newsection);
744 }
745
746 static int opt_parse_merge_filter(const struct option *opt, const char *arg, int unset)
747 {
748         merge_filter = ((opt->long_name[0] == 'n')
749                         ? SHOW_NOT_MERGED
750                         : SHOW_MERGED);
751         if (unset)
752                 merge_filter = SHOW_NOT_MERGED; /* b/c for --no-merged */
753         if (!arg)
754                 arg = "HEAD";
755         if (get_sha1(arg, merge_filter_ref))
756                 die(_("malformed object name %s"), arg);
757         return 0;
758 }
759
760 static const char edit_description[] = "BRANCH_DESCRIPTION";
761
762 static int edit_branch_description(const char *branch_name)
763 {
764         FILE *fp;
765         int status;
766         struct strbuf buf = STRBUF_INIT;
767         struct strbuf name = STRBUF_INIT;
768
769         read_branch_desc(&buf, branch_name);
770         if (!buf.len || buf.buf[buf.len-1] != '\n')
771                 strbuf_addch(&buf, '\n');
772         strbuf_commented_addf(&buf,
773                     "Please edit the description for the branch\n"
774                     "  %s\n"
775                     "Lines starting with '%c' will be stripped.\n",
776                     branch_name, comment_line_char);
777         fp = fopen(git_path(edit_description), "w");
778         if ((fwrite(buf.buf, 1, buf.len, fp) < buf.len) || fclose(fp)) {
779                 strbuf_release(&buf);
780                 return error(_("could not write branch description template: %s"),
781                              strerror(errno));
782         }
783         strbuf_reset(&buf);
784         if (launch_editor(git_path(edit_description), &buf, NULL)) {
785                 strbuf_release(&buf);
786                 return -1;
787         }
788         stripspace(&buf, 1);
789
790         strbuf_addf(&name, "branch.%s.description", branch_name);
791         status = git_config_set(name.buf, buf.len ? buf.buf : NULL);
792         strbuf_release(&name);
793         strbuf_release(&buf);
794
795         return status;
796 }
797
798 int cmd_branch(int argc, const char **argv, const char *prefix)
799 {
800         int delete = 0, rename = 0, force_create = 0, list = 0;
801         int verbose = 0, abbrev = -1, detached = 0;
802         int reflog = 0, edit_description = 0;
803         int quiet = 0, unset_upstream = 0;
804         const char *new_upstream = NULL;
805         enum branch_track track;
806         int kinds = REF_LOCAL_BRANCH;
807         struct commit_list *with_commit = NULL;
808
809         struct option options[] = {
810                 OPT_GROUP(N_("Generic options")),
811                 OPT__VERBOSE(&verbose,
812                         N_("show hash and subject, give twice for upstream branch")),
813                 OPT__QUIET(&quiet, N_("suppress informational messages")),
814                 OPT_SET_INT('t', "track",  &track, N_("set up tracking mode (see git-pull(1))"),
815                         BRANCH_TRACK_EXPLICIT),
816                 OPT_SET_INT( 0, "set-upstream",  &track, N_("change upstream info"),
817                         BRANCH_TRACK_OVERRIDE),
818                 OPT_STRING('u', "set-upstream-to", &new_upstream, "upstream", "change the upstream info"),
819                 OPT_BOOL(0, "unset-upstream", &unset_upstream, "Unset the upstream info"),
820                 OPT__COLOR(&branch_use_color, N_("use colored output")),
821                 OPT_SET_INT('r', "remotes",     &kinds, N_("act on remote-tracking branches"),
822                         REF_REMOTE_BRANCH),
823                 {
824                         OPTION_CALLBACK, 0, "contains", &with_commit, N_("commit"),
825                         N_("print only branches that contain the commit"),
826                         PARSE_OPT_LASTARG_DEFAULT,
827                         parse_opt_with_commit, (intptr_t)"HEAD",
828                 },
829                 {
830                         OPTION_CALLBACK, 0, "with", &with_commit, N_("commit"),
831                         N_("print only branches that contain the commit"),
832                         PARSE_OPT_HIDDEN | PARSE_OPT_LASTARG_DEFAULT,
833                         parse_opt_with_commit, (intptr_t) "HEAD",
834                 },
835                 OPT__ABBREV(&abbrev),
836
837                 OPT_GROUP(N_("Specific git-branch actions:")),
838                 OPT_SET_INT('a', "all", &kinds, N_("list both remote-tracking and local branches"),
839                         REF_REMOTE_BRANCH | REF_LOCAL_BRANCH),
840                 OPT_BIT('d', "delete", &delete, N_("delete fully merged branch"), 1),
841                 OPT_BIT('D', NULL, &delete, N_("delete branch (even if not merged)"), 2),
842                 OPT_BIT('m', "move", &rename, N_("move/rename a branch and its reflog"), 1),
843                 OPT_BIT('M', NULL, &rename, N_("move/rename a branch, even if target exists"), 2),
844                 OPT_BOOL(0, "list", &list, N_("list branch names")),
845                 OPT_BOOL('l', "create-reflog", &reflog, N_("create the branch's reflog")),
846                 OPT_BOOL(0, "edit-description", &edit_description,
847                          N_("edit the description for the branch")),
848                 OPT__FORCE(&force_create, N_("force creation (when already exists)")),
849                 {
850                         OPTION_CALLBACK, 0, "no-merged", &merge_filter_ref,
851                         N_("commit"), N_("print only not merged branches"),
852                         PARSE_OPT_LASTARG_DEFAULT | PARSE_OPT_NONEG,
853                         opt_parse_merge_filter, (intptr_t) "HEAD",
854                 },
855                 {
856                         OPTION_CALLBACK, 0, "merged", &merge_filter_ref,
857                         N_("commit"), N_("print only merged branches"),
858                         PARSE_OPT_LASTARG_DEFAULT | PARSE_OPT_NONEG,
859                         opt_parse_merge_filter, (intptr_t) "HEAD",
860                 },
861                 OPT_COLUMN(0, "column", &colopts, N_("list branches in columns")),
862                 OPT_END(),
863         };
864
865         if (argc == 2 && !strcmp(argv[1], "-h"))
866                 usage_with_options(builtin_branch_usage, options);
867
868         git_config(git_branch_config, NULL);
869
870         track = git_branch_track;
871
872         head = resolve_refdup("HEAD", head_sha1, 0, NULL);
873         if (!head)
874                 die(_("Failed to resolve HEAD as a valid ref."));
875         if (!strcmp(head, "HEAD"))
876                 detached = 1;
877         else if (!skip_prefix(head, "refs/heads/", &head))
878                 die(_("HEAD not found below refs/heads!"));
879         hashcpy(merge_filter_ref, head_sha1);
880
881
882         argc = parse_options(argc, argv, prefix, options, builtin_branch_usage,
883                              0);
884
885         if (!delete && !rename && !edit_description && !new_upstream && !unset_upstream && argc == 0)
886                 list = 1;
887
888         if (with_commit || merge_filter != NO_FILTER)
889                 list = 1;
890
891         if (!!delete + !!rename + !!force_create + !!new_upstream +
892             list + unset_upstream > 1)
893                 usage_with_options(builtin_branch_usage, options);
894
895         if (abbrev == -1)
896                 abbrev = DEFAULT_ABBREV;
897         finalize_colopts(&colopts, -1);
898         if (verbose) {
899                 if (explicitly_enable_column(colopts))
900                         die(_("--column and --verbose are incompatible"));
901                 colopts = 0;
902         }
903
904         if (delete) {
905                 if (!argc)
906                         die(_("branch name required"));
907                 return delete_branches(argc, argv, delete > 1, kinds, quiet);
908         } else if (list) {
909                 int ret = print_ref_list(kinds, detached, verbose, abbrev,
910                                          with_commit, argv);
911                 print_columns(&output, colopts, NULL);
912                 string_list_clear(&output, 0);
913                 return ret;
914         }
915         else if (edit_description) {
916                 const char *branch_name;
917                 struct strbuf branch_ref = STRBUF_INIT;
918
919                 if (!argc) {
920                         if (detached)
921                                 die(_("Cannot give description to detached HEAD"));
922                         branch_name = head;
923                 } else if (argc == 1)
924                         branch_name = argv[0];
925                 else
926                         die(_("cannot edit description of more than one branch"));
927
928                 strbuf_addf(&branch_ref, "refs/heads/%s", branch_name);
929                 if (!ref_exists(branch_ref.buf)) {
930                         strbuf_release(&branch_ref);
931
932                         if (!argc)
933                                 return error(_("No commit on branch '%s' yet."),
934                                              branch_name);
935                         else
936                                 return error(_("No branch named '%s'."),
937                                              branch_name);
938                 }
939                 strbuf_release(&branch_ref);
940
941                 if (edit_branch_description(branch_name))
942                         return 1;
943         } else if (rename) {
944                 if (!argc)
945                         die(_("branch name required"));
946                 else if (argc == 1)
947                         rename_branch(head, argv[0], rename > 1);
948                 else if (argc == 2)
949                         rename_branch(argv[0], argv[1], rename > 1);
950                 else
951                         die(_("too many branches for a rename operation"));
952         } else if (new_upstream) {
953                 struct branch *branch = branch_get(argv[0]);
954
955                 if (argc > 1)
956                         die(_("too many branches to set new upstream"));
957
958                 if (!branch) {
959                         if (!argc || !strcmp(argv[0], "HEAD"))
960                                 die(_("could not set upstream of HEAD to %s when "
961                                       "it does not point to any branch."),
962                                     new_upstream);
963                         die(_("no such branch '%s'"), argv[0]);
964                 }
965
966                 if (!ref_exists(branch->refname))
967                         die(_("branch '%s' does not exist"), branch->name);
968
969                 /*
970                  * create_branch takes care of setting up the tracking
971                  * info and making sure new_upstream is correct
972                  */
973                 create_branch(head, branch->name, new_upstream, 0, 0, 0, quiet, BRANCH_TRACK_OVERRIDE);
974         } else if (unset_upstream) {
975                 struct branch *branch = branch_get(argv[0]);
976                 struct strbuf buf = STRBUF_INIT;
977
978                 if (argc > 1)
979                         die(_("too many branches to unset upstream"));
980
981                 if (!branch) {
982                         if (!argc || !strcmp(argv[0], "HEAD"))
983                                 die(_("could not unset upstream of HEAD when "
984                                       "it does not point to any branch."));
985                         die(_("no such branch '%s'"), argv[0]);
986                 }
987
988                 if (!branch_has_merge_config(branch))
989                         die(_("Branch '%s' has no upstream information"), branch->name);
990
991                 strbuf_addf(&buf, "branch.%s.remote", branch->name);
992                 git_config_set_multivar(buf.buf, NULL, NULL, 1);
993                 strbuf_reset(&buf);
994                 strbuf_addf(&buf, "branch.%s.merge", branch->name);
995                 git_config_set_multivar(buf.buf, NULL, NULL, 1);
996                 strbuf_release(&buf);
997         } else if (argc > 0 && argc <= 2) {
998                 struct branch *branch = branch_get(argv[0]);
999                 int branch_existed = 0, remote_tracking = 0;
1000                 struct strbuf buf = STRBUF_INIT;
1001
1002                 if (!strcmp(argv[0], "HEAD"))
1003                         die(_("it does not make sense to create 'HEAD' manually"));
1004
1005                 if (!branch)
1006                         die(_("no such branch '%s'"), argv[0]);
1007
1008                 if (kinds != REF_LOCAL_BRANCH)
1009                         die(_("-a and -r options to 'git branch' do not make sense with a branch name"));
1010
1011                 if (track == BRANCH_TRACK_OVERRIDE)
1012                         fprintf(stderr, _("The --set-upstream flag is deprecated and will be removed. Consider using --track or --set-upstream-to\n"));
1013
1014                 strbuf_addf(&buf, "refs/remotes/%s", branch->name);
1015                 remote_tracking = ref_exists(buf.buf);
1016                 strbuf_release(&buf);
1017
1018                 branch_existed = ref_exists(branch->refname);
1019                 create_branch(head, argv[0], (argc == 2) ? argv[1] : head,
1020                               force_create, reflog, 0, quiet, track);
1021
1022                 /*
1023                  * We only show the instructions if the user gave us
1024                  * one branch which doesn't exist locally, but is the
1025                  * name of a remote-tracking branch.
1026                  */
1027                 if (argc == 1 && track == BRANCH_TRACK_OVERRIDE &&
1028                     !branch_existed && remote_tracking) {
1029                         fprintf(stderr, _("\nIf you wanted to make '%s' track '%s', do this:\n\n"), head, branch->name);
1030                         fprintf(stderr, _("    git branch -d %s\n"), branch->name);
1031                         fprintf(stderr, _("    git branch --set-upstream-to %s\n"), branch->name);
1032                 }
1033
1034         } else
1035                 usage_with_options(builtin_branch_usage, options);
1036
1037         return 0;
1038 }