4 * Copyright (c) 2006 Kristian Høgsberg <krh@redhat.com>
5 * Based on git-branch.sh by Junio C Hamano.
15 #include "parse-options.h"
19 #include "string-list.h"
22 #include "wt-status.h"
23 #include "ref-filter.h"
26 #include "commit-reach.h"
28 static const char * const builtin_branch_usage
[] = {
29 N_("git branch [<options>] [-r | -a] [--merged] [--no-merged]"),
30 N_("git branch [<options>] [-l] [-f] <branch-name> [<start-point>]"),
31 N_("git branch [<options>] [-r] (-d | -D) <branch-name>..."),
32 N_("git branch [<options>] (-m | -M) [<old-branch>] <new-branch>"),
33 N_("git branch [<options>] (-c | -C) [<old-branch>] <new-branch>"),
34 N_("git branch [<options>] [-r | -a] [--points-at]"),
35 N_("git branch [<options>] [-r | -a] [--format]"),
39 static const char *head
;
40 static struct object_id head_oid
;
42 static int branch_use_color
= -1;
43 static char branch_colors
[][COLOR_MAXLEN
] = {
45 GIT_COLOR_NORMAL
, /* PLAIN */
46 GIT_COLOR_RED
, /* REMOTE */
47 GIT_COLOR_NORMAL
, /* LOCAL */
48 GIT_COLOR_GREEN
, /* CURRENT */
49 GIT_COLOR_BLUE
, /* UPSTREAM */
50 GIT_COLOR_CYAN
, /* WORKTREE */
53 BRANCH_COLOR_RESET
= 0,
54 BRANCH_COLOR_PLAIN
= 1,
55 BRANCH_COLOR_REMOTE
= 2,
56 BRANCH_COLOR_LOCAL
= 3,
57 BRANCH_COLOR_CURRENT
= 4,
58 BRANCH_COLOR_UPSTREAM
= 5,
59 BRANCH_COLOR_WORKTREE
= 6
62 static const char *color_branch_slots
[] = {
63 [BRANCH_COLOR_RESET
] = "reset",
64 [BRANCH_COLOR_PLAIN
] = "plain",
65 [BRANCH_COLOR_REMOTE
] = "remote",
66 [BRANCH_COLOR_LOCAL
] = "local",
67 [BRANCH_COLOR_CURRENT
] = "current",
68 [BRANCH_COLOR_UPSTREAM
] = "upstream",
69 [BRANCH_COLOR_WORKTREE
] = "worktree",
72 static struct string_list output
= STRING_LIST_INIT_DUP
;
73 static unsigned int colopts
;
75 define_list_config_array(color_branch_slots
);
77 static int git_branch_config(const char *var
, const char *value
, void *cb
)
79 const char *slot_name
;
81 if (!strcmp(var
, "branch.sort")) {
83 return config_error_nonbool(var
);
84 string_list_append(cb
, value
);
88 if (starts_with(var
, "column."))
89 return git_column_config(var
, value
, "branch", &colopts
);
90 if (!strcmp(var
, "color.branch")) {
91 branch_use_color
= git_config_colorbool(var
, value
);
94 if (skip_prefix(var
, "color.branch.", &slot_name
)) {
95 int slot
= LOOKUP_CONFIG(color_branch_slots
, slot_name
);
99 return config_error_nonbool(var
);
100 return color_parse(value
, branch_colors
[slot
]);
102 return git_color_default_config(var
, value
, cb
);
105 static const char *branch_get_color(enum color_branch ix
)
107 if (want_color(branch_use_color
))
108 return branch_colors
[ix
];
112 static int branch_merged(int kind
, const char *name
,
113 struct commit
*rev
, struct commit
*head_rev
)
116 * This checks whether the merge bases of branch and HEAD (or
117 * the other branch this branch builds upon) contains the
118 * branch, which means that the branch has already been merged
119 * safely to HEAD (or the other branch).
121 struct commit
*reference_rev
= NULL
;
122 const char *reference_name
= NULL
;
123 void *reference_name_to_free
= NULL
;
126 if (kind
== FILTER_REFS_BRANCHES
) {
127 struct branch
*branch
= branch_get(name
);
128 const char *upstream
= branch_get_upstream(branch
, NULL
);
129 struct object_id oid
;
132 (reference_name
= reference_name_to_free
=
133 resolve_refdup(upstream
, RESOLVE_REF_READING
,
134 &oid
, NULL
)) != NULL
)
135 reference_rev
= lookup_commit_reference(the_repository
,
139 reference_rev
= head_rev
;
141 merged
= in_merge_bases(rev
, reference_rev
);
144 * After the safety valve is fully redefined to "check with
145 * upstream, if any, otherwise with HEAD", we should just
146 * return the result of the in_merge_bases() above without
147 * any of the following code, but during the transition period,
148 * a gentle reminder is in order.
150 if ((head_rev
!= reference_rev
) &&
151 in_merge_bases(rev
, head_rev
) != merged
) {
153 warning(_("deleting branch '%s' that has been merged to\n"
154 " '%s', but not yet merged to HEAD."),
155 name
, reference_name
);
157 warning(_("not deleting branch '%s' that is not yet merged to\n"
158 " '%s', even though it is merged to HEAD."),
159 name
, reference_name
);
161 free(reference_name_to_free
);
165 static int check_branch_commit(const char *branchname
, const char *refname
,
166 const struct object_id
*oid
, struct commit
*head_rev
,
167 int kinds
, int force
)
169 struct commit
*rev
= lookup_commit_reference(the_repository
, oid
);
170 if (!force
&& !rev
) {
171 error(_("Couldn't look up commit object for '%s'"), refname
);
174 if (!force
&& !branch_merged(kinds
, branchname
, rev
, head_rev
)) {
175 error(_("The branch '%s' is not fully merged.\n"
176 "If you are sure you want to delete it, "
177 "run 'git branch -D %s'."), branchname
, branchname
);
183 static void delete_branch_config(const char *branchname
)
185 struct strbuf buf
= STRBUF_INIT
;
186 strbuf_addf(&buf
, "branch.%s", branchname
);
187 if (git_config_rename_section(buf
.buf
, NULL
) < 0)
188 warning(_("Update of config-file failed"));
189 strbuf_release(&buf
);
192 static int delete_branches(int argc
, const char **argv
, int force
, int kinds
,
195 struct commit
*head_rev
= NULL
;
196 struct object_id oid
;
201 int remote_branch
= 0;
202 struct strbuf bname
= STRBUF_INIT
;
203 unsigned allowed_interpret
;
204 struct string_list refs_to_delete
= STRING_LIST_INIT_DUP
;
205 struct string_list_item
*item
;
209 case FILTER_REFS_REMOTES
:
210 fmt
= "refs/remotes/%s";
211 /* For subsequent UI messages */
213 allowed_interpret
= INTERPRET_BRANCH_REMOTE
;
217 case FILTER_REFS_BRANCHES
:
218 fmt
= "refs/heads/%s";
219 allowed_interpret
= INTERPRET_BRANCH_LOCAL
;
222 die(_("cannot use -a with -d"));
224 branch_name_pos
= strcspn(fmt
, "%");
227 head_rev
= lookup_commit_reference(the_repository
, &head_oid
);
229 die(_("Couldn't look up commit object for HEAD"));
231 for (i
= 0; i
< argc
; i
++, strbuf_reset(&bname
)) {
235 strbuf_branchname(&bname
, argv
[i
], allowed_interpret
);
237 name
= mkpathdup(fmt
, bname
.buf
);
239 if (kinds
== FILTER_REFS_BRANCHES
) {
240 const struct worktree
*wt
=
241 find_shared_symref("HEAD", name
);
243 error(_("Cannot delete branch '%s' "
244 "checked out at '%s'"),
245 bname
.buf
, wt
->path
);
251 target
= resolve_refdup(name
,
253 | RESOLVE_REF_NO_RECURSE
254 | RESOLVE_REF_ALLOW_BAD_NAME
,
258 ? _("remote-tracking branch '%s' not found.")
259 : _("branch '%s' not found."), bname
.buf
);
264 if (!(flags
& (REF_ISSYMREF
|REF_ISBROKEN
)) &&
265 check_branch_commit(bname
.buf
, name
, &oid
, head_rev
, kinds
,
271 item
= string_list_append(&refs_to_delete
, name
);
272 item
->util
= xstrdup((flags
& REF_ISBROKEN
) ? "broken"
273 : (flags
& REF_ISSYMREF
) ? target
274 : find_unique_abbrev(&oid
, DEFAULT_ABBREV
));
280 if (delete_refs(NULL
, &refs_to_delete
, REF_NO_DEREF
))
283 for_each_string_list_item(item
, &refs_to_delete
) {
284 char *describe_ref
= item
->util
;
285 char *name
= item
->string
;
286 if (!ref_exists(name
)) {
287 char *refname
= name
+ branch_name_pos
;
290 ? _("Deleted remote-tracking branch %s (was %s).\n")
291 : _("Deleted branch %s (was %s).\n"),
292 name
+ branch_name_pos
, describe_ref
);
294 delete_branch_config(refname
);
298 string_list_clear(&refs_to_delete
, 0);
301 strbuf_release(&bname
);
306 static int calc_maxwidth(struct ref_array
*refs
, int remote_bonus
)
309 for (i
= 0; i
< refs
->nr
; i
++) {
310 struct ref_array_item
*it
= refs
->items
[i
];
311 const char *desc
= it
->refname
;
314 skip_prefix(it
->refname
, "refs/heads/", &desc
);
315 skip_prefix(it
->refname
, "refs/remotes/", &desc
);
316 if (it
->kind
== FILTER_REFS_DETACHED_HEAD
) {
317 char *head_desc
= get_head_description();
318 w
= utf8_strwidth(head_desc
);
321 w
= utf8_strwidth(desc
);
323 if (it
->kind
== FILTER_REFS_REMOTES
)
331 static const char *quote_literal_for_format(const char *s
)
333 static struct strbuf buf
= STRBUF_INIT
;
337 const char *ep
= strchrnul(s
, '%');
339 strbuf_add(&buf
, s
, ep
- s
);
341 strbuf_addstr(&buf
, "%%");
350 static char *build_format(struct ref_filter
*filter
, int maxwidth
, const char *remote_prefix
)
352 struct strbuf fmt
= STRBUF_INIT
;
353 struct strbuf local
= STRBUF_INIT
;
354 struct strbuf remote
= STRBUF_INIT
;
356 strbuf_addf(&local
, "%%(if)%%(HEAD)%%(then)* %s%%(else)%%(if)%%(worktreepath)%%(then)+ %s%%(else) %s%%(end)%%(end)",
357 branch_get_color(BRANCH_COLOR_CURRENT
),
358 branch_get_color(BRANCH_COLOR_WORKTREE
),
359 branch_get_color(BRANCH_COLOR_LOCAL
));
360 strbuf_addf(&remote
, " %s",
361 branch_get_color(BRANCH_COLOR_REMOTE
));
363 if (filter
->verbose
) {
364 struct strbuf obname
= STRBUF_INIT
;
366 if (filter
->abbrev
< 0)
367 strbuf_addf(&obname
, "%%(objectname:short)");
368 else if (!filter
->abbrev
)
369 strbuf_addf(&obname
, "%%(objectname)");
371 strbuf_addf(&obname
, "%%(objectname:short=%d)", filter
->abbrev
);
373 strbuf_addf(&local
, "%%(align:%d,left)%%(refname:lstrip=2)%%(end)", maxwidth
);
374 strbuf_addstr(&local
, branch_get_color(BRANCH_COLOR_RESET
));
375 strbuf_addf(&local
, " %s ", obname
.buf
);
377 if (filter
->verbose
> 1)
379 strbuf_addf(&local
, "%%(if:notequals=*)%%(HEAD)%%(then)%%(if)%%(worktreepath)%%(then)(%s%%(worktreepath)%s) %%(end)%%(end)",
380 branch_get_color(BRANCH_COLOR_WORKTREE
), branch_get_color(BRANCH_COLOR_RESET
));
381 strbuf_addf(&local
, "%%(if)%%(upstream)%%(then)[%s%%(upstream:short)%s%%(if)%%(upstream:track)"
382 "%%(then): %%(upstream:track,nobracket)%%(end)] %%(end)%%(contents:subject)",
383 branch_get_color(BRANCH_COLOR_UPSTREAM
), branch_get_color(BRANCH_COLOR_RESET
));
386 strbuf_addf(&local
, "%%(if)%%(upstream:track)%%(then)%%(upstream:track) %%(end)%%(contents:subject)");
388 strbuf_addf(&remote
, "%%(align:%d,left)%s%%(refname:lstrip=2)%%(end)%s"
389 "%%(if)%%(symref)%%(then) -> %%(symref:short)"
390 "%%(else) %s %%(contents:subject)%%(end)",
391 maxwidth
, quote_literal_for_format(remote_prefix
),
392 branch_get_color(BRANCH_COLOR_RESET
), obname
.buf
);
393 strbuf_release(&obname
);
395 strbuf_addf(&local
, "%%(refname:lstrip=2)%s%%(if)%%(symref)%%(then) -> %%(symref:short)%%(end)",
396 branch_get_color(BRANCH_COLOR_RESET
));
397 strbuf_addf(&remote
, "%s%%(refname:lstrip=2)%s%%(if)%%(symref)%%(then) -> %%(symref:short)%%(end)",
398 quote_literal_for_format(remote_prefix
),
399 branch_get_color(BRANCH_COLOR_RESET
));
402 strbuf_addf(&fmt
, "%%(if:notequals=refs/remotes)%%(refname:rstrip=-2)%%(then)%s%%(else)%s%%(end)", local
.buf
, remote
.buf
);
404 strbuf_release(&local
);
405 strbuf_release(&remote
);
406 return strbuf_detach(&fmt
, NULL
);
409 static void print_ref_list(struct ref_filter
*filter
, struct ref_sorting
*sorting
,
410 struct ref_format
*format
, struct string_list
*output
)
413 struct ref_array array
;
414 struct strbuf out
= STRBUF_INIT
;
415 struct strbuf err
= STRBUF_INIT
;
417 const char *remote_prefix
= "";
418 char *to_free
= NULL
;
421 * If we are listing more than just remote branches,
422 * then remote branches will have a "remotes/" prefix.
423 * We need to account for this in the width.
425 if (filter
->kind
!= FILTER_REFS_REMOTES
)
426 remote_prefix
= "remotes/";
428 memset(&array
, 0, sizeof(array
));
430 filter_refs(&array
, filter
, filter
->kind
);
433 maxwidth
= calc_maxwidth(&array
, strlen(remote_prefix
));
436 format
->format
= to_free
= build_format(filter
, maxwidth
, remote_prefix
);
437 format
->use_color
= branch_use_color
;
439 if (verify_ref_format(format
))
440 die(_("unable to parse format string"));
442 ref_array_sort(sorting
, &array
);
444 for (i
= 0; i
< array
.nr
; i
++) {
447 if (format_ref_array_item(array
.items
[i
], format
, &out
, &err
))
449 if (column_active(colopts
)) {
450 assert(!filter
->verbose
&& "--column and --verbose are incompatible");
451 /* format to a string_list to let print_columns() do its job */
452 string_list_append(output
, out
.buf
);
454 fwrite(out
.buf
, 1, out
.len
, stdout
);
459 strbuf_release(&err
);
460 strbuf_release(&out
);
461 ref_array_clear(&array
);
465 static void print_current_branch_name(void)
468 const char *refname
= resolve_ref_unsafe("HEAD", 0, NULL
, &flags
);
469 const char *shortname
;
471 die(_("could not resolve HEAD"));
472 else if (!(flags
& REF_ISSYMREF
))
474 else if (skip_prefix(refname
, "refs/heads/", &shortname
))
477 die(_("HEAD (%s) points outside of refs/heads/"), refname
);
480 static void reject_rebase_or_bisect_branch(const char *target
)
482 struct worktree
**worktrees
= get_worktrees();
485 for (i
= 0; worktrees
[i
]; i
++) {
486 struct worktree
*wt
= worktrees
[i
];
488 if (!wt
->is_detached
)
491 if (is_worktree_being_rebased(wt
, target
))
492 die(_("Branch %s is being rebased at %s"),
495 if (is_worktree_being_bisected(wt
, target
))
496 die(_("Branch %s is being bisected at %s"),
500 free_worktrees(worktrees
);
503 static void copy_or_rename_branch(const char *oldname
, const char *newname
, int copy
, int force
)
505 struct strbuf oldref
= STRBUF_INIT
, newref
= STRBUF_INIT
, logmsg
= STRBUF_INIT
;
506 struct strbuf oldsection
= STRBUF_INIT
, newsection
= STRBUF_INIT
;
507 const char *interpreted_oldname
= NULL
;
508 const char *interpreted_newname
= NULL
;
513 die(_("cannot copy the current branch while not on any."));
515 die(_("cannot rename the current branch while not on any."));
518 if (strbuf_check_branch_ref(&oldref
, oldname
)) {
520 * Bad name --- this could be an attempt to rename a
521 * ref that we used to allow to be created by accident.
523 if (ref_exists(oldref
.buf
))
526 die(_("Invalid branch name: '%s'"), oldname
);
530 * A command like "git branch -M currentbranch currentbranch" cannot
531 * cause the worktree to become inconsistent with HEAD, so allow it.
533 if (!strcmp(oldname
, newname
))
534 validate_branchname(newname
, &newref
);
536 validate_new_branchname(newname
, &newref
, force
);
538 reject_rebase_or_bisect_branch(oldref
.buf
);
540 if (!skip_prefix(oldref
.buf
, "refs/heads/", &interpreted_oldname
) ||
541 !skip_prefix(newref
.buf
, "refs/heads/", &interpreted_newname
)) {
542 BUG("expected prefix missing for refs");
546 strbuf_addf(&logmsg
, "Branch: copied %s to %s",
547 oldref
.buf
, newref
.buf
);
549 strbuf_addf(&logmsg
, "Branch: renamed %s to %s",
550 oldref
.buf
, newref
.buf
);
553 (!head
|| strcmp(oldname
, head
) || !is_null_oid(&head_oid
)) &&
554 rename_ref(oldref
.buf
, newref
.buf
, logmsg
.buf
))
555 die(_("Branch rename failed"));
556 if (copy
&& copy_existing_ref(oldref
.buf
, newref
.buf
, logmsg
.buf
))
557 die(_("Branch copy failed"));
561 warning(_("Created a copy of a misnamed branch '%s'"),
562 interpreted_oldname
);
564 warning(_("Renamed a misnamed branch '%s' away"),
565 interpreted_oldname
);
569 replace_each_worktree_head_symref(oldref
.buf
, newref
.buf
, logmsg
.buf
))
570 die(_("Branch renamed to %s, but HEAD is not updated!"), newname
);
572 strbuf_release(&logmsg
);
574 strbuf_addf(&oldsection
, "branch.%s", interpreted_oldname
);
575 strbuf_release(&oldref
);
576 strbuf_addf(&newsection
, "branch.%s", interpreted_newname
);
577 strbuf_release(&newref
);
578 if (!copy
&& git_config_rename_section(oldsection
.buf
, newsection
.buf
) < 0)
579 die(_("Branch is renamed, but update of config-file failed"));
580 if (copy
&& strcmp(oldname
, newname
) && git_config_copy_section(oldsection
.buf
, newsection
.buf
) < 0)
581 die(_("Branch is copied, but update of config-file failed"));
582 strbuf_release(&oldsection
);
583 strbuf_release(&newsection
);
586 static GIT_PATH_FUNC(edit_description
, "EDIT_DESCRIPTION")
588 static int edit_branch_description(const char *branch_name
)
590 struct strbuf buf
= STRBUF_INIT
;
591 struct strbuf name
= STRBUF_INIT
;
593 read_branch_desc(&buf
, branch_name
);
594 if (!buf
.len
|| buf
.buf
[buf
.len
-1] != '\n')
595 strbuf_addch(&buf
, '\n');
596 strbuf_commented_addf(&buf
,
597 _("Please edit the description for the branch\n"
599 "Lines starting with '%c' will be stripped.\n"),
600 branch_name
, comment_line_char
);
601 write_file_buf(edit_description(), buf
.buf
, buf
.len
);
603 if (launch_editor(edit_description(), &buf
, NULL
)) {
604 strbuf_release(&buf
);
607 strbuf_stripspace(&buf
, 1);
609 strbuf_addf(&name
, "branch.%s.description", branch_name
);
610 git_config_set(name
.buf
, buf
.len
? buf
.buf
: NULL
);
611 strbuf_release(&name
);
612 strbuf_release(&buf
);
617 int cmd_branch(int argc
, const char **argv
, const char *prefix
)
619 int delete = 0, rename
= 0, copy
= 0, force
= 0, list
= 0;
620 int show_current
= 0;
621 int reflog
= 0, edit_description
= 0;
622 int quiet
= 0, unset_upstream
= 0;
623 const char *new_upstream
= NULL
;
624 enum branch_track track
;
625 struct ref_filter filter
;
627 static struct ref_sorting
*sorting
;
628 struct string_list sorting_options
= STRING_LIST_INIT_DUP
;
629 struct ref_format format
= REF_FORMAT_INIT
;
631 struct option options
[] = {
632 OPT_GROUP(N_("Generic options")),
633 OPT__VERBOSE(&filter
.verbose
,
634 N_("show hash and subject, give twice for upstream branch")),
635 OPT__QUIET(&quiet
, N_("suppress informational messages")),
636 OPT_SET_INT('t', "track", &track
, N_("set up tracking mode (see git-pull(1))"),
637 BRANCH_TRACK_EXPLICIT
),
638 OPT_SET_INT_F(0, "set-upstream", &track
, N_("do not use"),
639 BRANCH_TRACK_OVERRIDE
, PARSE_OPT_HIDDEN
),
640 OPT_STRING('u', "set-upstream-to", &new_upstream
, N_("upstream"), N_("change the upstream info")),
641 OPT_BOOL(0, "unset-upstream", &unset_upstream
, N_("unset the upstream info")),
642 OPT__COLOR(&branch_use_color
, N_("use colored output")),
643 OPT_SET_INT('r', "remotes", &filter
.kind
, N_("act on remote-tracking branches"),
644 FILTER_REFS_REMOTES
),
645 OPT_CONTAINS(&filter
.with_commit
, N_("print only branches that contain the commit")),
646 OPT_NO_CONTAINS(&filter
.no_commit
, N_("print only branches that don't contain the commit")),
647 OPT_WITH(&filter
.with_commit
, N_("print only branches that contain the commit")),
648 OPT_WITHOUT(&filter
.no_commit
, N_("print only branches that don't contain the commit")),
649 OPT__ABBREV(&filter
.abbrev
),
651 OPT_GROUP(N_("Specific git-branch actions:")),
652 OPT_SET_INT('a', "all", &filter
.kind
, N_("list both remote-tracking and local branches"),
653 FILTER_REFS_REMOTES
| FILTER_REFS_BRANCHES
),
654 OPT_BIT('d', "delete", &delete, N_("delete fully merged branch"), 1),
655 OPT_BIT('D', NULL
, &delete, N_("delete branch (even if not merged)"), 2),
656 OPT_BIT('m', "move", &rename
, N_("move/rename a branch and its reflog"), 1),
657 OPT_BIT('M', NULL
, &rename
, N_("move/rename a branch, even if target exists"), 2),
658 OPT_BIT('c', "copy", ©
, N_("copy a branch and its reflog"), 1),
659 OPT_BIT('C', NULL
, ©
, N_("copy a branch, even if target exists"), 2),
660 OPT_BOOL('l', "list", &list
, N_("list branch names")),
661 OPT_BOOL(0, "show-current", &show_current
, N_("show current branch name")),
662 OPT_BOOL(0, "create-reflog", &reflog
, N_("create the branch's reflog")),
663 OPT_BOOL(0, "edit-description", &edit_description
,
664 N_("edit the description for the branch")),
665 OPT__FORCE(&force
, N_("force creation, move/rename, deletion"), PARSE_OPT_NOCOMPLETE
),
666 OPT_MERGED(&filter
, N_("print only branches that are merged")),
667 OPT_NO_MERGED(&filter
, N_("print only branches that are not merged")),
668 OPT_COLUMN(0, "column", &colopts
, N_("list branches in columns")),
669 OPT_REF_SORT(&sorting_options
),
670 OPT_CALLBACK(0, "points-at", &filter
.points_at
, N_("object"),
671 N_("print only branches of the object"), parse_opt_object_name
),
672 OPT_BOOL('i', "ignore-case", &icase
, N_("sorting and filtering are case insensitive")),
673 OPT_STRING( 0 , "format", &format
.format
, N_("format"), N_("format to use for the output")),
677 setup_ref_filter_porcelain_msg();
679 memset(&filter
, 0, sizeof(filter
));
680 filter
.kind
= FILTER_REFS_BRANCHES
;
683 if (argc
== 2 && !strcmp(argv
[1], "-h"))
684 usage_with_options(builtin_branch_usage
, options
);
686 git_config(git_branch_config
, &sorting_options
);
688 track
= git_branch_track
;
690 head
= resolve_refdup("HEAD", 0, &head_oid
, NULL
);
692 die(_("Failed to resolve HEAD as a valid ref."));
693 if (!strcmp(head
, "HEAD"))
695 else if (!skip_prefix(head
, "refs/heads/", &head
))
696 die(_("HEAD not found below refs/heads!"));
698 argc
= parse_options(argc
, argv
, prefix
, options
, builtin_branch_usage
,
701 if (!delete && !rename
&& !copy
&& !edit_description
&& !new_upstream
&&
702 !show_current
&& !unset_upstream
&& argc
== 0)
705 if (filter
.with_commit
|| filter
.no_commit
||
706 filter
.reachable_from
|| filter
.unreachable_from
|| filter
.points_at
.nr
)
709 if (!!delete + !!rename
+ !!copy
+ !!new_upstream
+ !!show_current
+
710 list
+ edit_description
+ unset_upstream
> 1)
711 usage_with_options(builtin_branch_usage
, options
);
713 if (filter
.abbrev
== -1)
714 filter
.abbrev
= DEFAULT_ABBREV
;
715 filter
.ignore_case
= icase
;
717 finalize_colopts(&colopts
, -1);
718 if (filter
.verbose
) {
719 if (explicitly_enable_column(colopts
))
720 die(_("--column and --verbose are incompatible"));
731 setup_auto_pager("branch", 1);
735 die(_("branch name required"));
736 return delete_branches(argc
, argv
, delete > 1, filter
.kind
, quiet
);
737 } else if (show_current
) {
738 print_current_branch_name();
741 /* git branch --list also shows HEAD when it is detached */
742 if ((filter
.kind
& FILTER_REFS_BRANCHES
) && filter
.detached
)
743 filter
.kind
|= FILTER_REFS_DETACHED_HEAD
;
744 filter
.name_patterns
= argv
;
746 * If no sorting parameter is given then we default to sorting
747 * by 'refname'. This would give us an alphabetically sorted
748 * array with the 'HEAD' ref at the beginning followed by
749 * local branches 'refs/heads/...' and finally remote-tracking
750 * branches 'refs/remotes/...'.
752 sorting
= ref_sorting_options(&sorting_options
);
753 ref_sorting_set_sort_flags_all(sorting
, REF_SORTING_ICASE
, icase
);
754 ref_sorting_set_sort_flags_all(
755 sorting
, REF_SORTING_DETACHED_HEAD_FIRST
, 1);
756 print_ref_list(&filter
, sorting
, &format
, &output
);
757 print_columns(&output
, colopts
, NULL
);
758 string_list_clear(&output
, 0);
759 ref_sorting_release(sorting
);
761 } else if (edit_description
) {
762 const char *branch_name
;
763 struct strbuf branch_ref
= STRBUF_INIT
;
767 die(_("Cannot give description to detached HEAD"));
769 } else if (argc
== 1)
770 branch_name
= argv
[0];
772 die(_("cannot edit description of more than one branch"));
774 strbuf_addf(&branch_ref
, "refs/heads/%s", branch_name
);
775 if (!ref_exists(branch_ref
.buf
)) {
776 strbuf_release(&branch_ref
);
779 return error(_("No commit on branch '%s' yet."),
782 return error(_("No branch named '%s'."),
785 strbuf_release(&branch_ref
);
787 if (edit_branch_description(branch_name
))
791 die(_("branch name required"));
793 copy_or_rename_branch(head
, argv
[0], 1, copy
> 1);
795 copy_or_rename_branch(argv
[0], argv
[1], 1, copy
> 1);
797 die(_("too many branches for a copy operation"));
800 die(_("branch name required"));
802 copy_or_rename_branch(head
, argv
[0], 0, rename
> 1);
804 copy_or_rename_branch(argv
[0], argv
[1], 0, rename
> 1);
806 die(_("too many arguments for a rename operation"));
807 } else if (new_upstream
) {
808 struct branch
*branch
= branch_get(argv
[0]);
811 die(_("too many arguments to set new upstream"));
814 if (!argc
|| !strcmp(argv
[0], "HEAD"))
815 die(_("could not set upstream of HEAD to %s when "
816 "it does not point to any branch."),
818 die(_("no such branch '%s'"), argv
[0]);
821 if (!ref_exists(branch
->refname
))
822 die(_("branch '%s' does not exist"), branch
->name
);
825 * create_branch takes care of setting up the tracking
826 * info and making sure new_upstream is correct
828 create_branch(the_repository
, branch
->name
, new_upstream
,
829 0, 0, 0, quiet
, BRANCH_TRACK_OVERRIDE
);
830 } else if (unset_upstream
) {
831 struct branch
*branch
= branch_get(argv
[0]);
832 struct strbuf buf
= STRBUF_INIT
;
835 die(_("too many arguments to unset upstream"));
838 if (!argc
|| !strcmp(argv
[0], "HEAD"))
839 die(_("could not unset upstream of HEAD when "
840 "it does not point to any branch."));
841 die(_("no such branch '%s'"), argv
[0]);
844 if (!branch_has_merge_config(branch
))
845 die(_("Branch '%s' has no upstream information"), branch
->name
);
847 strbuf_addf(&buf
, "branch.%s.remote", branch
->name
);
848 git_config_set_multivar(buf
.buf
, NULL
, NULL
, CONFIG_FLAGS_MULTI_REPLACE
);
850 strbuf_addf(&buf
, "branch.%s.merge", branch
->name
);
851 git_config_set_multivar(buf
.buf
, NULL
, NULL
, CONFIG_FLAGS_MULTI_REPLACE
);
852 strbuf_release(&buf
);
853 } else if (argc
> 0 && argc
<= 2) {
854 if (filter
.kind
!= FILTER_REFS_BRANCHES
)
855 die(_("The -a, and -r, options to 'git branch' do not take a branch name.\n"
856 "Did you mean to use: -a|-r --list <pattern>?"));
858 if (track
== BRANCH_TRACK_OVERRIDE
)
859 die(_("the '--set-upstream' option is no longer supported. Please use '--track' or '--set-upstream-to' instead."));
861 create_branch(the_repository
,
862 argv
[0], (argc
== 2) ? argv
[1] : head
,
863 force
, 0, reflog
, quiet
, track
);
866 usage_with_options(builtin_branch_usage
, options
);