]> git.ipfire.org Git - thirdparty/git.git/blame - builtin-branch.c
git-am: minor cleanups
[thirdparty/git.git] / builtin-branch.c
CommitLineData
c31820c2
LH
1/*
2 * Builtin "git branch"
3 *
d972cce0 4 * Copyright (c) 2006 Kristian Høgsberg <krh@redhat.com>
c31820c2
LH
5 * Based on git-branch.sh by Junio C Hamano.
6 */
7
8#include "cache.h"
85023577 9#include "color.h"
c31820c2
LH
10#include "refs.h"
11#include "commit.h"
12#include "builtin.h"
6f084a56 13#include "remote.h"
a8dfd5ea 14#include "parse-options.h"
e496c003 15#include "branch.h"
68067ca1
JH
16#include "diff.h"
17#include "revision.h"
a8dfd5ea
PH
18
19static const char * const builtin_branch_usage[] = {
1b1dd23f
SB
20 "git branch [options] [-r | -a] [--merged | --no-merged]",
21 "git branch [options] [-l] [-f] <branchname> [<start-point>]",
22 "git branch [options] [-r] (-d | -D) <branchname>",
23 "git branch [options] (-m | -M) [<oldbranch>] <newbranch>",
a8dfd5ea
PH
24 NULL
25};
c31820c2 26
f3d985c3
JH
27#define REF_LOCAL_BRANCH 0x01
28#define REF_REMOTE_BRANCH 0x02
c31820c2
LH
29
30static const char *head;
31static unsigned char head_sha1[20];
32
6b2f2d98 33static int branch_use_color = -1;
a1158cae
AP
34static char branch_colors[][COLOR_MAXLEN] = {
35 "\033[m", /* reset */
36 "", /* PLAIN (normal) */
37 "\033[31m", /* REMOTE (red) */
753f96a4
JH
38 "", /* LOCAL (normal) */
39 "\033[32m", /* CURRENT (green) */
a1158cae
AP
40};
41enum color_branch {
42 COLOR_BRANCH_RESET = 0,
43 COLOR_BRANCH_PLAIN = 1,
44 COLOR_BRANCH_REMOTE = 2,
45 COLOR_BRANCH_LOCAL = 3,
46 COLOR_BRANCH_CURRENT = 4,
47};
48
049716b3
JH
49static enum merge_filter {
50 NO_FILTER = 0,
51 SHOW_NOT_MERGED,
52 SHOW_MERGED,
53} merge_filter;
54static unsigned char merge_filter_ref[20];
e8b404c2 55
a1158cae
AP
56static int parse_branch_color_slot(const char *var, int ofs)
57{
58 if (!strcasecmp(var+ofs, "plain"))
59 return COLOR_BRANCH_PLAIN;
60 if (!strcasecmp(var+ofs, "reset"))
61 return COLOR_BRANCH_RESET;
62 if (!strcasecmp(var+ofs, "remote"))
63 return COLOR_BRANCH_REMOTE;
64 if (!strcasecmp(var+ofs, "local"))
65 return COLOR_BRANCH_LOCAL;
66 if (!strcasecmp(var+ofs, "current"))
67 return COLOR_BRANCH_CURRENT;
68 die("bad config variable '%s'", var);
69}
70
ef90d6d4 71static int git_branch_config(const char *var, const char *value, void *cb)
a1158cae
AP
72{
73 if (!strcmp(var, "color.branch")) {
0f6f5a40 74 branch_use_color = git_config_colorbool(var, value, -1);
a1158cae
AP
75 return 0;
76 }
cc44c765 77 if (!prefixcmp(var, "color.branch.")) {
a1158cae 78 int slot = parse_branch_color_slot(var, 13);
5768c98a
JH
79 if (!value)
80 return config_error_nonbool(var);
a1158cae
AP
81 color_parse(value, var, branch_colors[slot]);
82 return 0;
83 }
ef90d6d4 84 return git_color_default_config(var, value, cb);
a1158cae
AP
85}
86
52fae7de 87static const char *branch_get_color(enum color_branch ix)
a1158cae 88{
6b2f2d98 89 if (branch_use_color > 0)
a1158cae
AP
90 return branch_colors[ix];
91 return "";
92}
93
b8e9a00d 94static int delete_branches(int argc, const char **argv, int force, int kinds)
c31820c2 95{
67affd51 96 struct commit *rev, *head_rev = head_rev;
c31820c2 97 unsigned char sha1[20];
b8e9a00d 98 char *name = NULL;
f3d985c3 99 const char *fmt, *remote;
c31820c2 100 int i;
b8e9a00d 101 int ret = 0;
c31820c2 102
f3d985c3
JH
103 switch (kinds) {
104 case REF_REMOTE_BRANCH:
105 fmt = "refs/remotes/%s";
106 remote = "remote ";
107 force = 1;
108 break;
109 case REF_LOCAL_BRANCH:
110 fmt = "refs/heads/%s";
111 remote = "";
112 break;
113 default:
114 die("cannot use -a with -d");
115 }
c31820c2 116
67affd51
JH
117 if (!force) {
118 head_rev = lookup_commit_reference(head_sha1);
119 if (!head_rev)
120 die("Couldn't look up commit object for HEAD");
121 }
c31820c2 122 for (i = 0; i < argc; i++) {
b8e9a00d
QT
123 if (kinds == REF_LOCAL_BRANCH && !strcmp(head, argv[i])) {
124 error("Cannot delete the branch '%s' "
125 "which you are currently on.", argv[i]);
126 ret = 1;
127 continue;
128 }
129
8e0f7003 130 free(name);
c31820c2 131
f3d985c3 132 name = xstrdup(mkpath(fmt, argv[i]));
b8e9a00d
QT
133 if (!resolve_ref(name, sha1, 1, NULL)) {
134 error("%sbranch '%s' not found.",
135 remote, argv[i]);
136 ret = 1;
137 continue;
138 }
c31820c2
LH
139
140 rev = lookup_commit_reference(sha1);
b8e9a00d
QT
141 if (!rev) {
142 error("Couldn't look up commit object for '%s'", name);
143 ret = 1;
144 continue;
145 }
c31820c2
LH
146
147 /* This checks whether the merge bases of branch and
148 * HEAD contains branch -- which means that the HEAD
149 * contains everything in both.
150 */
151
152 if (!force &&
03840fc3 153 !in_merge_bases(rev, &head_rev, 1)) {
00ae8289 154 error("The branch '%s' is not an ancestor of "
b8e9a00d
QT
155 "your current HEAD.\n"
156 "If you are sure you want to delete it, "
157 "run 'git branch -D %s'.", argv[i], argv[i]);
158 ret = 1;
159 continue;
c31820c2
LH
160 }
161
eca35a25 162 if (delete_ref(name, sha1, 0)) {
b8e9a00d 163 error("Error deleting %sbranch '%s'", remote,
f3d985c3 164 argv[i]);
b8e9a00d 165 ret = 1;
f1eccbab 166 } else {
3c59c50d 167 struct strbuf buf = STRBUF_INIT;
a126ed0a
BC
168 printf("Deleted %sbranch %s (%s).\n", remote, argv[i],
169 find_unique_abbrev(sha1, DEFAULT_ABBREV));
3c59c50d
MV
170 strbuf_addf(&buf, "branch.%s", argv[i]);
171 if (git_config_rename_section(buf.buf, NULL) < 0)
f1eccbab 172 warning("Update of config-file failed");
3c59c50d 173 strbuf_release(&buf);
f1eccbab 174 }
c31820c2 175 }
c31820c2 176
8e0f7003 177 free(name);
b8e9a00d
QT
178
179 return(ret);
c31820c2 180}
c31820c2 181
bfcc9214
AP
182struct ref_item {
183 char *name;
184 unsigned int kind;
68067ca1 185 struct commit *commit;
bfcc9214
AP
186};
187
188struct ref_list {
68067ca1 189 struct rev_info revs;
75e6e213 190 int index, alloc, maxwidth;
bfcc9214 191 struct ref_item *list;
694a5775 192 struct commit_list *with_commit;
bfcc9214
AP
193 int kinds;
194};
195
68067ca1 196static int has_commit(struct commit *commit, struct commit_list *with_commit)
694a5775 197{
694a5775
JH
198 if (!with_commit)
199 return 1;
694a5775
JH
200 while (with_commit) {
201 struct commit *other;
202
203 other = with_commit->item;
204 with_commit = with_commit->next;
205 if (in_merge_bases(other, &commit, 1))
206 return 1;
207 }
208 return 0;
209}
210
bfcc9214 211static int append_ref(const char *refname, const unsigned char *sha1, int flags, void *cb_data)
c31820c2 212{
bfcc9214
AP
213 struct ref_list *ref_list = (struct ref_list*)(cb_data);
214 struct ref_item *newitem;
68067ca1 215 struct commit *commit;
0f31d680 216 int kind;
75e6e213 217 int len;
bfcc9214
AP
218
219 /* Detect kind */
cc44c765 220 if (!prefixcmp(refname, "refs/heads/")) {
bfcc9214
AP
221 kind = REF_LOCAL_BRANCH;
222 refname += 11;
cc44c765 223 } else if (!prefixcmp(refname, "refs/remotes/")) {
bfcc9214
AP
224 kind = REF_REMOTE_BRANCH;
225 refname += 13;
0f31d680
JH
226 } else
227 return 0;
bfcc9214 228
68067ca1
JH
229 commit = lookup_commit_reference_gently(sha1, 1);
230 if (!commit)
231 return error("branch '%s' does not point at a commit", refname);
232
694a5775 233 /* Filter with with_commit if specified */
68067ca1 234 if (!has_commit(commit, ref_list->with_commit))
694a5775
JH
235 return 0;
236
bfcc9214
AP
237 /* Don't add types the caller doesn't want */
238 if ((kind & ref_list->kinds) == 0)
239 return 0;
240
346d437a 241 if (merge_filter != NO_FILTER)
68067ca1 242 add_pending_object(&ref_list->revs,
346d437a 243 (struct object *)commit, refname);
e8b404c2 244
bfcc9214
AP
245 /* Resize buffer */
246 if (ref_list->index >= ref_list->alloc) {
247 ref_list->alloc = alloc_nr(ref_list->alloc);
248 ref_list->list = xrealloc(ref_list->list,
249 ref_list->alloc * sizeof(struct ref_item));
c31820c2
LH
250 }
251
bfcc9214
AP
252 /* Record the new item */
253 newitem = &(ref_list->list[ref_list->index++]);
254 newitem->name = xstrdup(refname);
255 newitem->kind = kind;
68067ca1 256 newitem->commit = commit;
75e6e213
LH
257 len = strlen(newitem->name);
258 if (len > ref_list->maxwidth)
259 ref_list->maxwidth = len;
c31820c2
LH
260
261 return 0;
262}
263
bfcc9214
AP
264static void free_ref_list(struct ref_list *ref_list)
265{
266 int i;
267
268 for (i = 0; i < ref_list->index; i++)
269 free(ref_list->list[i].name);
270 free(ref_list->list);
271}
272
c31820c2
LH
273static int ref_cmp(const void *r1, const void *r2)
274{
bfcc9214
AP
275 struct ref_item *c1 = (struct ref_item *)(r1);
276 struct ref_item *c2 = (struct ref_item *)(r2);
277
278 if (c1->kind != c2->kind)
279 return c1->kind - c2->kind;
280 return strcmp(c1->name, c2->name);
c31820c2
LH
281}
282
d3f9f9a9 283static void fill_tracking_info(struct strbuf *stat, const char *branch_name)
94fcb730
JH
284{
285 int ours, theirs;
286 struct branch *branch = branch_get(branch_name);
287
926ab840 288 if (!stat_tracking_info(branch, &ours, &theirs) || (!ours && !theirs))
94fcb730 289 return;
94fcb730 290 if (!ours)
d3f9f9a9 291 strbuf_addf(stat, "[behind %d] ", theirs);
94fcb730 292 else if (!theirs)
d3f9f9a9 293 strbuf_addf(stat, "[ahead %d] ", ours);
94fcb730 294 else
d3f9f9a9 295 strbuf_addf(stat, "[ahead %d, behind %d] ", ours, theirs);
94fcb730
JH
296}
297
7950cda7
LH
298static int matches_merge_filter(struct commit *commit)
299{
300 int is_merged;
301
302 if (merge_filter == NO_FILTER)
303 return 1;
304
305 is_merged = !!(commit->object.flags & UNINTERESTING);
306 return (is_merged == (merge_filter == SHOW_MERGED));
307}
308
af0e4ac0
LH
309static void print_ref_item(struct ref_item *item, int maxwidth, int verbose,
310 int abbrev, int current)
75e6e213 311{
af0e4ac0
LH
312 char c;
313 int color;
68067ca1
JH
314 struct commit *commit = item->commit;
315
7950cda7
LH
316 if (!matches_merge_filter(commit))
317 return;
75e6e213 318
af0e4ac0
LH
319 switch (item->kind) {
320 case REF_LOCAL_BRANCH:
321 color = COLOR_BRANCH_LOCAL;
322 break;
323 case REF_REMOTE_BRANCH:
324 color = COLOR_BRANCH_REMOTE;
325 break;
326 default:
327 color = COLOR_BRANCH_PLAIN;
328 break;
329 }
75e6e213 330
af0e4ac0
LH
331 c = ' ';
332 if (current) {
333 c = '*';
334 color = COLOR_BRANCH_CURRENT;
335 }
75e6e213 336
af0e4ac0 337 if (verbose) {
d3f9f9a9 338 struct strbuf subject = STRBUF_INIT, stat = STRBUF_INIT;
80583c0e 339 const char *sub = " **** invalid ref ****";
674d1727 340
68067ca1 341 commit = item->commit;
80583c0e 342 if (commit && !parse_commit(commit)) {
674d1727 343 pretty_print_commit(CMIT_FMT_ONELINE, commit,
4593fb84 344 &subject, 0, NULL, NULL, 0, 0);
674d1727 345 sub = subject.buf;
80583c0e 346 }
94fcb730
JH
347
348 if (item->kind == REF_LOCAL_BRANCH)
d3f9f9a9 349 fill_tracking_info(&stat, item->name);
94fcb730
JH
350
351 printf("%c %s%-*s%s %s %s%s\n", c, branch_get_color(color),
af0e4ac0
LH
352 maxwidth, item->name,
353 branch_get_color(COLOR_BRANCH_RESET),
68067ca1 354 find_unique_abbrev(item->commit->object.sha1, abbrev),
d3f9f9a9
MV
355 stat.buf, sub);
356 strbuf_release(&stat);
674d1727 357 strbuf_release(&subject);
af0e4ac0
LH
358 } else {
359 printf("%c %s%s%s\n", c, branch_get_color(color), item->name,
360 branch_get_color(COLOR_BRANCH_RESET));
361 }
75e6e213
LH
362}
363
b6f637d1
LH
364static int calc_maxwidth(struct ref_list *refs)
365{
366 int i, l, w = 0;
367 for (i = 0; i < refs->index; i++) {
368 if (!matches_merge_filter(refs->list[i].commit))
369 continue;
370 l = strlen(refs->list[i].name);
371 if (l > w)
372 w = l;
373 }
374 return w;
375}
376
694a5775 377static void print_ref_list(int kinds, int detached, int verbose, int abbrev, struct commit_list *with_commit)
c31820c2
LH
378{
379 int i;
bfcc9214 380 struct ref_list ref_list;
68067ca1 381 struct commit *head_commit = lookup_commit_reference_gently(head_sha1, 1);
c31820c2 382
bfcc9214
AP
383 memset(&ref_list, 0, sizeof(ref_list));
384 ref_list.kinds = kinds;
694a5775 385 ref_list.with_commit = with_commit;
68067ca1
JH
386 if (merge_filter != NO_FILTER)
387 init_revisions(&ref_list.revs, NULL);
bfcc9214 388 for_each_ref(append_ref, &ref_list);
68067ca1
JH
389 if (merge_filter != NO_FILTER) {
390 struct commit *filter;
391 filter = lookup_commit_reference_gently(merge_filter_ref, 0);
392 filter->object.flags |= UNINTERESTING;
393 add_pending_object(&ref_list.revs,
394 (struct object *) filter, "");
395 ref_list.revs.limited = 1;
396 prepare_revision_walk(&ref_list.revs);
b6f637d1
LH
397 if (verbose)
398 ref_list.maxwidth = calc_maxwidth(&ref_list);
68067ca1 399 }
c31820c2 400
bfcc9214 401 qsort(ref_list.list, ref_list.index, sizeof(struct ref_item), ref_cmp);
c31820c2 402
0016a482 403 detached = (detached && (kinds & REF_LOCAL_BRANCH));
68067ca1 404 if (detached && head_commit && has_commit(head_commit, with_commit)) {
0016a482 405 struct ref_item item;
3a55602e 406 item.name = xstrdup("(no branch)");
0016a482 407 item.kind = REF_LOCAL_BRANCH;
68067ca1 408 item.commit = head_commit;
0016a482 409 if (strlen(item.name) > ref_list.maxwidth)
68067ca1 410 ref_list.maxwidth = strlen(item.name);
0016a482 411 print_ref_item(&item, ref_list.maxwidth, verbose, abbrev, 1);
3a55602e 412 free(item.name);
0016a482
LH
413 }
414
bfcc9214 415 for (i = 0; i < ref_list.index; i++) {
0016a482
LH
416 int current = !detached &&
417 (ref_list.list[i].kind == REF_LOCAL_BRANCH) &&
af0e4ac0
LH
418 !strcmp(ref_list.list[i].name, head);
419 print_ref_item(&ref_list.list[i], ref_list.maxwidth, verbose,
420 abbrev, current);
c31820c2 421 }
bfcc9214
AP
422
423 free_ref_list(&ref_list);
c31820c2
LH
424}
425
c976d415
LH
426static void rename_branch(const char *oldname, const char *newname, int force)
427{
da3f78a2 428 struct strbuf oldref = STRBUF_INIT, newref = STRBUF_INIT, logmsg = STRBUF_INIT;
c976d415 429 unsigned char sha1[20];
da3f78a2 430 struct strbuf oldsection = STRBUF_INIT, newsection = STRBUF_INIT;
c976d415 431
c847f537 432 if (!oldname)
3dff5379 433 die("cannot rename the current branch while not on any.");
c847f537 434
da3f78a2 435 strbuf_addf(&oldref, "refs/heads/%s", oldname);
c976d415 436
da3f78a2
MV
437 if (check_ref_format(oldref.buf))
438 die("Invalid branch name: %s", oldref.buf);
c976d415 439
da3f78a2 440 strbuf_addf(&newref, "refs/heads/%s", newname);
c976d415 441
da3f78a2
MV
442 if (check_ref_format(newref.buf))
443 die("Invalid branch name: %s", newref.buf);
c976d415 444
da3f78a2 445 if (resolve_ref(newref.buf, sha1, 1, NULL) && !force)
c976d415
LH
446 die("A branch named '%s' already exists.", newname);
447
da3f78a2
MV
448 strbuf_addf(&logmsg, "Branch: renamed %s to %s",
449 oldref.buf, newref.buf);
678d0f4c 450
da3f78a2 451 if (rename_ref(oldref.buf, newref.buf, logmsg.buf))
c976d415 452 die("Branch rename failed");
da3f78a2 453 strbuf_release(&logmsg);
c976d415 454
8b5157e4 455 /* no need to pass logmsg here as HEAD didn't really move */
da3f78a2 456 if (!strcmp(oldname, head) && create_symref("HEAD", newref.buf, NULL))
c976d415 457 die("Branch renamed to %s, but HEAD is not updated!", newname);
19eba151 458
da3f78a2
MV
459 strbuf_addf(&oldsection, "branch.%s", oldref.buf + 11);
460 strbuf_release(&oldref);
461 strbuf_addf(&newsection, "branch.%s", newref.buf + 11);
462 strbuf_release(&newref);
463 if (git_config_rename_section(oldsection.buf, newsection.buf) < 0)
19eba151 464 die("Branch is renamed, but update of config-file failed");
da3f78a2
MV
465 strbuf_release(&oldsection);
466 strbuf_release(&newsection);
c976d415
LH
467}
468
694a5775
JH
469static int opt_parse_with_commit(const struct option *opt, const char *arg, int unset)
470{
471 unsigned char sha1[20];
472 struct commit *commit;
473
474 if (!arg)
475 return -1;
476 if (get_sha1(arg, sha1))
477 die("malformed object name %s", arg);
478 commit = lookup_commit_reference(sha1);
479 if (!commit)
480 die("no such commit %s", arg);
481 commit_list_insert(commit, opt->value);
482 return 0;
483}
484
049716b3
JH
485static int opt_parse_merge_filter(const struct option *opt, const char *arg, int unset)
486{
487 merge_filter = ((opt->long_name[0] == 'n')
488 ? SHOW_NOT_MERGED
489 : SHOW_MERGED);
490 if (unset)
491 merge_filter = SHOW_NOT_MERGED; /* b/c for --no-merged */
492 if (!arg)
493 arg = "HEAD";
494 if (get_sha1(arg, merge_filter_ref))
495 die("malformed object name %s", arg);
496 return 0;
497}
498
c31820c2
LH
499int cmd_branch(int argc, const char **argv, const char *prefix)
500{
d11d44fa 501 int delete = 0, rename = 0, force_create = 0;
0016a482 502 int verbose = 0, abbrev = DEFAULT_ABBREV, detached = 0;
9ed36cfa
JS
503 int reflog = 0;
504 enum branch_track track;
d11d44fa 505 int kinds = REF_LOCAL_BRANCH;
694a5775 506 struct commit_list *with_commit = NULL;
a8dfd5ea
PH
507
508 struct option options[] = {
509 OPT_GROUP("Generic options"),
510 OPT__VERBOSE(&verbose),
9ed36cfa
JS
511 OPT_SET_INT( 0 , "track", &track, "set up tracking mode (see git-pull(1))",
512 BRANCH_TRACK_EXPLICIT),
a8dfd5ea 513 OPT_BOOLEAN( 0 , "color", &branch_use_color, "use colored output"),
d11d44fa
PH
514 OPT_SET_INT('r', NULL, &kinds, "act on remote-tracking branches",
515 REF_REMOTE_BRANCH),
e84fb2ff
JH
516 {
517 OPTION_CALLBACK, 0, "contains", &with_commit, "commit",
518 "print only branches that contain the commit",
519 PARSE_OPT_LASTARG_DEFAULT,
520 opt_parse_with_commit, (intptr_t)"HEAD",
521 },
694a5775
JH
522 {
523 OPTION_CALLBACK, 0, "with", &with_commit, "commit",
524 "print only branches that contain the commit",
e84fb2ff
JH
525 PARSE_OPT_HIDDEN | PARSE_OPT_LASTARG_DEFAULT,
526 opt_parse_with_commit, (intptr_t) "HEAD",
694a5775 527 },
a8dfd5ea
PH
528 OPT__ABBREV(&abbrev),
529
530 OPT_GROUP("Specific git-branch actions:"),
d11d44fa
PH
531 OPT_SET_INT('a', NULL, &kinds, "list both remote-tracking and local branches",
532 REF_REMOTE_BRANCH | REF_LOCAL_BRANCH),
533 OPT_BIT('d', NULL, &delete, "delete fully merged branch", 1),
534 OPT_BIT('D', NULL, &delete, "delete branch (even if not merged)", 2),
535 OPT_BIT('m', NULL, &rename, "move/rename a branch and its reflog", 1),
536 OPT_BIT('M', NULL, &rename, "move/rename a branch, even if target exists", 2),
537 OPT_BOOLEAN('l', NULL, &reflog, "create the branch's reflog"),
538 OPT_BOOLEAN('f', NULL, &force_create, "force creation (when already exists)"),
049716b3
JH
539 {
540 OPTION_CALLBACK, 0, "no-merged", &merge_filter_ref,
541 "commit", "print only not merged branches",
542 PARSE_OPT_LASTARG_DEFAULT | PARSE_OPT_NONEG,
543 opt_parse_merge_filter, (intptr_t) "HEAD",
544 },
545 {
546 OPTION_CALLBACK, 0, "merged", &merge_filter_ref,
547 "commit", "print only merged branches",
548 PARSE_OPT_LASTARG_DEFAULT | PARSE_OPT_NONEG,
549 opt_parse_merge_filter, (intptr_t) "HEAD",
550 },
a8dfd5ea
PH
551 OPT_END(),
552 };
c31820c2 553
ef90d6d4 554 git_config(git_branch_config, NULL);
6b2f2d98
MK
555
556 if (branch_use_color == -1)
557 branch_use_color = git_use_color_default;
558
9ed36cfa 559 track = git_branch_track;
c976d415 560
078f8380 561 head = resolve_ref("HEAD", head_sha1, 0, NULL);
c31820c2
LH
562 if (!head)
563 die("Failed to resolve HEAD as a valid ref.");
078f8380 564 head = xstrdup(head);
0016a482
LH
565 if (!strcmp(head, "HEAD")) {
566 detached = 1;
a8dfd5ea 567 } else {
cc44c765 568 if (prefixcmp(head, "refs/heads/"))
0016a482
LH
569 die("HEAD not found below refs/heads!");
570 head += 11;
571 }
049716b3
JH
572 hashcpy(merge_filter_ref, head_sha1);
573
574 argc = parse_options(argc, argv, options, builtin_branch_usage, 0);
575 if (!!delete + !!rename + !!force_create > 1)
576 usage_with_options(builtin_branch_usage, options);
c31820c2
LH
577
578 if (delete)
d11d44fa 579 return delete_branches(argc, argv, delete > 1, kinds);
a8dfd5ea 580 else if (argc == 0)
694a5775 581 print_ref_list(kinds, detached, verbose, abbrev, with_commit);
a8dfd5ea 582 else if (rename && (argc == 1))
d11d44fa 583 rename_branch(head, argv[0], rename > 1);
a8dfd5ea 584 else if (rename && (argc == 2))
d11d44fa 585 rename_branch(argv[0], argv[1], rename > 1);
a8dfd5ea 586 else if (argc <= 2)
e496c003 587 create_branch(head, argv[0], (argc == 2) ? argv[1] : head,
45994a1e 588 force_create, reflog, track);
c31820c2 589 else
a8dfd5ea 590 usage_with_options(builtin_branch_usage, options);
c31820c2
LH
591
592 return 0;
593}