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] <branchname> [<start-point>]"),
26 N_("git branch [options] [-r] (-d | -D) <branchname>..."),
27 N_("git branch [options] (-m | -M) [<oldbranch>] <newbranch>"),
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 */
46 BRANCH_COLOR_RESET
= 0,
47 BRANCH_COLOR_PLAIN
= 1,
48 BRANCH_COLOR_REMOTE
= 2,
49 BRANCH_COLOR_LOCAL
= 3,
50 BRANCH_COLOR_CURRENT
= 4
53 static enum merge_filter
{
58 static unsigned char merge_filter_ref
[20];
60 static struct string_list output
= STRING_LIST_INIT_DUP
;
61 static unsigned int colopts
;
63 static int parse_branch_color_slot(const char *var
, int ofs
)
65 if (!strcasecmp(var
+ofs
, "plain"))
66 return BRANCH_COLOR_PLAIN
;
67 if (!strcasecmp(var
+ofs
, "reset"))
68 return BRANCH_COLOR_RESET
;
69 if (!strcasecmp(var
+ofs
, "remote"))
70 return BRANCH_COLOR_REMOTE
;
71 if (!strcasecmp(var
+ofs
, "local"))
72 return BRANCH_COLOR_LOCAL
;
73 if (!strcasecmp(var
+ofs
, "current"))
74 return BRANCH_COLOR_CURRENT
;
78 static int git_branch_config(const char *var
, const char *value
, void *cb
)
80 if (!prefixcmp(var
, "column."))
81 return git_column_config(var
, value
, "branch", &colopts
);
82 if (!strcmp(var
, "color.branch")) {
83 branch_use_color
= git_config_colorbool(var
, value
);
86 if (!prefixcmp(var
, "color.branch.")) {
87 int slot
= parse_branch_color_slot(var
, 13);
91 return config_error_nonbool(var
);
92 color_parse(value
, var
, branch_colors
[slot
]);
95 return git_color_default_config(var
, value
, cb
);
98 static const char *branch_get_color(enum color_branch ix
)
100 if (want_color(branch_use_color
))
101 return branch_colors
[ix
];
105 static int branch_merged(int kind
, const char *name
,
106 struct commit
*rev
, struct commit
*head_rev
)
109 * This checks whether the merge bases of branch and HEAD (or
110 * the other branch this branch builds upon) contains the
111 * branch, which means that the branch has already been merged
112 * safely to HEAD (or the other branch).
114 struct commit
*reference_rev
= NULL
;
115 const char *reference_name
= NULL
;
116 void *reference_name_to_free
= NULL
;
119 if (kind
== REF_LOCAL_BRANCH
) {
120 struct branch
*branch
= branch_get(name
);
121 unsigned char sha1
[20];
126 branch
->merge
[0]->dst
&&
127 (reference_name
= reference_name_to_free
=
128 resolve_refdup(branch
->merge
[0]->dst
, sha1
, 1, NULL
)) != NULL
)
129 reference_rev
= lookup_commit_reference(sha1
);
132 reference_rev
= head_rev
;
134 merged
= in_merge_bases(rev
, reference_rev
);
137 * After the safety valve is fully redefined to "check with
138 * upstream, if any, otherwise with HEAD", we should just
139 * return the result of the in_merge_bases() above without
140 * any of the following code, but during the transition period,
141 * a gentle reminder is in order.
143 if ((head_rev
!= reference_rev
) &&
144 in_merge_bases(rev
, head_rev
) != merged
) {
146 warning(_("deleting branch '%s' that has been merged to\n"
147 " '%s', but not yet merged to HEAD."),
148 name
, reference_name
);
150 warning(_("not deleting branch '%s' that is not yet merged to\n"
151 " '%s', even though it is merged to HEAD."),
152 name
, reference_name
);
154 free(reference_name_to_free
);
158 static int check_branch_commit(const char *branchname
, const char *refname
,
159 unsigned char *sha1
, struct commit
*head_rev
,
160 int kinds
, int force
)
162 struct commit
*rev
= lookup_commit_reference(sha1
);
164 error(_("Couldn't look up commit object for '%s'"), refname
);
167 if (!force
&& !branch_merged(kinds
, branchname
, rev
, head_rev
)) {
168 error(_("The branch '%s' is not fully merged.\n"
169 "If you are sure you want to delete it, "
170 "run 'git branch -D %s'."), branchname
, branchname
);
176 static void delete_branch_config(const char *branchname
)
178 struct strbuf buf
= STRBUF_INIT
;
179 strbuf_addf(&buf
, "branch.%s", branchname
);
180 if (git_config_rename_section(buf
.buf
, NULL
) < 0)
181 warning(_("Update of config-file failed"));
182 strbuf_release(&buf
);
185 static int delete_branches(int argc
, const char **argv
, int force
, int kinds
,
188 struct commit
*head_rev
= NULL
;
189 unsigned char sha1
[20];
194 int remote_branch
= 0;
195 struct strbuf bname
= STRBUF_INIT
;
198 case REF_REMOTE_BRANCH
:
199 fmt
= "refs/remotes/%s";
200 /* For subsequent UI messages */
205 case REF_LOCAL_BRANCH
:
206 fmt
= "refs/heads/%s";
209 die(_("cannot use -a with -d"));
213 head_rev
= lookup_commit_reference(head_sha1
);
215 die(_("Couldn't look up commit object for HEAD"));
217 for (i
= 0; i
< argc
; i
++, strbuf_release(&bname
)) {
221 strbuf_branchname(&bname
, argv
[i
]);
222 if (kinds
== REF_LOCAL_BRANCH
&& !strcmp(head
, bname
.buf
)) {
223 error(_("Cannot delete the branch '%s' "
224 "which you are currently on."), bname
.buf
);
231 name
= mkpathdup(fmt
, bname
.buf
);
232 target
= resolve_ref_unsafe(name
, sha1
, 0, &flags
);
234 (!(flags
& REF_ISSYMREF
) && is_null_sha1(sha1
))) {
236 ? _("remote branch '%s' not found.")
237 : _("branch '%s' not found."), bname
.buf
);
242 if (!(flags
& REF_ISSYMREF
) &&
243 check_branch_commit(bname
.buf
, name
, sha1
, head_rev
, kinds
,
249 if (delete_ref(name
, sha1
, REF_NODEREF
)) {
251 ? _("Error deleting remote branch '%s'")
252 : _("Error deleting branch '%s'"),
259 ? _("Deleted remote branch %s (was %s).\n")
260 : _("Deleted branch %s (was %s).\n"),
262 (flags
& REF_ISSYMREF
)
264 : find_unique_abbrev(sha1
, DEFAULT_ABBREV
));
266 delete_branch_config(bname
.buf
);
277 unsigned int kind
, width
;
278 struct commit
*commit
;
282 struct rev_info revs
;
283 int index
, alloc
, maxwidth
, verbose
, abbrev
;
284 struct ref_item
*list
;
285 struct commit_list
*with_commit
;
289 static char *resolve_symref(const char *src
, const char *prefix
)
291 unsigned char sha1
[20];
293 const char *dst
, *cp
;
295 dst
= resolve_ref_unsafe(src
, sha1
, 0, &flag
);
296 if (!(dst
&& (flag
& REF_ISSYMREF
)))
298 if (prefix
&& (cp
= skip_prefix(dst
, prefix
)))
303 struct append_ref_cb
{
304 struct ref_list
*ref_list
;
305 const char **pattern
;
309 static int match_patterns(const char **pattern
, const char *refname
)
312 return 1; /* no pattern always matches */
314 if (!fnmatch(*pattern
, refname
, 0))
321 static int append_ref(const char *refname
, const unsigned char *sha1
, int flags
, void *cb_data
)
323 struct append_ref_cb
*cb
= (struct append_ref_cb
*)(cb_data
);
324 struct ref_list
*ref_list
= cb
->ref_list
;
325 struct ref_item
*newitem
;
326 struct commit
*commit
;
328 const char *prefix
, *orig_refname
= refname
;
335 { REF_LOCAL_BRANCH
, "refs/heads/", 11 },
336 { REF_REMOTE_BRANCH
, "refs/remotes/", 13 },
340 for (i
= 0; i
< ARRAY_SIZE(ref_kind
); i
++) {
341 prefix
= ref_kind
[i
].prefix
;
342 if (strncmp(refname
, prefix
, ref_kind
[i
].pfxlen
))
344 kind
= ref_kind
[i
].kind
;
345 refname
+= ref_kind
[i
].pfxlen
;
348 if (ARRAY_SIZE(ref_kind
) <= i
)
351 /* Don't add types the caller doesn't want */
352 if ((kind
& ref_list
->kinds
) == 0)
355 if (!match_patterns(cb
->pattern
, refname
))
359 if (ref_list
->verbose
|| ref_list
->with_commit
|| merge_filter
!= NO_FILTER
) {
360 commit
= lookup_commit_reference_gently(sha1
, 1);
362 cb
->ret
= error(_("branch '%s' does not point at a commit"), refname
);
366 /* Filter with with_commit if specified */
367 if (!is_descendant_of(commit
, ref_list
->with_commit
))
370 if (merge_filter
!= NO_FILTER
)
371 add_pending_object(&ref_list
->revs
,
372 (struct object
*)commit
, refname
);
375 ALLOC_GROW(ref_list
->list
, ref_list
->index
+ 1, ref_list
->alloc
);
377 /* Record the new item */
378 newitem
= &(ref_list
->list
[ref_list
->index
++]);
379 newitem
->name
= xstrdup(refname
);
380 newitem
->kind
= kind
;
381 newitem
->commit
= commit
;
382 newitem
->width
= utf8_strwidth(refname
);
383 newitem
->dest
= resolve_symref(orig_refname
, prefix
);
384 /* adjust for "remotes/" */
385 if (newitem
->kind
== REF_REMOTE_BRANCH
&&
386 ref_list
->kinds
!= REF_REMOTE_BRANCH
)
388 if (newitem
->width
> ref_list
->maxwidth
)
389 ref_list
->maxwidth
= newitem
->width
;
394 static void free_ref_list(struct ref_list
*ref_list
)
398 for (i
= 0; i
< ref_list
->index
; i
++) {
399 free(ref_list
->list
[i
].name
);
400 free(ref_list
->list
[i
].dest
);
402 free(ref_list
->list
);
405 static int ref_cmp(const void *r1
, const void *r2
)
407 struct ref_item
*c1
= (struct ref_item
*)(r1
);
408 struct ref_item
*c2
= (struct ref_item
*)(r2
);
410 if (c1
->kind
!= c2
->kind
)
411 return c1
->kind
- c2
->kind
;
412 return strcmp(c1
->name
, c2
->name
);
415 static void fill_tracking_info(struct strbuf
*stat
, const char *branch_name
,
416 int show_upstream_ref
)
420 struct branch
*branch
= branch_get(branch_name
);
422 if (!stat_tracking_info(branch
, &ours
, &theirs
)) {
423 if (branch
&& branch
->merge
&& branch
->merge
[0]->dst
&&
425 strbuf_addf(stat
, "[%s] ",
426 shorten_unambiguous_ref(branch
->merge
[0]->dst
, 0));
430 if (show_upstream_ref
)
431 ref
= shorten_unambiguous_ref(branch
->merge
[0]->dst
, 0);
434 strbuf_addf(stat
, _("[%s: behind %d]"), ref
, theirs
);
436 strbuf_addf(stat
, _("[behind %d]"), theirs
);
438 } else if (!theirs
) {
440 strbuf_addf(stat
, _("[%s: ahead %d]"), ref
, ours
);
442 strbuf_addf(stat
, _("[ahead %d]"), ours
);
445 strbuf_addf(stat
, _("[%s: ahead %d, behind %d]"),
448 strbuf_addf(stat
, _("[ahead %d, behind %d]"),
451 strbuf_addch(stat
, ' ');
455 static int matches_merge_filter(struct commit
*commit
)
459 if (merge_filter
== NO_FILTER
)
462 is_merged
= !!(commit
->object
.flags
& UNINTERESTING
);
463 return (is_merged
== (merge_filter
== SHOW_MERGED
));
466 static void add_verbose_info(struct strbuf
*out
, struct ref_item
*item
,
467 int verbose
, int abbrev
)
469 struct strbuf subject
= STRBUF_INIT
, stat
= STRBUF_INIT
;
470 const char *sub
= " **** invalid ref ****";
471 struct commit
*commit
= item
->commit
;
473 if (commit
&& !parse_commit(commit
)) {
474 pp_commit_easy(CMIT_FMT_ONELINE
, commit
, &subject
);
478 if (item
->kind
== REF_LOCAL_BRANCH
)
479 fill_tracking_info(&stat
, item
->name
, verbose
> 1);
481 strbuf_addf(out
, " %s %s%s",
482 find_unique_abbrev(item
->commit
->object
.sha1
, abbrev
),
484 strbuf_release(&stat
);
485 strbuf_release(&subject
);
488 static void print_ref_item(struct ref_item
*item
, int maxwidth
, int verbose
,
489 int abbrev
, int current
, char *prefix
)
493 struct commit
*commit
= item
->commit
;
494 struct strbuf out
= STRBUF_INIT
, name
= STRBUF_INIT
;
496 if (!matches_merge_filter(commit
))
499 switch (item
->kind
) {
500 case REF_LOCAL_BRANCH
:
501 color
= BRANCH_COLOR_LOCAL
;
503 case REF_REMOTE_BRANCH
:
504 color
= BRANCH_COLOR_REMOTE
;
507 color
= BRANCH_COLOR_PLAIN
;
514 color
= BRANCH_COLOR_CURRENT
;
517 strbuf_addf(&name
, "%s%s", prefix
, item
->name
);
519 int utf8_compensation
= strlen(name
.buf
) - utf8_strwidth(name
.buf
);
520 strbuf_addf(&out
, "%c %s%-*s%s", c
, branch_get_color(color
),
521 maxwidth
+ utf8_compensation
, name
.buf
,
522 branch_get_color(BRANCH_COLOR_RESET
));
524 strbuf_addf(&out
, "%c %s%s%s", c
, branch_get_color(color
),
525 name
.buf
, branch_get_color(BRANCH_COLOR_RESET
));
528 strbuf_addf(&out
, " -> %s", item
->dest
);
530 /* " f7c0c00 [ahead 58, behind 197] vcs-svn: drop obj_pool.h" */
531 add_verbose_info(&out
, item
, verbose
, abbrev
);
532 if (column_active(colopts
)) {
533 assert(!verbose
&& "--column and --verbose are incompatible");
534 string_list_append(&output
, out
.buf
);
536 printf("%s\n", out
.buf
);
538 strbuf_release(&name
);
539 strbuf_release(&out
);
542 static int calc_maxwidth(struct ref_list
*refs
)
545 for (i
= 0; i
< refs
->index
; i
++) {
546 if (!matches_merge_filter(refs
->list
[i
].commit
))
548 if (refs
->list
[i
].width
> w
)
549 w
= refs
->list
[i
].width
;
554 static char *get_head_description(void)
556 struct strbuf desc
= STRBUF_INIT
;
557 struct wt_status_state state
;
558 memset(&state
, 0, sizeof(state
));
559 wt_status_get_state(&state
, 1);
560 if (state
.rebase_in_progress
||
561 state
.rebase_interactive_in_progress
)
562 strbuf_addf(&desc
, _("(no branch, rebasing %s)"),
564 else if (state
.bisect_in_progress
)
565 strbuf_addf(&desc
, _("(no branch, bisect started on %s)"),
567 else if (state
.detached_from
)
568 strbuf_addf(&desc
, _("(detached from %s)"),
569 state
.detached_from
);
571 strbuf_addstr(&desc
, _("(no branch)"));
574 free(state
.detached_from
);
575 return strbuf_detach(&desc
, NULL
);
578 static void show_detached(struct ref_list
*ref_list
)
580 struct commit
*head_commit
= lookup_commit_reference_gently(head_sha1
, 1);
582 if (head_commit
&& is_descendant_of(head_commit
, ref_list
->with_commit
)) {
583 struct ref_item item
;
584 item
.name
= get_head_description();
585 item
.width
= utf8_strwidth(item
.name
);
586 item
.kind
= REF_LOCAL_BRANCH
;
588 item
.commit
= head_commit
;
589 if (item
.width
> ref_list
->maxwidth
)
590 ref_list
->maxwidth
= item
.width
;
591 print_ref_item(&item
, ref_list
->maxwidth
, ref_list
->verbose
, ref_list
->abbrev
, 1, "");
596 static int print_ref_list(int kinds
, int detached
, int verbose
, int abbrev
, struct commit_list
*with_commit
, const char **pattern
)
599 struct append_ref_cb cb
;
600 struct ref_list ref_list
;
602 memset(&ref_list
, 0, sizeof(ref_list
));
603 ref_list
.kinds
= kinds
;
604 ref_list
.verbose
= verbose
;
605 ref_list
.abbrev
= abbrev
;
606 ref_list
.with_commit
= with_commit
;
607 if (merge_filter
!= NO_FILTER
)
608 init_revisions(&ref_list
.revs
, NULL
);
609 cb
.ref_list
= &ref_list
;
610 cb
.pattern
= pattern
;
612 for_each_rawref(append_ref
, &cb
);
613 if (merge_filter
!= NO_FILTER
) {
614 struct commit
*filter
;
615 filter
= lookup_commit_reference_gently(merge_filter_ref
, 0);
617 die("object '%s' does not point to a commit",
618 sha1_to_hex(merge_filter_ref
));
620 filter
->object
.flags
|= UNINTERESTING
;
621 add_pending_object(&ref_list
.revs
,
622 (struct object
*) filter
, "");
623 ref_list
.revs
.limited
= 1;
624 prepare_revision_walk(&ref_list
.revs
);
626 ref_list
.maxwidth
= calc_maxwidth(&ref_list
);
629 qsort(ref_list
.list
, ref_list
.index
, sizeof(struct ref_item
), ref_cmp
);
631 detached
= (detached
&& (kinds
& REF_LOCAL_BRANCH
));
632 if (detached
&& match_patterns(pattern
, "HEAD"))
633 show_detached(&ref_list
);
635 for (i
= 0; i
< ref_list
.index
; i
++) {
636 int current
= !detached
&&
637 (ref_list
.list
[i
].kind
== REF_LOCAL_BRANCH
) &&
638 !strcmp(ref_list
.list
[i
].name
, head
);
639 char *prefix
= (kinds
!= REF_REMOTE_BRANCH
&&
640 ref_list
.list
[i
].kind
== REF_REMOTE_BRANCH
)
642 print_ref_item(&ref_list
.list
[i
], ref_list
.maxwidth
, verbose
,
643 abbrev
, current
, prefix
);
646 free_ref_list(&ref_list
);
649 error(_("some refs could not be read"));
654 static void rename_branch(const char *oldname
, const char *newname
, int force
)
656 struct strbuf oldref
= STRBUF_INIT
, newref
= STRBUF_INIT
, logmsg
= STRBUF_INIT
;
657 struct strbuf oldsection
= STRBUF_INIT
, newsection
= STRBUF_INIT
;
662 die(_("cannot rename the current branch while not on any."));
664 if (strbuf_check_branch_ref(&oldref
, oldname
)) {
666 * Bad name --- this could be an attempt to rename a
667 * ref that we used to allow to be created by accident.
669 if (ref_exists(oldref
.buf
))
672 die(_("Invalid branch name: '%s'"), oldname
);
676 * A command like "git branch -M currentbranch currentbranch" cannot
677 * cause the worktree to become inconsistent with HEAD, so allow it.
679 clobber_head_ok
= !strcmp(oldname
, newname
);
681 validate_new_branchname(newname
, &newref
, force
, clobber_head_ok
);
683 strbuf_addf(&logmsg
, "Branch: renamed %s to %s",
684 oldref
.buf
, newref
.buf
);
686 if (rename_ref(oldref
.buf
, newref
.buf
, logmsg
.buf
))
687 die(_("Branch rename failed"));
688 strbuf_release(&logmsg
);
691 warning(_("Renamed a misnamed branch '%s' away"), oldref
.buf
+ 11);
693 /* no need to pass logmsg here as HEAD didn't really move */
694 if (!strcmp(oldname
, head
) && create_symref("HEAD", newref
.buf
, NULL
))
695 die(_("Branch renamed to %s, but HEAD is not updated!"), newname
);
697 strbuf_addf(&oldsection
, "branch.%s", oldref
.buf
+ 11);
698 strbuf_release(&oldref
);
699 strbuf_addf(&newsection
, "branch.%s", newref
.buf
+ 11);
700 strbuf_release(&newref
);
701 if (git_config_rename_section(oldsection
.buf
, newsection
.buf
) < 0)
702 die(_("Branch is renamed, but update of config-file failed"));
703 strbuf_release(&oldsection
);
704 strbuf_release(&newsection
);
707 static int opt_parse_merge_filter(const struct option
*opt
, const char *arg
, int unset
)
709 merge_filter
= ((opt
->long_name
[0] == 'n')
713 merge_filter
= SHOW_NOT_MERGED
; /* b/c for --no-merged */
716 if (get_sha1(arg
, merge_filter_ref
))
717 die(_("malformed object name %s"), arg
);
721 static const char edit_description
[] = "BRANCH_DESCRIPTION";
723 static int edit_branch_description(const char *branch_name
)
727 struct strbuf buf
= STRBUF_INIT
;
728 struct strbuf name
= STRBUF_INIT
;
730 read_branch_desc(&buf
, branch_name
);
731 if (!buf
.len
|| buf
.buf
[buf
.len
-1] != '\n')
732 strbuf_addch(&buf
, '\n');
734 "# Please edit the description for the branch\n"
736 "# Lines starting with '#' will be stripped.\n",
738 fp
= fopen(git_path(edit_description
), "w");
739 if ((fwrite(buf
.buf
, 1, buf
.len
, fp
) < buf
.len
) || fclose(fp
)) {
740 strbuf_release(&buf
);
741 return error(_("could not write branch description template: %s"),
745 if (launch_editor(git_path(edit_description
), &buf
, NULL
)) {
746 strbuf_release(&buf
);
751 strbuf_addf(&name
, "branch.%s.description", branch_name
);
752 status
= git_config_set(name
.buf
, buf
.len
? buf
.buf
: NULL
);
753 strbuf_release(&name
);
754 strbuf_release(&buf
);
759 int cmd_branch(int argc
, const char **argv
, const char *prefix
)
761 int delete = 0, rename
= 0, force_create
= 0, list
= 0;
762 int verbose
= 0, abbrev
= -1, detached
= 0;
763 int reflog
= 0, edit_description
= 0;
764 int quiet
= 0, unset_upstream
= 0;
765 const char *new_upstream
= NULL
;
766 enum branch_track track
;
767 int kinds
= REF_LOCAL_BRANCH
;
768 struct commit_list
*with_commit
= NULL
;
770 struct option options
[] = {
771 OPT_GROUP(N_("Generic options")),
772 OPT__VERBOSE(&verbose
,
773 N_("show hash and subject, give twice for upstream branch")),
774 OPT__QUIET(&quiet
, N_("suppress informational messages")),
775 OPT_SET_INT('t', "track", &track
, N_("set up tracking mode (see git-pull(1))"),
776 BRANCH_TRACK_EXPLICIT
),
777 OPT_SET_INT( 0, "set-upstream", &track
, N_("change upstream info"),
778 BRANCH_TRACK_OVERRIDE
),
779 OPT_STRING('u', "set-upstream-to", &new_upstream
, "upstream", "change the upstream info"),
780 OPT_BOOLEAN(0, "unset-upstream", &unset_upstream
, "Unset the upstream info"),
781 OPT__COLOR(&branch_use_color
, N_("use colored output")),
782 OPT_SET_INT('r', "remotes", &kinds
, N_("act on remote-tracking branches"),
785 OPTION_CALLBACK
, 0, "contains", &with_commit
, N_("commit"),
786 N_("print only branches that contain the commit"),
787 PARSE_OPT_LASTARG_DEFAULT
,
788 parse_opt_with_commit
, (intptr_t)"HEAD",
791 OPTION_CALLBACK
, 0, "with", &with_commit
, N_("commit"),
792 N_("print only branches that contain the commit"),
793 PARSE_OPT_HIDDEN
| PARSE_OPT_LASTARG_DEFAULT
,
794 parse_opt_with_commit
, (intptr_t) "HEAD",
796 OPT__ABBREV(&abbrev
),
798 OPT_GROUP(N_("Specific git-branch actions:")),
799 OPT_SET_INT('a', "all", &kinds
, N_("list both remote-tracking and local branches"),
800 REF_REMOTE_BRANCH
| REF_LOCAL_BRANCH
),
801 OPT_BIT('d', "delete", &delete, N_("delete fully merged branch"), 1),
802 OPT_BIT('D', NULL
, &delete, N_("delete branch (even if not merged)"), 2),
803 OPT_BIT('m', "move", &rename
, N_("move/rename a branch and its reflog"), 1),
804 OPT_BIT('M', NULL
, &rename
, N_("move/rename a branch, even if target exists"), 2),
805 OPT_BOOLEAN(0, "list", &list
, N_("list branch names")),
806 OPT_BOOLEAN('l', "create-reflog", &reflog
, N_("create the branch's reflog")),
807 OPT_BOOLEAN(0, "edit-description", &edit_description
,
808 N_("edit the description for the branch")),
809 OPT__FORCE(&force_create
, N_("force creation (when already exists)")),
811 OPTION_CALLBACK
, 0, "no-merged", &merge_filter_ref
,
812 N_("commit"), N_("print only not merged branches"),
813 PARSE_OPT_LASTARG_DEFAULT
| PARSE_OPT_NONEG
,
814 opt_parse_merge_filter
, (intptr_t) "HEAD",
817 OPTION_CALLBACK
, 0, "merged", &merge_filter_ref
,
818 N_("commit"), N_("print only merged branches"),
819 PARSE_OPT_LASTARG_DEFAULT
| PARSE_OPT_NONEG
,
820 opt_parse_merge_filter
, (intptr_t) "HEAD",
822 OPT_COLUMN(0, "column", &colopts
, N_("list branches in columns")),
826 if (argc
== 2 && !strcmp(argv
[1], "-h"))
827 usage_with_options(builtin_branch_usage
, options
);
829 git_config(git_branch_config
, NULL
);
831 track
= git_branch_track
;
833 head
= resolve_refdup("HEAD", head_sha1
, 0, NULL
);
835 die(_("Failed to resolve HEAD as a valid ref."));
836 if (!strcmp(head
, "HEAD")) {
839 if (prefixcmp(head
, "refs/heads/"))
840 die(_("HEAD not found below refs/heads!"));
843 hashcpy(merge_filter_ref
, head_sha1
);
846 argc
= parse_options(argc
, argv
, prefix
, options
, builtin_branch_usage
,
849 if (!delete && !rename
&& !edit_description
&& !new_upstream
&& !unset_upstream
&& argc
== 0)
852 if (!!delete + !!rename
+ !!force_create
+ !!list
+ !!new_upstream
+ !!unset_upstream
> 1)
853 usage_with_options(builtin_branch_usage
, options
);
856 abbrev
= DEFAULT_ABBREV
;
857 finalize_colopts(&colopts
, -1);
859 if (explicitly_enable_column(colopts
))
860 die(_("--column and --verbose are incompatible"));
865 return delete_branches(argc
, argv
, delete > 1, kinds
, quiet
);
867 int ret
= print_ref_list(kinds
, detached
, verbose
, abbrev
,
869 print_columns(&output
, colopts
, NULL
);
870 string_list_clear(&output
, 0);
873 else if (edit_description
) {
874 const char *branch_name
;
875 struct strbuf branch_ref
= STRBUF_INIT
;
879 die("Cannot give description to detached HEAD");
881 } else if (argc
== 1)
882 branch_name
= argv
[0];
884 usage_with_options(builtin_branch_usage
, options
);
886 strbuf_addf(&branch_ref
, "refs/heads/%s", branch_name
);
887 if (!ref_exists(branch_ref
.buf
)) {
888 strbuf_release(&branch_ref
);
891 return error("No commit on branch '%s' yet.",
894 return error("No such branch '%s'.", branch_name
);
896 strbuf_release(&branch_ref
);
898 if (edit_branch_description(branch_name
))
902 rename_branch(head
, argv
[0], rename
> 1);
904 rename_branch(argv
[0], argv
[1], rename
> 1);
906 usage_with_options(builtin_branch_usage
, options
);
907 } else if (new_upstream
) {
908 struct branch
*branch
= branch_get(argv
[0]);
910 if (!ref_exists(branch
->refname
))
911 die(_("branch '%s' does not exist"), branch
->name
);
914 * create_branch takes care of setting up the tracking
915 * info and making sure new_upstream is correct
917 create_branch(head
, branch
->name
, new_upstream
, 0, 0, 0, quiet
, BRANCH_TRACK_OVERRIDE
);
918 } else if (unset_upstream
) {
919 struct branch
*branch
= branch_get(argv
[0]);
920 struct strbuf buf
= STRBUF_INIT
;
922 if (!branch_has_merge_config(branch
)) {
923 die(_("Branch '%s' has no upstream information"), branch
->name
);
926 strbuf_addf(&buf
, "branch.%s.remote", branch
->name
);
927 git_config_set_multivar(buf
.buf
, NULL
, NULL
, 1);
929 strbuf_addf(&buf
, "branch.%s.merge", branch
->name
);
930 git_config_set_multivar(buf
.buf
, NULL
, NULL
, 1);
931 strbuf_release(&buf
);
932 } else if (argc
> 0 && argc
<= 2) {
933 struct branch
*branch
= branch_get(argv
[0]);
934 int branch_existed
= 0, remote_tracking
= 0;
935 struct strbuf buf
= STRBUF_INIT
;
937 if (kinds
!= REF_LOCAL_BRANCH
)
938 die(_("-a and -r options to 'git branch' do not make sense with a branch name"));
940 if (track
== BRANCH_TRACK_OVERRIDE
)
941 fprintf(stderr
, _("The --set-upstream flag is deprecated and will be removed. Consider using --track or --set-upstream-to\n"));
943 strbuf_addf(&buf
, "refs/remotes/%s", branch
->name
);
944 remote_tracking
= ref_exists(buf
.buf
);
945 strbuf_release(&buf
);
947 branch_existed
= ref_exists(branch
->refname
);
948 create_branch(head
, argv
[0], (argc
== 2) ? argv
[1] : head
,
949 force_create
, reflog
, 0, quiet
, track
);
952 * We only show the instructions if the user gave us
953 * one branch which doesn't exist locally, but is the
954 * name of a remote-tracking branch.
956 if (argc
== 1 && track
== BRANCH_TRACK_OVERRIDE
&&
957 !branch_existed
&& remote_tracking
) {
958 fprintf(stderr
, _("\nIf you wanted to make '%s' track '%s', do this:\n\n"), head
, branch
->name
);
959 fprintf(stderr
, _(" git branch -d %s\n"), branch
->name
);
960 fprintf(stderr
, _(" git branch --set-upstream-to %s\n"), branch
->name
);
964 usage_with_options(builtin_branch_usage
, options
);