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_defaults(const char *name
, const char *real_ref
)
378 const char *slash
= strrchr(real_ref
, '/');
383 start_ref
= real_ref
;
384 start_len
= strlen(real_ref
);
385 base_len
= slash
- real_ref
;
386 git_config(get_remote_config
);
388 if (config_repo
&& config_remote
) {
390 snprintf(key
, sizeof(key
), "branch.%s.remote", name
))
391 die("what a long branch name you have!");
392 git_config_set(key
, config_remote
);
395 * We do not have to check if we have enough space for
396 * the 'merge' key, since it's shorter than the
397 * previous 'remote' key, which we already checked.
399 snprintf(key
, sizeof(key
), "branch.%s.merge", name
);
400 git_config_set(key
, config_repo
);
402 printf("Branch %s set up to track remote branch %s.\n",
412 static void create_branch(const char *name
, const char *start_name
,
413 int force
, int reflog
, int track
)
415 struct ref_lock
*lock
;
416 struct commit
*commit
;
417 unsigned char sha1
[20];
418 char *real_ref
, ref
[PATH_MAX
], msg
[PATH_MAX
+ 20];
421 snprintf(ref
, sizeof ref
, "refs/heads/%s", name
);
422 if (check_ref_format(ref
))
423 die("'%s' is not a valid branch name.", name
);
425 if (resolve_ref(ref
, sha1
, 1, NULL
)) {
427 die("A branch named '%s' already exists.", name
);
428 else if (!is_bare_repository() && !strcmp(head
, name
))
429 die("Cannot force update the current branch.");
434 if (get_sha1(start_name
, sha1
))
435 die("Not a valid object name: '%s'.", start_name
);
437 switch (dwim_ref(start_name
, strlen(start_name
), sha1
, &real_ref
)) {
439 /* Not branching from any existing branch */
443 /* Unique completion -- good */
446 die("Ambiguous object name: '%s'.", start_name
);
450 if ((commit
= lookup_commit_reference(sha1
)) == NULL
)
451 die("Not a valid branch point: '%s'.", start_name
);
452 hashcpy(sha1
, commit
->object
.sha1
);
454 lock
= lock_any_ref_for_update(ref
, NULL
);
456 die("Failed to lock ref for update: %s.", strerror(errno
));
459 log_all_ref_updates
= 1;
462 snprintf(msg
, sizeof msg
, "branch: Reset from %s",
465 snprintf(msg
, sizeof msg
, "branch: Created from %s",
468 /* When branching off a remote branch, set up so that git-pull
469 automatically merges from there. So far, this is only done for
470 remotes registered via .git/config. */
471 if (real_ref
&& track
)
472 set_branch_defaults(name
, real_ref
);
474 if (write_ref_sha1(lock
, sha1
, msg
) < 0)
475 die("Failed to write ref: %s.", strerror(errno
));
481 static void rename_branch(const char *oldname
, const char *newname
, int force
)
483 char oldref
[PATH_MAX
], newref
[PATH_MAX
], logmsg
[PATH_MAX
*2 + 100];
484 unsigned char sha1
[20];
487 die("cannot rename the current branch while not on any.");
489 if (snprintf(oldref
, sizeof(oldref
), "refs/heads/%s", oldname
) > sizeof(oldref
))
490 die("Old branchname too long");
492 if (check_ref_format(oldref
))
493 die("Invalid branch name: %s", oldref
);
495 if (snprintf(newref
, sizeof(newref
), "refs/heads/%s", newname
) > sizeof(newref
))
496 die("New branchname too long");
498 if (check_ref_format(newref
))
499 die("Invalid branch name: %s", newref
);
501 if (resolve_ref(newref
, sha1
, 1, NULL
) && !force
)
502 die("A branch named '%s' already exists.", newname
);
504 snprintf(logmsg
, sizeof(logmsg
), "Branch: renamed %s to %s",
507 if (rename_ref(oldref
, newref
, logmsg
))
508 die("Branch rename failed");
510 /* no need to pass logmsg here as HEAD didn't really move */
511 if (!strcmp(oldname
, head
) && create_symref("HEAD", newref
, NULL
))
512 die("Branch renamed to %s, but HEAD is not updated!", newname
);
515 int cmd_branch(int argc
, const char **argv
, const char *prefix
)
517 int delete = 0, force_delete
= 0, force_create
= 0;
518 int rename
= 0, force_rename
= 0;
519 int verbose
= 0, abbrev
= DEFAULT_ABBREV
, detached
= 0;
520 int reflog
= 0, track
;
521 int kinds
= REF_LOCAL_BRANCH
;
524 git_config(git_branch_config
);
525 track
= branch_track_remotes
;
527 for (i
= 1; i
< argc
; i
++) {
528 const char *arg
= argv
[i
];
532 if (!strcmp(arg
, "--")) {
536 if (!strcmp(arg
, "--track")) {
540 if (!strcmp(arg
, "--no-track")) {
544 if (!strcmp(arg
, "-d")) {
548 if (!strcmp(arg
, "-D")) {
553 if (!strcmp(arg
, "-f")) {
557 if (!strcmp(arg
, "-m")) {
561 if (!strcmp(arg
, "-M")) {
566 if (!strcmp(arg
, "-r")) {
567 kinds
= REF_REMOTE_BRANCH
;
570 if (!strcmp(arg
, "-a")) {
571 kinds
= REF_REMOTE_BRANCH
| REF_LOCAL_BRANCH
;
574 if (!strcmp(arg
, "-l")) {
578 if (!prefixcmp(arg
, "--no-abbrev")) {
582 if (!prefixcmp(arg
, "--abbrev=")) {
583 abbrev
= strtoul(arg
+ 9, NULL
, 10);
584 if (abbrev
< MINIMUM_ABBREV
)
585 abbrev
= MINIMUM_ABBREV
;
586 else if (abbrev
> 40)
590 if (!strcmp(arg
, "-v")) {
594 if (!strcmp(arg
, "--color")) {
595 branch_use_color
= 1;
598 if (!strcmp(arg
, "--no-color")) {
599 branch_use_color
= 0;
602 usage(builtin_branch_usage
);
605 if ((delete && rename
) || (delete && force_create
) ||
606 (rename
&& force_create
))
607 usage(builtin_branch_usage
);
609 head
= xstrdup(resolve_ref("HEAD", head_sha1
, 0, NULL
));
611 die("Failed to resolve HEAD as a valid ref.");
612 if (!strcmp(head
, "HEAD")) {
616 if (prefixcmp(head
, "refs/heads/"))
617 die("HEAD not found below refs/heads!");
622 return delete_branches(argc
- i
, argv
+ i
, force_delete
, kinds
);
624 print_ref_list(kinds
, detached
, verbose
, abbrev
);
625 else if (rename
&& (i
== argc
- 1))
626 rename_branch(head
, argv
[i
], force_rename
);
627 else if (rename
&& (i
== argc
- 2))
628 rename_branch(argv
[i
], argv
[i
+ 1], force_rename
);
629 else if (i
== argc
- 1 || i
== argc
- 2)
630 create_branch(argv
[i
], (i
== argc
- 2) ? argv
[i
+1] : head
,
631 force_create
, reflog
, track
);
633 usage(builtin_branch_usage
);