4 * Copyright (c) 2006 Kristian Høgsberg <krh@redhat.com>
5 * Based on git-branch.sh by Junio C Hamano.
14 #include "parse-options.h"
18 #include "string-list.h"
21 #include "wt-status.h"
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] <branch-name> [<start-point>]"),
26 N_("git branch [<options>] [-r] (-d | -D) <branch-name>..."),
27 N_("git branch [<options>] (-m | -M) [<old-branch>] <new-branch>"),
31 #define REF_LOCAL_BRANCH 0x01
32 #define REF_REMOTE_BRANCH 0x02
34 static const char *head
;
35 static unsigned char head_sha1
[20];
37 static int branch_use_color
= -1;
38 static char branch_colors
[][COLOR_MAXLEN
] = {
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 */
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
55 static enum merge_filter
{
60 static unsigned char merge_filter_ref
[20];
62 static struct string_list output
= STRING_LIST_INIT_DUP
;
63 static unsigned int colopts
;
65 static int parse_branch_color_slot(const char *slot
)
67 if (!strcasecmp(slot
, "plain"))
68 return BRANCH_COLOR_PLAIN
;
69 if (!strcasecmp(slot
, "reset"))
70 return BRANCH_COLOR_RESET
;
71 if (!strcasecmp(slot
, "remote"))
72 return BRANCH_COLOR_REMOTE
;
73 if (!strcasecmp(slot
, "local"))
74 return BRANCH_COLOR_LOCAL
;
75 if (!strcasecmp(slot
, "current"))
76 return BRANCH_COLOR_CURRENT
;
77 if (!strcasecmp(slot
, "upstream"))
78 return BRANCH_COLOR_UPSTREAM
;
82 static int git_branch_config(const char *var
, const char *value
, void *cb
)
84 const char *slot_name
;
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
);
92 if (skip_prefix(var
, "color.branch.", &slot_name
)) {
93 int slot
= parse_branch_color_slot(slot_name
);
97 return config_error_nonbool(var
);
98 return color_parse(value
, branch_colors
[slot
]);
100 return git_color_default_config(var
, value
, cb
);
103 static const char *branch_get_color(enum color_branch ix
)
105 if (want_color(branch_use_color
))
106 return branch_colors
[ix
];
110 static int branch_merged(int kind
, const char *name
,
111 struct commit
*rev
, struct commit
*head_rev
)
114 * This checks whether the merge bases of branch and HEAD (or
115 * the other branch this branch builds upon) contains the
116 * branch, which means that the branch has already been merged
117 * safely to HEAD (or the other branch).
119 struct commit
*reference_rev
= NULL
;
120 const char *reference_name
= NULL
;
121 void *reference_name_to_free
= NULL
;
124 if (kind
== REF_LOCAL_BRANCH
) {
125 struct branch
*branch
= branch_get(name
);
126 const char *upstream
= branch_get_upstream(branch
, NULL
);
127 unsigned char sha1
[20];
130 (reference_name
= reference_name_to_free
=
131 resolve_refdup(upstream
, RESOLVE_REF_READING
,
132 sha1
, NULL
)) != NULL
)
133 reference_rev
= lookup_commit_reference(sha1
);
136 reference_rev
= head_rev
;
138 merged
= in_merge_bases(rev
, reference_rev
);
141 * After the safety valve is fully redefined to "check with
142 * upstream, if any, otherwise with HEAD", we should just
143 * return the result of the in_merge_bases() above without
144 * any of the following code, but during the transition period,
145 * a gentle reminder is in order.
147 if ((head_rev
!= reference_rev
) &&
148 in_merge_bases(rev
, head_rev
) != merged
) {
150 warning(_("deleting branch '%s' that has been merged to\n"
151 " '%s', but not yet merged to HEAD."),
152 name
, reference_name
);
154 warning(_("not deleting branch '%s' that is not yet merged to\n"
155 " '%s', even though it is merged to HEAD."),
156 name
, reference_name
);
158 free(reference_name_to_free
);
162 static int check_branch_commit(const char *branchname
, const char *refname
,
163 unsigned char *sha1
, struct commit
*head_rev
,
164 int kinds
, int force
)
166 struct commit
*rev
= lookup_commit_reference(sha1
);
168 error(_("Couldn't look up commit object for '%s'"), refname
);
171 if (!force
&& !branch_merged(kinds
, branchname
, rev
, head_rev
)) {
172 error(_("The branch '%s' is not fully merged.\n"
173 "If you are sure you want to delete it, "
174 "run 'git branch -D %s'."), branchname
, branchname
);
180 static void delete_branch_config(const char *branchname
)
182 struct strbuf buf
= STRBUF_INIT
;
183 strbuf_addf(&buf
, "branch.%s", branchname
);
184 if (git_config_rename_section(buf
.buf
, NULL
) < 0)
185 warning(_("Update of config-file failed"));
186 strbuf_release(&buf
);
189 static int delete_branches(int argc
, const char **argv
, int force
, int kinds
,
192 struct commit
*head_rev
= NULL
;
193 unsigned char sha1
[20];
198 int remote_branch
= 0;
199 struct strbuf bname
= STRBUF_INIT
;
202 case REF_REMOTE_BRANCH
:
203 fmt
= "refs/remotes/%s";
204 /* For subsequent UI messages */
209 case REF_LOCAL_BRANCH
:
210 fmt
= "refs/heads/%s";
213 die(_("cannot use -a with -d"));
217 head_rev
= lookup_commit_reference(head_sha1
);
219 die(_("Couldn't look up commit object for HEAD"));
221 for (i
= 0; i
< argc
; i
++, strbuf_release(&bname
)) {
225 strbuf_branchname(&bname
, argv
[i
]);
226 if (kinds
== REF_LOCAL_BRANCH
&& !strcmp(head
, bname
.buf
)) {
227 error(_("Cannot delete the branch '%s' "
228 "which you are currently on."), bname
.buf
);
235 name
= mkpathdup(fmt
, bname
.buf
);
236 target
= resolve_ref_unsafe(name
,
238 | RESOLVE_REF_NO_RECURSE
239 | RESOLVE_REF_ALLOW_BAD_NAME
,
243 ? _("remote-tracking branch '%s' not found.")
244 : _("branch '%s' not found."), bname
.buf
);
249 if (!(flags
& (REF_ISSYMREF
|REF_ISBROKEN
)) &&
250 check_branch_commit(bname
.buf
, name
, sha1
, head_rev
, kinds
,
256 if (delete_ref(name
, sha1
, REF_NODEREF
)) {
258 ? _("Error deleting remote-tracking branch '%s'")
259 : _("Error deleting branch '%s'"),
266 ? _("Deleted remote-tracking branch %s (was %s).\n")
267 : _("Deleted branch %s (was %s).\n"),
269 (flags
& REF_ISBROKEN
) ? "broken"
270 : (flags
& REF_ISSYMREF
) ? target
271 : find_unique_abbrev(sha1
, DEFAULT_ABBREV
));
273 delete_branch_config(bname
.buf
);
284 unsigned int kind
, width
;
285 struct commit
*commit
;
290 struct rev_info revs
;
291 int index
, alloc
, maxwidth
, verbose
, abbrev
;
292 struct ref_item
*list
;
293 struct commit_list
*with_commit
;
297 static char *resolve_symref(const char *src
, const char *prefix
)
299 unsigned char sha1
[20];
303 dst
= resolve_ref_unsafe(src
, 0, sha1
, &flag
);
304 if (!(dst
&& (flag
& REF_ISSYMREF
)))
307 skip_prefix(dst
, prefix
, &dst
);
311 struct append_ref_cb
{
312 struct ref_list
*ref_list
;
313 const char **pattern
;
317 static int match_patterns(const char **pattern
, const char *refname
)
320 return 1; /* no pattern always matches */
322 if (!wildmatch(*pattern
, refname
, 0, NULL
))
329 static int append_ref(const char *refname
, const struct object_id
*oid
, int flags
, void *cb_data
)
331 struct append_ref_cb
*cb
= (struct append_ref_cb
*)(cb_data
);
332 struct ref_list
*ref_list
= cb
->ref_list
;
333 struct ref_item
*newitem
;
334 struct commit
*commit
;
336 const char *prefix
, *orig_refname
= refname
;
342 { REF_LOCAL_BRANCH
, "refs/heads/" },
343 { REF_REMOTE_BRANCH
, "refs/remotes/" },
347 for (i
= 0; i
< ARRAY_SIZE(ref_kind
); i
++) {
348 prefix
= ref_kind
[i
].prefix
;
349 if (skip_prefix(refname
, prefix
, &refname
)) {
350 kind
= ref_kind
[i
].kind
;
354 if (ARRAY_SIZE(ref_kind
) <= i
)
357 /* Don't add types the caller doesn't want */
358 if ((kind
& ref_list
->kinds
) == 0)
361 if (!match_patterns(cb
->pattern
, refname
))
365 if (ref_list
->verbose
|| ref_list
->with_commit
|| merge_filter
!= NO_FILTER
) {
366 commit
= lookup_commit_reference_gently(oid
->hash
, 1);
368 cb
->ret
= error(_("branch '%s' does not point at a commit"), refname
);
372 /* Filter with with_commit if specified */
373 if (!is_descendant_of(commit
, ref_list
->with_commit
))
376 if (merge_filter
!= NO_FILTER
)
377 add_pending_object(&ref_list
->revs
,
378 (struct object
*)commit
, refname
);
381 ALLOC_GROW(ref_list
->list
, ref_list
->index
+ 1, ref_list
->alloc
);
383 /* Record the new item */
384 newitem
= &(ref_list
->list
[ref_list
->index
++]);
385 newitem
->name
= xstrdup(refname
);
386 newitem
->kind
= kind
;
387 newitem
->commit
= commit
;
388 newitem
->width
= utf8_strwidth(refname
);
389 newitem
->dest
= resolve_symref(orig_refname
, prefix
);
391 /* adjust for "remotes/" */
392 if (newitem
->kind
== REF_REMOTE_BRANCH
&&
393 ref_list
->kinds
!= REF_REMOTE_BRANCH
)
395 if (newitem
->width
> ref_list
->maxwidth
)
396 ref_list
->maxwidth
= newitem
->width
;
401 static void free_ref_list(struct ref_list
*ref_list
)
405 for (i
= 0; i
< ref_list
->index
; i
++) {
406 free(ref_list
->list
[i
].name
);
407 free(ref_list
->list
[i
].dest
);
409 free(ref_list
->list
);
412 static int ref_cmp(const void *r1
, const void *r2
)
414 struct ref_item
*c1
= (struct ref_item
*)(r1
);
415 struct ref_item
*c2
= (struct ref_item
*)(r2
);
417 if (c1
->kind
!= c2
->kind
)
418 return c1
->kind
- c2
->kind
;
419 return strcmp(c1
->name
, c2
->name
);
422 static void fill_tracking_info(struct strbuf
*stat
, const char *branch_name
,
423 int show_upstream_ref
)
427 struct branch
*branch
= branch_get(branch_name
);
428 const char *upstream
;
429 struct strbuf fancy
= STRBUF_INIT
;
430 int upstream_is_gone
= 0;
431 int added_decoration
= 1;
433 if (stat_tracking_info(branch
, &ours
, &theirs
, &upstream
) < 0) {
436 upstream_is_gone
= 1;
439 if (show_upstream_ref
) {
440 ref
= shorten_unambiguous_ref(upstream
, 0);
441 if (want_color(branch_use_color
))
442 strbuf_addf(&fancy
, "%s%s%s",
443 branch_get_color(BRANCH_COLOR_UPSTREAM
),
444 ref
, branch_get_color(BRANCH_COLOR_RESET
));
446 strbuf_addstr(&fancy
, ref
);
449 if (upstream_is_gone
) {
450 if (show_upstream_ref
)
451 strbuf_addf(stat
, _("[%s: gone]"), fancy
.buf
);
453 added_decoration
= 0;
454 } else if (!ours
&& !theirs
) {
455 if (show_upstream_ref
)
456 strbuf_addf(stat
, _("[%s]"), fancy
.buf
);
458 added_decoration
= 0;
460 if (show_upstream_ref
)
461 strbuf_addf(stat
, _("[%s: behind %d]"), fancy
.buf
, theirs
);
463 strbuf_addf(stat
, _("[behind %d]"), theirs
);
465 } else if (!theirs
) {
466 if (show_upstream_ref
)
467 strbuf_addf(stat
, _("[%s: ahead %d]"), fancy
.buf
, ours
);
469 strbuf_addf(stat
, _("[ahead %d]"), ours
);
471 if (show_upstream_ref
)
472 strbuf_addf(stat
, _("[%s: ahead %d, behind %d]"),
473 fancy
.buf
, ours
, theirs
);
475 strbuf_addf(stat
, _("[ahead %d, behind %d]"),
478 strbuf_release(&fancy
);
479 if (added_decoration
)
480 strbuf_addch(stat
, ' ');
484 static void add_verbose_info(struct strbuf
*out
, struct ref_item
*item
,
485 int verbose
, int abbrev
)
487 struct strbuf subject
= STRBUF_INIT
, stat
= STRBUF_INIT
;
488 const char *sub
= _(" **** invalid ref ****");
489 struct commit
*commit
= item
->commit
;
491 if (!parse_commit(commit
)) {
492 pp_commit_easy(CMIT_FMT_ONELINE
, commit
, &subject
);
496 if (item
->kind
== REF_LOCAL_BRANCH
)
497 fill_tracking_info(&stat
, item
->name
, verbose
> 1);
499 strbuf_addf(out
, " %s %s%s",
500 find_unique_abbrev(item
->commit
->object
.sha1
, abbrev
),
502 strbuf_release(&stat
);
503 strbuf_release(&subject
);
506 static void print_ref_item(struct ref_item
*item
, int maxwidth
, int verbose
,
507 int abbrev
, int current
, char *prefix
)
511 struct strbuf out
= STRBUF_INIT
, name
= STRBUF_INIT
;
516 switch (item
->kind
) {
517 case REF_LOCAL_BRANCH
:
518 color
= BRANCH_COLOR_LOCAL
;
520 case REF_REMOTE_BRANCH
:
521 color
= BRANCH_COLOR_REMOTE
;
524 color
= BRANCH_COLOR_PLAIN
;
531 color
= BRANCH_COLOR_CURRENT
;
534 strbuf_addf(&name
, "%s%s", prefix
, item
->name
);
536 int utf8_compensation
= strlen(name
.buf
) - utf8_strwidth(name
.buf
);
537 strbuf_addf(&out
, "%c %s%-*s%s", c
, branch_get_color(color
),
538 maxwidth
+ utf8_compensation
, name
.buf
,
539 branch_get_color(BRANCH_COLOR_RESET
));
541 strbuf_addf(&out
, "%c %s%s%s", c
, branch_get_color(color
),
542 name
.buf
, branch_get_color(BRANCH_COLOR_RESET
));
545 strbuf_addf(&out
, " -> %s", item
->dest
);
547 /* " f7c0c00 [ahead 58, behind 197] vcs-svn: drop obj_pool.h" */
548 add_verbose_info(&out
, item
, verbose
, abbrev
);
549 if (column_active(colopts
)) {
550 assert(!verbose
&& "--column and --verbose are incompatible");
551 string_list_append(&output
, out
.buf
);
553 printf("%s\n", out
.buf
);
555 strbuf_release(&name
);
556 strbuf_release(&out
);
559 static int calc_maxwidth(struct ref_list
*refs
)
562 for (i
= 0; i
< refs
->index
; i
++) {
563 if (refs
->list
[i
].ignore
)
565 if (refs
->list
[i
].width
> w
)
566 w
= refs
->list
[i
].width
;
571 static char *get_head_description(void)
573 struct strbuf desc
= STRBUF_INIT
;
574 struct wt_status_state state
;
575 memset(&state
, 0, sizeof(state
));
576 wt_status_get_state(&state
, 1);
577 if (state
.rebase_in_progress
||
578 state
.rebase_interactive_in_progress
)
579 strbuf_addf(&desc
, _("(no branch, rebasing %s)"),
581 else if (state
.bisect_in_progress
)
582 strbuf_addf(&desc
, _("(no branch, bisect started on %s)"),
584 else if (state
.detached_from
) {
585 /* TRANSLATORS: make sure these match _("HEAD detached at ")
586 and _("HEAD detached from ") in wt-status.c */
587 if (state
.detached_at
)
588 strbuf_addf(&desc
, _("(HEAD detached at %s)"),
589 state
.detached_from
);
591 strbuf_addf(&desc
, _("(HEAD detached from %s)"),
592 state
.detached_from
);
595 strbuf_addstr(&desc
, _("(no branch)"));
598 free(state
.detached_from
);
599 return strbuf_detach(&desc
, NULL
);
602 static void show_detached(struct ref_list
*ref_list
)
604 struct commit
*head_commit
= lookup_commit_reference_gently(head_sha1
, 1);
606 if (head_commit
&& is_descendant_of(head_commit
, ref_list
->with_commit
)) {
607 struct ref_item item
;
608 item
.name
= get_head_description();
609 item
.width
= utf8_strwidth(item
.name
);
610 item
.kind
= REF_LOCAL_BRANCH
;
612 item
.commit
= head_commit
;
614 if (item
.width
> ref_list
->maxwidth
)
615 ref_list
->maxwidth
= item
.width
;
616 print_ref_item(&item
, ref_list
->maxwidth
, ref_list
->verbose
, ref_list
->abbrev
, 1, "");
621 static int print_ref_list(int kinds
, int detached
, int verbose
, int abbrev
, struct commit_list
*with_commit
, const char **pattern
)
624 struct append_ref_cb cb
;
625 struct ref_list ref_list
;
627 memset(&ref_list
, 0, sizeof(ref_list
));
628 ref_list
.kinds
= kinds
;
629 ref_list
.verbose
= verbose
;
630 ref_list
.abbrev
= abbrev
;
631 ref_list
.with_commit
= with_commit
;
632 if (merge_filter
!= NO_FILTER
)
633 init_revisions(&ref_list
.revs
, NULL
);
634 cb
.ref_list
= &ref_list
;
635 cb
.pattern
= pattern
;
637 for_each_rawref(append_ref
, &cb
);
638 if (merge_filter
!= NO_FILTER
) {
639 struct commit
*filter
;
640 filter
= lookup_commit_reference_gently(merge_filter_ref
, 0);
642 die(_("object '%s' does not point to a commit"),
643 sha1_to_hex(merge_filter_ref
));
645 filter
->object
.flags
|= UNINTERESTING
;
646 add_pending_object(&ref_list
.revs
,
647 (struct object
*) filter
, "");
648 ref_list
.revs
.limited
= 1;
650 if (prepare_revision_walk(&ref_list
.revs
))
651 die(_("revision walk setup failed"));
653 for (i
= 0; i
< ref_list
.index
; i
++) {
654 struct ref_item
*item
= &ref_list
.list
[i
];
655 struct commit
*commit
= item
->commit
;
656 int is_merged
= !!(commit
->object
.flags
& UNINTERESTING
);
657 item
->ignore
= is_merged
!= (merge_filter
== SHOW_MERGED
);
660 for (i
= 0; i
< ref_list
.index
; i
++) {
661 struct ref_item
*item
= &ref_list
.list
[i
];
662 clear_commit_marks(item
->commit
, ALL_REV_FLAGS
);
664 clear_commit_marks(filter
, ALL_REV_FLAGS
);
667 ref_list
.maxwidth
= calc_maxwidth(&ref_list
);
670 qsort(ref_list
.list
, ref_list
.index
, sizeof(struct ref_item
), ref_cmp
);
672 detached
= (detached
&& (kinds
& REF_LOCAL_BRANCH
));
673 if (detached
&& match_patterns(pattern
, "HEAD"))
674 show_detached(&ref_list
);
676 for (i
= 0; i
< ref_list
.index
; i
++) {
677 int current
= !detached
&&
678 (ref_list
.list
[i
].kind
== REF_LOCAL_BRANCH
) &&
679 !strcmp(ref_list
.list
[i
].name
, head
);
680 char *prefix
= (kinds
!= REF_REMOTE_BRANCH
&&
681 ref_list
.list
[i
].kind
== REF_REMOTE_BRANCH
)
683 print_ref_item(&ref_list
.list
[i
], ref_list
.maxwidth
, verbose
,
684 abbrev
, current
, prefix
);
687 free_ref_list(&ref_list
);
690 error(_("some refs could not be read"));
695 static void rename_branch(const char *oldname
, const char *newname
, int force
)
697 struct strbuf oldref
= STRBUF_INIT
, newref
= STRBUF_INIT
, logmsg
= STRBUF_INIT
;
698 struct strbuf oldsection
= STRBUF_INIT
, newsection
= STRBUF_INIT
;
703 die(_("cannot rename the current branch while not on any."));
705 if (strbuf_check_branch_ref(&oldref
, oldname
)) {
707 * Bad name --- this could be an attempt to rename a
708 * ref that we used to allow to be created by accident.
710 if (ref_exists(oldref
.buf
))
713 die(_("Invalid branch name: '%s'"), oldname
);
717 * A command like "git branch -M currentbranch currentbranch" cannot
718 * cause the worktree to become inconsistent with HEAD, so allow it.
720 clobber_head_ok
= !strcmp(oldname
, newname
);
722 validate_new_branchname(newname
, &newref
, force
, clobber_head_ok
);
724 strbuf_addf(&logmsg
, "Branch: renamed %s to %s",
725 oldref
.buf
, newref
.buf
);
727 if (rename_ref(oldref
.buf
, newref
.buf
, logmsg
.buf
))
728 die(_("Branch rename failed"));
729 strbuf_release(&logmsg
);
732 warning(_("Renamed a misnamed branch '%s' away"), oldref
.buf
+ 11);
734 /* no need to pass logmsg here as HEAD didn't really move */
735 if (!strcmp(oldname
, head
) && create_symref("HEAD", newref
.buf
, NULL
))
736 die(_("Branch renamed to %s, but HEAD is not updated!"), newname
);
738 strbuf_addf(&oldsection
, "branch.%s", oldref
.buf
+ 11);
739 strbuf_release(&oldref
);
740 strbuf_addf(&newsection
, "branch.%s", newref
.buf
+ 11);
741 strbuf_release(&newref
);
742 if (git_config_rename_section(oldsection
.buf
, newsection
.buf
) < 0)
743 die(_("Branch is renamed, but update of config-file failed"));
744 strbuf_release(&oldsection
);
745 strbuf_release(&newsection
);
748 static int opt_parse_merge_filter(const struct option
*opt
, const char *arg
, int unset
)
750 merge_filter
= ((opt
->long_name
[0] == 'n')
754 merge_filter
= SHOW_NOT_MERGED
; /* b/c for --no-merged */
757 if (get_sha1(arg
, merge_filter_ref
))
758 die(_("malformed object name %s"), arg
);
762 static const char edit_description
[] = "BRANCH_DESCRIPTION";
764 static int edit_branch_description(const char *branch_name
)
767 struct strbuf buf
= STRBUF_INIT
;
768 struct strbuf name
= STRBUF_INIT
;
770 read_branch_desc(&buf
, branch_name
);
771 if (!buf
.len
|| buf
.buf
[buf
.len
-1] != '\n')
772 strbuf_addch(&buf
, '\n');
773 strbuf_commented_addf(&buf
,
774 "Please edit the description for the branch\n"
776 "Lines starting with '%c' will be stripped.\n",
777 branch_name
, comment_line_char
);
778 if (write_file(git_path(edit_description
), 0, "%s", buf
.buf
)) {
779 strbuf_release(&buf
);
780 return error(_("could not write branch description template: %s"),
784 if (launch_editor(git_path(edit_description
), &buf
, NULL
)) {
785 strbuf_release(&buf
);
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
);
798 int cmd_branch(int argc
, const char **argv
, const char *prefix
)
800 int delete = 0, rename
= 0, force
= 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
;
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"),
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",
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",
835 OPT__ABBREV(&abbrev
),
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
, N_("force creation, move/rename, deletion")),
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",
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",
861 OPT_COLUMN(0, "column", &colopts
, N_("list branches in columns")),
865 if (argc
== 2 && !strcmp(argv
[1], "-h"))
866 usage_with_options(builtin_branch_usage
, options
);
868 git_config(git_branch_config
, NULL
);
870 track
= git_branch_track
;
872 head
= resolve_refdup("HEAD", 0, head_sha1
, NULL
);
874 die(_("Failed to resolve HEAD as a valid ref."));
875 if (!strcmp(head
, "HEAD"))
877 else if (!skip_prefix(head
, "refs/heads/", &head
))
878 die(_("HEAD not found below refs/heads!"));
879 hashcpy(merge_filter_ref
, head_sha1
);
882 argc
= parse_options(argc
, argv
, prefix
, options
, builtin_branch_usage
,
885 if (!delete && !rename
&& !edit_description
&& !new_upstream
&& !unset_upstream
&& argc
== 0)
888 if (with_commit
|| merge_filter
!= NO_FILTER
)
891 if (!!delete + !!rename
+ !!new_upstream
+
892 list
+ unset_upstream
> 1)
893 usage_with_options(builtin_branch_usage
, options
);
896 abbrev
= DEFAULT_ABBREV
;
897 finalize_colopts(&colopts
, -1);
899 if (explicitly_enable_column(colopts
))
900 die(_("--column and --verbose are incompatible"));
911 die(_("branch name required"));
912 return delete_branches(argc
, argv
, delete > 1, kinds
, quiet
);
914 int ret
= print_ref_list(kinds
, detached
, verbose
, abbrev
,
916 print_columns(&output
, colopts
, NULL
);
917 string_list_clear(&output
, 0);
920 else if (edit_description
) {
921 const char *branch_name
;
922 struct strbuf branch_ref
= STRBUF_INIT
;
926 die(_("Cannot give description to detached HEAD"));
928 } else if (argc
== 1)
929 branch_name
= argv
[0];
931 die(_("cannot edit description of more than one branch"));
933 strbuf_addf(&branch_ref
, "refs/heads/%s", branch_name
);
934 if (!ref_exists(branch_ref
.buf
)) {
935 strbuf_release(&branch_ref
);
938 return error(_("No commit on branch '%s' yet."),
941 return error(_("No branch named '%s'."),
944 strbuf_release(&branch_ref
);
946 if (edit_branch_description(branch_name
))
950 die(_("branch name required"));
952 rename_branch(head
, argv
[0], rename
> 1);
954 rename_branch(argv
[0], argv
[1], rename
> 1);
956 die(_("too many branches for a rename operation"));
957 } else if (new_upstream
) {
958 struct branch
*branch
= branch_get(argv
[0]);
961 die(_("too many branches to set new upstream"));
964 if (!argc
|| !strcmp(argv
[0], "HEAD"))
965 die(_("could not set upstream of HEAD to %s when "
966 "it does not point to any branch."),
968 die(_("no such branch '%s'"), argv
[0]);
971 if (!ref_exists(branch
->refname
))
972 die(_("branch '%s' does not exist"), branch
->name
);
975 * create_branch takes care of setting up the tracking
976 * info and making sure new_upstream is correct
978 create_branch(head
, branch
->name
, new_upstream
, 0, 0, 0, quiet
, BRANCH_TRACK_OVERRIDE
);
979 } else if (unset_upstream
) {
980 struct branch
*branch
= branch_get(argv
[0]);
981 struct strbuf buf
= STRBUF_INIT
;
984 die(_("too many branches to unset upstream"));
987 if (!argc
|| !strcmp(argv
[0], "HEAD"))
988 die(_("could not unset upstream of HEAD when "
989 "it does not point to any branch."));
990 die(_("no such branch '%s'"), argv
[0]);
993 if (!branch_has_merge_config(branch
))
994 die(_("Branch '%s' has no upstream information"), branch
->name
);
996 strbuf_addf(&buf
, "branch.%s.remote", branch
->name
);
997 git_config_set_multivar(buf
.buf
, NULL
, NULL
, 1);
999 strbuf_addf(&buf
, "branch.%s.merge", branch
->name
);
1000 git_config_set_multivar(buf
.buf
, NULL
, NULL
, 1);
1001 strbuf_release(&buf
);
1002 } else if (argc
> 0 && argc
<= 2) {
1003 struct branch
*branch
= branch_get(argv
[0]);
1004 int branch_existed
= 0, remote_tracking
= 0;
1005 struct strbuf buf
= STRBUF_INIT
;
1007 if (!strcmp(argv
[0], "HEAD"))
1008 die(_("it does not make sense to create 'HEAD' manually"));
1011 die(_("no such branch '%s'"), argv
[0]);
1013 if (kinds
!= REF_LOCAL_BRANCH
)
1014 die(_("-a and -r options to 'git branch' do not make sense with a branch name"));
1016 if (track
== BRANCH_TRACK_OVERRIDE
)
1017 fprintf(stderr
, _("The --set-upstream flag is deprecated and will be removed. Consider using --track or --set-upstream-to\n"));
1019 strbuf_addf(&buf
, "refs/remotes/%s", branch
->name
);
1020 remote_tracking
= ref_exists(buf
.buf
);
1021 strbuf_release(&buf
);
1023 branch_existed
= ref_exists(branch
->refname
);
1024 create_branch(head
, argv
[0], (argc
== 2) ? argv
[1] : head
,
1025 force
, reflog
, 0, quiet
, track
);
1028 * We only show the instructions if the user gave us
1029 * one branch which doesn't exist locally, but is the
1030 * name of a remote-tracking branch.
1032 if (argc
== 1 && track
== BRANCH_TRACK_OVERRIDE
&&
1033 !branch_existed
&& remote_tracking
) {
1034 fprintf(stderr
, _("\nIf you wanted to make '%s' track '%s', do this:\n\n"), head
, branch
->name
);
1035 fprintf(stderr
, _(" git branch -d %s\n"), branch
->name
);
1036 fprintf(stderr
, _(" git branch --set-upstream-to %s\n"), branch
->name
);
1040 usage_with_options(builtin_branch_usage
, options
);