4 * Copyright (c) 2006 Kristian Høgsberg <krh@redhat.com>
5 * Based on git-branch.sh by Junio C Hamano.
14 static const char builtin_branch_usage
[] =
15 "git-branch [-r] (-d | -D) <branchname> | [--track | --no-track] [-l] [-f] <branchname> [<start-point>] | (-m | -M) [<oldbranch>] <newbranch> | [--color | --no-color] [-r | -a] [-v [--abbrev=<length> | --no-abbrev]]";
17 #define REF_UNKNOWN_TYPE 0x00
18 #define REF_LOCAL_BRANCH 0x01
19 #define REF_REMOTE_BRANCH 0x02
22 static const char *head
;
23 static unsigned char head_sha1
[20];
25 static int branch_track_remotes
;
27 static int branch_use_color
;
28 static char branch_colors
[][COLOR_MAXLEN
] = {
30 "", /* PLAIN (normal) */
31 "\033[31m", /* REMOTE (red) */
32 "", /* LOCAL (normal) */
33 "\033[32m", /* CURRENT (green) */
36 COLOR_BRANCH_RESET
= 0,
37 COLOR_BRANCH_PLAIN
= 1,
38 COLOR_BRANCH_REMOTE
= 2,
39 COLOR_BRANCH_LOCAL
= 3,
40 COLOR_BRANCH_CURRENT
= 4,
43 static int parse_branch_color_slot(const char *var
, int ofs
)
45 if (!strcasecmp(var
+ofs
, "plain"))
46 return COLOR_BRANCH_PLAIN
;
47 if (!strcasecmp(var
+ofs
, "reset"))
48 return COLOR_BRANCH_RESET
;
49 if (!strcasecmp(var
+ofs
, "remote"))
50 return COLOR_BRANCH_REMOTE
;
51 if (!strcasecmp(var
+ofs
, "local"))
52 return COLOR_BRANCH_LOCAL
;
53 if (!strcasecmp(var
+ofs
, "current"))
54 return COLOR_BRANCH_CURRENT
;
55 die("bad config variable '%s'", var
);
58 int git_branch_config(const char *var
, const char *value
)
60 if (!strcmp(var
, "color.branch")) {
61 branch_use_color
= git_config_colorbool(var
, value
);
64 if (!prefixcmp(var
, "color.branch.")) {
65 int slot
= parse_branch_color_slot(var
, 13);
66 color_parse(value
, var
, branch_colors
[slot
]);
69 if (!strcmp(var
, "branch.autosetupmerge"))
70 branch_track_remotes
= git_config_bool(var
, value
);
72 return git_default_config(var
, value
);
75 const char *branch_get_color(enum color_branch ix
)
78 return branch_colors
[ix
];
82 static int delete_branches(int argc
, const char **argv
, int force
, int kinds
)
84 struct commit
*rev
, *head_rev
= head_rev
;
85 unsigned char sha1
[20];
87 const char *fmt
, *remote
;
92 case REF_REMOTE_BRANCH
:
93 fmt
= "refs/remotes/%s";
97 case REF_LOCAL_BRANCH
:
98 fmt
= "refs/heads/%s";
102 die("cannot use -a with -d");
106 head_rev
= lookup_commit_reference(head_sha1
);
108 die("Couldn't look up commit object for HEAD");
110 for (i
= 0; i
< argc
; i
++) {
111 if (kinds
== REF_LOCAL_BRANCH
&& !strcmp(head
, argv
[i
])) {
112 error("Cannot delete the branch '%s' "
113 "which you are currently on.", argv
[i
]);
121 name
= xstrdup(mkpath(fmt
, argv
[i
]));
122 if (!resolve_ref(name
, sha1
, 1, NULL
)) {
123 error("%sbranch '%s' not found.",
129 rev
= lookup_commit_reference(sha1
);
131 error("Couldn't look up commit object for '%s'", name
);
136 /* This checks whether the merge bases of branch and
137 * HEAD contains branch -- which means that the HEAD
138 * contains everything in both.
142 !in_merge_bases(rev
, &head_rev
, 1)) {
143 error("The branch '%s' is not a strict subset of "
144 "your current HEAD.\n"
145 "If you are sure you want to delete it, "
146 "run 'git branch -D %s'.", argv
[i
], argv
[i
]);
151 if (delete_ref(name
, sha1
)) {
152 error("Error deleting %sbranch '%s'", remote
,
156 printf("Deleted %sbranch %s.\n", remote
, argv
[i
]);
169 unsigned char sha1
[20];
173 int index
, alloc
, maxwidth
;
174 struct ref_item
*list
;
178 static int append_ref(const char *refname
, const unsigned char *sha1
, int flags
, void *cb_data
)
180 struct ref_list
*ref_list
= (struct ref_list
*)(cb_data
);
181 struct ref_item
*newitem
;
182 int kind
= REF_UNKNOWN_TYPE
;
186 if (!prefixcmp(refname
, "refs/heads/")) {
187 kind
= REF_LOCAL_BRANCH
;
189 } else if (!prefixcmp(refname
, "refs/remotes/")) {
190 kind
= REF_REMOTE_BRANCH
;
192 } else if (!prefixcmp(refname
, "refs/tags/")) {
197 /* Don't add types the caller doesn't want */
198 if ((kind
& ref_list
->kinds
) == 0)
202 if (ref_list
->index
>= ref_list
->alloc
) {
203 ref_list
->alloc
= alloc_nr(ref_list
->alloc
);
204 ref_list
->list
= xrealloc(ref_list
->list
,
205 ref_list
->alloc
* sizeof(struct ref_item
));
208 /* Record the new item */
209 newitem
= &(ref_list
->list
[ref_list
->index
++]);
210 newitem
->name
= xstrdup(refname
);
211 newitem
->kind
= kind
;
212 hashcpy(newitem
->sha1
, sha1
);
213 len
= strlen(newitem
->name
);
214 if (len
> ref_list
->maxwidth
)
215 ref_list
->maxwidth
= len
;
220 static void free_ref_list(struct ref_list
*ref_list
)
224 for (i
= 0; i
< ref_list
->index
; i
++)
225 free(ref_list
->list
[i
].name
);
226 free(ref_list
->list
);
229 static int ref_cmp(const void *r1
, const void *r2
)
231 struct ref_item
*c1
= (struct ref_item
*)(r1
);
232 struct ref_item
*c2
= (struct ref_item
*)(r2
);
234 if (c1
->kind
!= c2
->kind
)
235 return c1
->kind
- c2
->kind
;
236 return strcmp(c1
->name
, c2
->name
);
239 static void print_ref_item(struct ref_item
*item
, int maxwidth
, int verbose
,
240 int abbrev
, int current
)
244 struct commit
*commit
;
247 switch (item
->kind
) {
248 case REF_LOCAL_BRANCH
:
249 color
= COLOR_BRANCH_LOCAL
;
251 case REF_REMOTE_BRANCH
:
252 color
= COLOR_BRANCH_REMOTE
;
255 color
= COLOR_BRANCH_PLAIN
;
262 color
= COLOR_BRANCH_CURRENT
;
266 commit
= lookup_commit(item
->sha1
);
267 if (commit
&& !parse_commit(commit
))
268 pretty_print_commit(CMIT_FMT_ONELINE
, commit
, ~0,
269 subject
, sizeof(subject
), 0,
272 strcpy(subject
, " **** invalid ref ****");
273 printf("%c %s%-*s%s %s %s\n", c
, branch_get_color(color
),
274 maxwidth
, item
->name
,
275 branch_get_color(COLOR_BRANCH_RESET
),
276 find_unique_abbrev(item
->sha1
, abbrev
), subject
);
278 printf("%c %s%s%s\n", c
, branch_get_color(color
), item
->name
,
279 branch_get_color(COLOR_BRANCH_RESET
));
283 static void print_ref_list(int kinds
, int detached
, int verbose
, int abbrev
)
286 struct ref_list ref_list
;
288 memset(&ref_list
, 0, sizeof(ref_list
));
289 ref_list
.kinds
= kinds
;
290 for_each_ref(append_ref
, &ref_list
);
292 qsort(ref_list
.list
, ref_list
.index
, sizeof(struct ref_item
), ref_cmp
);
294 detached
= (detached
&& (kinds
& REF_LOCAL_BRANCH
));
296 struct ref_item item
;
297 item
.name
= xstrdup("(no branch)");
298 item
.kind
= REF_LOCAL_BRANCH
;
299 hashcpy(item
.sha1
, head_sha1
);
300 if (strlen(item
.name
) > ref_list
.maxwidth
)
301 ref_list
.maxwidth
= strlen(item
.name
);
302 print_ref_item(&item
, ref_list
.maxwidth
, verbose
, abbrev
, 1);
306 for (i
= 0; i
< ref_list
.index
; i
++) {
307 int current
= !detached
&&
308 (ref_list
.list
[i
].kind
== REF_LOCAL_BRANCH
) &&
309 !strcmp(ref_list
.list
[i
].name
, head
);
310 print_ref_item(&ref_list
.list
[i
], ref_list
.maxwidth
, verbose
,
314 free_ref_list(&ref_list
);
317 static char *config_repo
;
318 static char *config_remote
;
319 static const char *start_ref
;
320 static int start_len
;
323 static int get_remote_branch_name(const char *value
)
331 colon
= strchr(value
, ':');
335 end
= value
+ strlen(value
);
337 /* Try an exact match first. */
338 if (!strcmp(colon
+ 1, start_ref
)) {
339 /* Truncate the value before the colon. */
340 nfasprintf(&config_repo
, "%.*s", colon
- value
, value
);
344 /* Try with a wildcard match now. */
345 if (end
- value
> 2 && end
[-2] == '/' && end
[-1] == '*' &&
346 colon
- value
> 2 && colon
[-2] == '/' && colon
[-1] == '*' &&
347 (end
- 2) - (colon
+ 1) == base_len
&&
348 !strncmp(colon
+ 1, start_ref
, base_len
)) {
349 /* Replace the star with the remote branch name. */
350 nfasprintf(&config_repo
, "%.*s%s",
351 (colon
- 2) - value
, value
,
352 start_ref
+ base_len
);
359 static int get_remote_config(const char *key
, const char *value
)
362 if (prefixcmp(key
, "remote."))
365 var
= strrchr(key
, '.');
369 if (!strcmp(var
, ".fetch") && get_remote_branch_name(value
))
370 nfasprintf(&config_remote
, "%.*s", var
- (key
+ 7), key
+ 7);
375 static void set_branch_merge(const char *name
, const char *config_remote
,
376 const char *config_repo
)
380 snprintf(key
, sizeof(key
), "branch.%s.remote", name
))
381 die("what a long branch name you have!");
382 git_config_set(key
, config_remote
);
385 * We do not have to check if we have enough space for
386 * the 'merge' key, since it's shorter than the
387 * previous 'remote' key, which we already checked.
389 snprintf(key
, sizeof(key
), "branch.%s.merge", name
);
390 git_config_set(key
, config_repo
);
393 static void set_branch_defaults(const char *name
, const char *real_ref
)
395 const char *slash
= strrchr(real_ref
, '/');
400 start_ref
= real_ref
;
401 start_len
= strlen(real_ref
);
402 base_len
= slash
- real_ref
;
403 git_config(get_remote_config
);
404 if (!config_repo
&& !config_remote
&&
405 !prefixcmp(real_ref
, "refs/heads/")) {
406 set_branch_merge(name
, ".", real_ref
);
407 printf("Branch %s set up to track local branch %s.\n",
411 if (config_repo
&& config_remote
) {
412 set_branch_merge(name
, config_remote
, config_repo
);
413 printf("Branch %s set up to track remote branch %s.\n",
423 static void create_branch(const char *name
, const char *start_name
,
424 int force
, int reflog
, int track
)
426 struct ref_lock
*lock
;
427 struct commit
*commit
;
428 unsigned char sha1
[20];
429 char *real_ref
, ref
[PATH_MAX
], msg
[PATH_MAX
+ 20];
432 snprintf(ref
, sizeof ref
, "refs/heads/%s", name
);
433 if (check_ref_format(ref
))
434 die("'%s' is not a valid branch name.", name
);
436 if (resolve_ref(ref
, sha1
, 1, NULL
)) {
438 die("A branch named '%s' already exists.", name
);
439 else if (!is_bare_repository() && !strcmp(head
, name
))
440 die("Cannot force update the current branch.");
445 if (get_sha1(start_name
, sha1
))
446 die("Not a valid object name: '%s'.", start_name
);
448 switch (dwim_ref(start_name
, strlen(start_name
), sha1
, &real_ref
)) {
450 /* Not branching from any existing branch */
454 /* Unique completion -- good */
457 die("Ambiguous object name: '%s'.", start_name
);
461 if ((commit
= lookup_commit_reference(sha1
)) == NULL
)
462 die("Not a valid branch point: '%s'.", start_name
);
463 hashcpy(sha1
, commit
->object
.sha1
);
465 lock
= lock_any_ref_for_update(ref
, NULL
);
467 die("Failed to lock ref for update: %s.", strerror(errno
));
470 log_all_ref_updates
= 1;
473 snprintf(msg
, sizeof msg
, "branch: Reset from %s",
476 snprintf(msg
, sizeof msg
, "branch: Created from %s",
479 /* When branching off a remote branch, set up so that git-pull
480 automatically merges from there. So far, this is only done for
481 remotes registered via .git/config. */
482 if (real_ref
&& track
)
483 set_branch_defaults(name
, real_ref
);
485 if (write_ref_sha1(lock
, sha1
, msg
) < 0)
486 die("Failed to write ref: %s.", strerror(errno
));
492 static void rename_branch(const char *oldname
, const char *newname
, int force
)
494 char oldref
[PATH_MAX
], newref
[PATH_MAX
], logmsg
[PATH_MAX
*2 + 100];
495 unsigned char sha1
[20];
498 die("cannot rename the current branch while not on any.");
500 if (snprintf(oldref
, sizeof(oldref
), "refs/heads/%s", oldname
) > sizeof(oldref
))
501 die("Old branchname too long");
503 if (check_ref_format(oldref
))
504 die("Invalid branch name: %s", oldref
);
506 if (snprintf(newref
, sizeof(newref
), "refs/heads/%s", newname
) > sizeof(newref
))
507 die("New branchname too long");
509 if (check_ref_format(newref
))
510 die("Invalid branch name: %s", newref
);
512 if (resolve_ref(newref
, sha1
, 1, NULL
) && !force
)
513 die("A branch named '%s' already exists.", newname
);
515 snprintf(logmsg
, sizeof(logmsg
), "Branch: renamed %s to %s",
518 if (rename_ref(oldref
, newref
, logmsg
))
519 die("Branch rename failed");
521 /* no need to pass logmsg here as HEAD didn't really move */
522 if (!strcmp(oldname
, head
) && create_symref("HEAD", newref
, NULL
))
523 die("Branch renamed to %s, but HEAD is not updated!", newname
);
526 int cmd_branch(int argc
, const char **argv
, const char *prefix
)
528 int delete = 0, force_delete
= 0, force_create
= 0;
529 int rename
= 0, force_rename
= 0;
530 int verbose
= 0, abbrev
= DEFAULT_ABBREV
, detached
= 0;
531 int reflog
= 0, track
;
532 int kinds
= REF_LOCAL_BRANCH
;
535 git_config(git_branch_config
);
536 track
= branch_track_remotes
;
538 for (i
= 1; i
< argc
; i
++) {
539 const char *arg
= argv
[i
];
543 if (!strcmp(arg
, "--")) {
547 if (!strcmp(arg
, "--track")) {
551 if (!strcmp(arg
, "--no-track")) {
555 if (!strcmp(arg
, "-d")) {
559 if (!strcmp(arg
, "-D")) {
564 if (!strcmp(arg
, "-f")) {
568 if (!strcmp(arg
, "-m")) {
572 if (!strcmp(arg
, "-M")) {
577 if (!strcmp(arg
, "-r")) {
578 kinds
= REF_REMOTE_BRANCH
;
581 if (!strcmp(arg
, "-a")) {
582 kinds
= REF_REMOTE_BRANCH
| REF_LOCAL_BRANCH
;
585 if (!strcmp(arg
, "-l")) {
589 if (!prefixcmp(arg
, "--no-abbrev")) {
593 if (!prefixcmp(arg
, "--abbrev=")) {
594 abbrev
= strtoul(arg
+ 9, NULL
, 10);
595 if (abbrev
< MINIMUM_ABBREV
)
596 abbrev
= MINIMUM_ABBREV
;
597 else if (abbrev
> 40)
601 if (!strcmp(arg
, "-v")) {
605 if (!strcmp(arg
, "--color")) {
606 branch_use_color
= 1;
609 if (!strcmp(arg
, "--no-color")) {
610 branch_use_color
= 0;
613 usage(builtin_branch_usage
);
616 if ((delete && rename
) || (delete && force_create
) ||
617 (rename
&& force_create
))
618 usage(builtin_branch_usage
);
620 head
= xstrdup(resolve_ref("HEAD", head_sha1
, 0, NULL
));
622 die("Failed to resolve HEAD as a valid ref.");
623 if (!strcmp(head
, "HEAD")) {
627 if (prefixcmp(head
, "refs/heads/"))
628 die("HEAD not found below refs/heads!");
633 return delete_branches(argc
- i
, argv
+ i
, force_delete
, kinds
);
635 print_ref_list(kinds
, detached
, verbose
, abbrev
);
636 else if (rename
&& (i
== argc
- 1))
637 rename_branch(head
, argv
[i
], force_rename
);
638 else if (rename
&& (i
== argc
- 2))
639 rename_branch(argv
[i
], argv
[i
+ 1], force_rename
);
640 else if (i
== argc
- 1 || i
== argc
- 2)
641 create_branch(argv
[i
], (i
== argc
- 2) ? argv
[i
+1] : head
,
642 force_create
, reflog
, track
);
644 usage(builtin_branch_usage
);