Teach Git to respect skip-worktree bit (reading part)
[git/dscho.git] / builtin-commit.c
bloba0b1fd35cbacafd5afb79d3aa7a0e38e28960e8f
1 /*
2 * Builtin "git commit"
4 * Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>
5 * Based on git-commit.sh by Junio C Hamano and Linus Torvalds
6 */
8 #include "cache.h"
9 #include "cache-tree.h"
10 #include "color.h"
11 #include "dir.h"
12 #include "builtin.h"
13 #include "diff.h"
14 #include "diffcore.h"
15 #include "commit.h"
16 #include "revision.h"
17 #include "wt-status.h"
18 #include "run-command.h"
19 #include "refs.h"
20 #include "log-tree.h"
21 #include "strbuf.h"
22 #include "utf8.h"
23 #include "parse-options.h"
24 #include "string-list.h"
25 #include "rerere.h"
26 #include "unpack-trees.h"
28 static const char * const builtin_commit_usage[] = {
29 "git commit [options] [--] <filepattern>...",
30 NULL
33 static const char * const builtin_status_usage[] = {
34 "git status [options] [--] <filepattern>...",
35 NULL
38 static unsigned char head_sha1[20], merge_head_sha1[20];
39 static char *use_message_buffer;
40 static const char commit_editmsg[] = "COMMIT_EDITMSG";
41 static struct lock_file index_lock; /* real index */
42 static struct lock_file false_lock; /* used only for partial commits */
43 static enum {
44 COMMIT_AS_IS = 1,
45 COMMIT_NORMAL,
46 COMMIT_PARTIAL,
47 } commit_style;
49 static const char *logfile, *force_author;
50 static const char *template_file;
51 static char *edit_message, *use_message;
52 static char *author_name, *author_email, *author_date;
53 static int all, edit_flag, also, interactive, only, amend, signoff;
54 static int quiet, verbose, no_verify, allow_empty;
55 static char *untracked_files_arg;
57 * The default commit message cleanup mode will remove the lines
58 * beginning with # (shell comments) and leading and trailing
59 * whitespaces (empty lines or containing only whitespaces)
60 * if editor is used, and only the whitespaces if the message
61 * is specified explicitly.
63 static enum {
64 CLEANUP_SPACE,
65 CLEANUP_NONE,
66 CLEANUP_ALL,
67 } cleanup_mode;
68 static char *cleanup_arg;
70 static int use_editor = 1, initial_commit, in_merge;
71 static const char *only_include_assumed;
72 static struct strbuf message;
74 static int opt_parse_m(const struct option *opt, const char *arg, int unset)
76 struct strbuf *buf = opt->value;
77 if (unset)
78 strbuf_setlen(buf, 0);
79 else {
80 strbuf_addstr(buf, arg);
81 strbuf_addstr(buf, "\n\n");
83 return 0;
86 static struct option builtin_commit_options[] = {
87 OPT__QUIET(&quiet),
88 OPT__VERBOSE(&verbose),
89 OPT_GROUP("Commit message options"),
91 OPT_FILENAME('F', "file", &logfile, "read log from file"),
92 OPT_STRING(0, "author", &force_author, "AUTHOR", "override author for commit"),
93 OPT_CALLBACK('m', "message", &message, "MESSAGE", "specify commit message", opt_parse_m),
94 OPT_STRING('c', "reedit-message", &edit_message, "COMMIT", "reuse and edit message from specified commit "),
95 OPT_STRING('C', "reuse-message", &use_message, "COMMIT", "reuse message from specified commit"),
96 OPT_BOOLEAN('s', "signoff", &signoff, "add Signed-off-by:"),
97 OPT_FILENAME('t', "template", &template_file, "use specified template file"),
98 OPT_BOOLEAN('e', "edit", &edit_flag, "force edit of commit"),
100 OPT_GROUP("Commit contents options"),
101 OPT_BOOLEAN('a', "all", &all, "commit all changed files"),
102 OPT_BOOLEAN('i', "include", &also, "add specified files to index for commit"),
103 OPT_BOOLEAN(0, "interactive", &interactive, "interactively add files"),
104 OPT_BOOLEAN('o', "only", &only, "commit only specified files"),
105 OPT_BOOLEAN('n', "no-verify", &no_verify, "bypass pre-commit hook"),
106 OPT_BOOLEAN(0, "amend", &amend, "amend previous commit"),
107 { OPTION_STRING, 'u', "untracked-files", &untracked_files_arg, "mode", "show untracked files, optional modes: all, normal, no. (Default: all)", PARSE_OPT_OPTARG, NULL, (intptr_t)"all" },
108 OPT_BOOLEAN(0, "allow-empty", &allow_empty, "ok to record an empty change"),
109 OPT_STRING(0, "cleanup", &cleanup_arg, "default", "how to strip spaces and #comments from message"),
111 OPT_END()
114 static void rollback_index_files(void)
116 switch (commit_style) {
117 case COMMIT_AS_IS:
118 break; /* nothing to do */
119 case COMMIT_NORMAL:
120 rollback_lock_file(&index_lock);
121 break;
122 case COMMIT_PARTIAL:
123 rollback_lock_file(&index_lock);
124 rollback_lock_file(&false_lock);
125 break;
129 static int commit_index_files(void)
131 int err = 0;
133 switch (commit_style) {
134 case COMMIT_AS_IS:
135 break; /* nothing to do */
136 case COMMIT_NORMAL:
137 err = commit_lock_file(&index_lock);
138 break;
139 case COMMIT_PARTIAL:
140 err = commit_lock_file(&index_lock);
141 rollback_lock_file(&false_lock);
142 break;
145 return err;
149 * Take a union of paths in the index and the named tree (typically, "HEAD"),
150 * and return the paths that match the given pattern in list.
152 static int list_paths(struct string_list *list, const char *with_tree,
153 const char *prefix, const char **pattern)
155 int i;
156 char *m;
158 for (i = 0; pattern[i]; i++)
160 m = xcalloc(1, i);
162 if (with_tree)
163 overlay_tree_on_cache(with_tree, prefix);
165 for (i = 0; i < active_nr; i++) {
166 struct cache_entry *ce = active_cache[i];
167 if (ce->ce_flags & CE_UPDATE)
168 continue;
169 if (!match_pathspec(pattern, ce->name, ce_namelen(ce), 0, m))
170 continue;
171 string_list_insert(ce->name, list);
174 return report_path_error(m, pattern, prefix ? strlen(prefix) : 0);
177 static void add_remove_files(struct string_list *list)
179 int i;
180 for (i = 0; i < list->nr; i++) {
181 struct stat st;
182 struct string_list_item *p = &(list->items[i]);
183 int pos = index_name_pos(&the_index, p->string, strlen(p->string));
184 struct cache_entry *ce = pos < 0 ? NULL : active_cache[pos];
186 if (ce && ce_skip_worktree(ce))
187 continue;
189 if (!lstat(p->string, &st)) {
190 if (add_to_cache(p->string, &st, 0))
191 die("updating files failed");
192 } else
193 remove_file_from_cache(p->string);
197 static void create_base_index(void)
199 struct tree *tree;
200 struct unpack_trees_options opts;
201 struct tree_desc t;
203 if (initial_commit) {
204 discard_cache();
205 return;
208 memset(&opts, 0, sizeof(opts));
209 opts.head_idx = 1;
210 opts.index_only = 1;
211 opts.merge = 1;
212 opts.src_index = &the_index;
213 opts.dst_index = &the_index;
215 opts.fn = oneway_merge;
216 tree = parse_tree_indirect(head_sha1);
217 if (!tree)
218 die("failed to unpack HEAD tree object");
219 parse_tree(tree);
220 init_tree_desc(&t, tree->buffer, tree->size);
221 if (unpack_trees(1, &t, &opts))
222 exit(128); /* We've already reported the error, finish dying */
225 static char *prepare_index(int argc, const char **argv, const char *prefix)
227 int fd;
228 struct string_list partial;
229 const char **pathspec = NULL;
231 if (interactive) {
232 if (interactive_add(argc, argv, prefix) != 0)
233 die("interactive add failed");
234 if (read_cache_preload(NULL) < 0)
235 die("index file corrupt");
236 commit_style = COMMIT_AS_IS;
237 return get_index_file();
240 if (*argv)
241 pathspec = get_pathspec(prefix, argv);
243 if (read_cache_preload(pathspec) < 0)
244 die("index file corrupt");
247 * Non partial, non as-is commit.
249 * (1) get the real index;
250 * (2) update the_index as necessary;
251 * (3) write the_index out to the real index (still locked);
252 * (4) return the name of the locked index file.
254 * The caller should run hooks on the locked real index, and
255 * (A) if all goes well, commit the real index;
256 * (B) on failure, rollback the real index.
258 if (all || (also && pathspec && *pathspec)) {
259 int fd = hold_locked_index(&index_lock, 1);
260 add_files_to_cache(also ? prefix : NULL, pathspec, 0);
261 refresh_cache(REFRESH_QUIET);
262 if (write_cache(fd, active_cache, active_nr) ||
263 close_lock_file(&index_lock))
264 die("unable to write new_index file");
265 commit_style = COMMIT_NORMAL;
266 return index_lock.filename;
270 * As-is commit.
272 * (1) return the name of the real index file.
274 * The caller should run hooks on the real index, and run
275 * hooks on the real index, and create commit from the_index.
276 * We still need to refresh the index here.
278 if (!pathspec || !*pathspec) {
279 fd = hold_locked_index(&index_lock, 1);
280 refresh_cache(REFRESH_QUIET);
281 if (write_cache(fd, active_cache, active_nr) ||
282 commit_locked_index(&index_lock))
283 die("unable to write new_index file");
284 commit_style = COMMIT_AS_IS;
285 return get_index_file();
289 * A partial commit.
291 * (0) find the set of affected paths;
292 * (1) get lock on the real index file;
293 * (2) update the_index with the given paths;
294 * (3) write the_index out to the real index (still locked);
295 * (4) get lock on the false index file;
296 * (5) reset the_index from HEAD;
297 * (6) update the_index the same way as (2);
298 * (7) write the_index out to the false index file;
299 * (8) return the name of the false index file (still locked);
301 * The caller should run hooks on the locked false index, and
302 * create commit from it. Then
303 * (A) if all goes well, commit the real index;
304 * (B) on failure, rollback the real index;
305 * In either case, rollback the false index.
307 commit_style = COMMIT_PARTIAL;
309 if (file_exists(git_path("MERGE_HEAD")))
310 die("cannot do a partial commit during a merge.");
312 memset(&partial, 0, sizeof(partial));
313 partial.strdup_strings = 1;
314 if (list_paths(&partial, initial_commit ? NULL : "HEAD", prefix, pathspec))
315 exit(1);
317 discard_cache();
318 if (read_cache() < 0)
319 die("cannot read the index");
321 fd = hold_locked_index(&index_lock, 1);
322 add_remove_files(&partial);
323 refresh_cache(REFRESH_QUIET);
324 if (write_cache(fd, active_cache, active_nr) ||
325 close_lock_file(&index_lock))
326 die("unable to write new_index file");
328 fd = hold_lock_file_for_update(&false_lock,
329 git_path("next-index-%"PRIuMAX,
330 (uintmax_t) getpid()),
331 LOCK_DIE_ON_ERROR);
333 create_base_index();
334 add_remove_files(&partial);
335 refresh_cache(REFRESH_QUIET);
337 if (write_cache(fd, active_cache, active_nr) ||
338 close_lock_file(&false_lock))
339 die("unable to write temporary index file");
341 discard_cache();
342 read_cache_from(false_lock.filename);
344 return false_lock.filename;
347 static int run_status(FILE *fp, const char *index_file, const char *prefix, int nowarn)
349 struct wt_status s;
351 wt_status_prepare(&s);
352 if (wt_status_relative_paths)
353 s.prefix = prefix;
355 if (amend) {
356 s.amend = 1;
357 s.reference = "HEAD^1";
359 s.verbose = verbose;
360 s.untracked = (show_untracked_files == SHOW_ALL_UNTRACKED_FILES);
361 s.index_file = index_file;
362 s.fp = fp;
363 s.nowarn = nowarn;
365 wt_status_print(&s);
367 return s.commitable;
370 static int is_a_merge(const unsigned char *sha1)
372 struct commit *commit = lookup_commit(sha1);
373 if (!commit || parse_commit(commit))
374 die("could not parse HEAD commit");
375 return !!(commit->parents && commit->parents->next);
378 static const char sign_off_header[] = "Signed-off-by: ";
380 static void determine_author_info(void)
382 char *name, *email, *date;
384 name = getenv("GIT_AUTHOR_NAME");
385 email = getenv("GIT_AUTHOR_EMAIL");
386 date = getenv("GIT_AUTHOR_DATE");
388 if (use_message) {
389 const char *a, *lb, *rb, *eol;
391 a = strstr(use_message_buffer, "\nauthor ");
392 if (!a)
393 die("invalid commit: %s", use_message);
395 lb = strstr(a + 8, " <");
396 rb = strstr(a + 8, "> ");
397 eol = strchr(a + 8, '\n');
398 if (!lb || !rb || !eol)
399 die("invalid commit: %s", use_message);
401 name = xstrndup(a + 8, lb - (a + 8));
402 email = xstrndup(lb + 2, rb - (lb + 2));
403 date = xstrndup(rb + 2, eol - (rb + 2));
406 if (force_author) {
407 const char *lb = strstr(force_author, " <");
408 const char *rb = strchr(force_author, '>');
410 if (!lb || !rb)
411 die("malformed --author parameter");
412 name = xstrndup(force_author, lb - force_author);
413 email = xstrndup(lb + 2, rb - (lb + 2));
416 author_name = name;
417 author_email = email;
418 author_date = date;
421 static int prepare_to_commit(const char *index_file, const char *prefix)
423 struct stat statbuf;
424 int commitable, saved_color_setting;
425 struct strbuf sb = STRBUF_INIT;
426 char *buffer;
427 FILE *fp;
428 const char *hook_arg1 = NULL;
429 const char *hook_arg2 = NULL;
430 int ident_shown = 0;
432 if (!no_verify && run_hook(index_file, "pre-commit", NULL))
433 return 0;
435 if (message.len) {
436 strbuf_addbuf(&sb, &message);
437 hook_arg1 = "message";
438 } else if (logfile && !strcmp(logfile, "-")) {
439 if (isatty(0))
440 fprintf(stderr, "(reading log message from standard input)\n");
441 if (strbuf_read(&sb, 0, 0) < 0)
442 die_errno("could not read log from standard input");
443 hook_arg1 = "message";
444 } else if (logfile) {
445 if (strbuf_read_file(&sb, logfile, 0) < 0)
446 die_errno("could not read log file '%s'",
447 logfile);
448 hook_arg1 = "message";
449 } else if (use_message) {
450 buffer = strstr(use_message_buffer, "\n\n");
451 if (!buffer || buffer[2] == '\0')
452 die("commit has empty message");
453 strbuf_add(&sb, buffer + 2, strlen(buffer + 2));
454 hook_arg1 = "commit";
455 hook_arg2 = use_message;
456 } else if (!stat(git_path("MERGE_MSG"), &statbuf)) {
457 if (strbuf_read_file(&sb, git_path("MERGE_MSG"), 0) < 0)
458 die_errno("could not read MERGE_MSG");
459 hook_arg1 = "merge";
460 } else if (!stat(git_path("SQUASH_MSG"), &statbuf)) {
461 if (strbuf_read_file(&sb, git_path("SQUASH_MSG"), 0) < 0)
462 die_errno("could not read SQUASH_MSG");
463 hook_arg1 = "squash";
464 } else if (template_file && !stat(template_file, &statbuf)) {
465 if (strbuf_read_file(&sb, template_file, 0) < 0)
466 die_errno("could not read '%s'", template_file);
467 hook_arg1 = "template";
471 * This final case does not modify the template message,
472 * it just sets the argument to the prepare-commit-msg hook.
474 else if (in_merge)
475 hook_arg1 = "merge";
477 fp = fopen(git_path(commit_editmsg), "w");
478 if (fp == NULL)
479 die_errno("could not open '%s'", git_path(commit_editmsg));
481 if (cleanup_mode != CLEANUP_NONE)
482 stripspace(&sb, 0);
484 if (signoff) {
485 struct strbuf sob = STRBUF_INIT;
486 int i;
488 strbuf_addstr(&sob, sign_off_header);
489 strbuf_addstr(&sob, fmt_name(getenv("GIT_COMMITTER_NAME"),
490 getenv("GIT_COMMITTER_EMAIL")));
491 strbuf_addch(&sob, '\n');
492 for (i = sb.len - 1; i > 0 && sb.buf[i - 1] != '\n'; i--)
493 ; /* do nothing */
494 if (prefixcmp(sb.buf + i, sob.buf)) {
495 if (prefixcmp(sb.buf + i, sign_off_header))
496 strbuf_addch(&sb, '\n');
497 strbuf_addbuf(&sb, &sob);
499 strbuf_release(&sob);
502 if (fwrite(sb.buf, 1, sb.len, fp) < sb.len)
503 die_errno("could not write commit template");
505 strbuf_release(&sb);
507 determine_author_info();
509 /* This checks if committer ident is explicitly given */
510 git_committer_info(0);
511 if (use_editor) {
512 char *author_ident;
513 const char *committer_ident;
515 if (in_merge)
516 fprintf(fp,
517 "#\n"
518 "# It looks like you may be committing a MERGE.\n"
519 "# If this is not correct, please remove the file\n"
520 "# %s\n"
521 "# and try again.\n"
522 "#\n",
523 git_path("MERGE_HEAD"));
525 fprintf(fp,
526 "\n"
527 "# Please enter the commit message for your changes.");
528 if (cleanup_mode == CLEANUP_ALL)
529 fprintf(fp,
530 " Lines starting\n"
531 "# with '#' will be ignored, and an empty"
532 " message aborts the commit.\n");
533 else /* CLEANUP_SPACE, that is. */
534 fprintf(fp,
535 " Lines starting\n"
536 "# with '#' will be kept; you may remove them"
537 " yourself if you want to.\n"
538 "# An empty message aborts the commit.\n");
539 if (only_include_assumed)
540 fprintf(fp, "# %s\n", only_include_assumed);
542 author_ident = xstrdup(fmt_name(author_name, author_email));
543 committer_ident = fmt_name(getenv("GIT_COMMITTER_NAME"),
544 getenv("GIT_COMMITTER_EMAIL"));
545 if (strcmp(author_ident, committer_ident))
546 fprintf(fp,
547 "%s"
548 "# Author: %s\n",
549 ident_shown++ ? "" : "#\n",
550 author_ident);
551 free(author_ident);
553 if (!user_ident_explicitly_given)
554 fprintf(fp,
555 "%s"
556 "# Committer: %s\n",
557 ident_shown++ ? "" : "#\n",
558 committer_ident);
560 if (ident_shown)
561 fprintf(fp, "#\n");
563 saved_color_setting = wt_status_use_color;
564 wt_status_use_color = 0;
565 commitable = run_status(fp, index_file, prefix, 1);
566 wt_status_use_color = saved_color_setting;
567 } else {
568 unsigned char sha1[20];
569 const char *parent = "HEAD";
571 if (!active_nr && read_cache() < 0)
572 die("Cannot read index");
574 if (amend)
575 parent = "HEAD^1";
577 if (get_sha1(parent, sha1))
578 commitable = !!active_nr;
579 else
580 commitable = index_differs_from(parent, 0);
583 fclose(fp);
585 if (!commitable && !in_merge && !allow_empty &&
586 !(amend && is_a_merge(head_sha1))) {
587 run_status(stdout, index_file, prefix, 0);
588 return 0;
592 * Re-read the index as pre-commit hook could have updated it,
593 * and write it out as a tree. We must do this before we invoke
594 * the editor and after we invoke run_status above.
596 discard_cache();
597 read_cache_from(index_file);
598 if (!active_cache_tree)
599 active_cache_tree = cache_tree();
600 if (cache_tree_update(active_cache_tree,
601 active_cache, active_nr, 0, 0) < 0) {
602 error("Error building trees");
603 return 0;
606 if (run_hook(index_file, "prepare-commit-msg",
607 git_path(commit_editmsg), hook_arg1, hook_arg2, NULL))
608 return 0;
610 if (use_editor) {
611 char index[PATH_MAX];
612 const char *env[2] = { index, NULL };
613 snprintf(index, sizeof(index), "GIT_INDEX_FILE=%s", index_file);
614 if (launch_editor(git_path(commit_editmsg), NULL, env)) {
615 fprintf(stderr,
616 "Please supply the message using either -m or -F option.\n");
617 exit(1);
621 if (!no_verify &&
622 run_hook(index_file, "commit-msg", git_path(commit_editmsg), NULL)) {
623 return 0;
626 return 1;
630 * Find out if the message in the strbuf contains only whitespace and
631 * Signed-off-by lines.
633 static int message_is_empty(struct strbuf *sb)
635 struct strbuf tmpl = STRBUF_INIT;
636 const char *nl;
637 int eol, i, start = 0;
639 if (cleanup_mode == CLEANUP_NONE && sb->len)
640 return 0;
642 /* See if the template is just a prefix of the message. */
643 if (template_file && strbuf_read_file(&tmpl, template_file, 0) > 0) {
644 stripspace(&tmpl, cleanup_mode == CLEANUP_ALL);
645 if (start + tmpl.len <= sb->len &&
646 memcmp(tmpl.buf, sb->buf + start, tmpl.len) == 0)
647 start += tmpl.len;
649 strbuf_release(&tmpl);
651 /* Check if the rest is just whitespace and Signed-of-by's. */
652 for (i = start; i < sb->len; i++) {
653 nl = memchr(sb->buf + i, '\n', sb->len - i);
654 if (nl)
655 eol = nl - sb->buf;
656 else
657 eol = sb->len;
659 if (strlen(sign_off_header) <= eol - i &&
660 !prefixcmp(sb->buf + i, sign_off_header)) {
661 i = eol;
662 continue;
664 while (i < eol)
665 if (!isspace(sb->buf[i++]))
666 return 0;
669 return 1;
672 static const char *find_author_by_nickname(const char *name)
674 struct rev_info revs;
675 struct commit *commit;
676 struct strbuf buf = STRBUF_INIT;
677 const char *av[20];
678 int ac = 0;
680 init_revisions(&revs, NULL);
681 strbuf_addf(&buf, "--author=%s", name);
682 av[++ac] = "--all";
683 av[++ac] = "-i";
684 av[++ac] = buf.buf;
685 av[++ac] = NULL;
686 setup_revisions(ac, av, &revs, NULL);
687 prepare_revision_walk(&revs);
688 commit = get_revision(&revs);
689 if (commit) {
690 strbuf_release(&buf);
691 format_commit_message(commit, "%an <%ae>", &buf, DATE_NORMAL);
692 return strbuf_detach(&buf, NULL);
694 die("No existing author found with '%s'", name);
697 static int parse_and_validate_options(int argc, const char *argv[],
698 const char * const usage[],
699 const char *prefix)
701 int f = 0;
703 argc = parse_options(argc, argv, prefix, builtin_commit_options, usage,
706 if (force_author && !strchr(force_author, '>'))
707 force_author = find_author_by_nickname(force_author);
709 if (logfile || message.len || use_message)
710 use_editor = 0;
711 if (edit_flag)
712 use_editor = 1;
713 if (!use_editor)
714 setenv("GIT_EDITOR", ":", 1);
716 if (get_sha1("HEAD", head_sha1))
717 initial_commit = 1;
719 if (!get_sha1("MERGE_HEAD", merge_head_sha1))
720 in_merge = 1;
722 /* Sanity check options */
723 if (amend && initial_commit)
724 die("You have nothing to amend.");
725 if (amend && in_merge)
726 die("You are in the middle of a merge -- cannot amend.");
728 if (use_message)
729 f++;
730 if (edit_message)
731 f++;
732 if (logfile)
733 f++;
734 if (f > 1)
735 die("Only one of -c/-C/-F can be used.");
736 if (message.len && f > 0)
737 die("Option -m cannot be combined with -c/-C/-F.");
738 if (edit_message)
739 use_message = edit_message;
740 if (amend && !use_message)
741 use_message = "HEAD";
742 if (use_message) {
743 unsigned char sha1[20];
744 static char utf8[] = "UTF-8";
745 const char *out_enc;
746 char *enc, *end;
747 struct commit *commit;
749 if (get_sha1(use_message, sha1))
750 die("could not lookup commit %s", use_message);
751 commit = lookup_commit_reference(sha1);
752 if (!commit || parse_commit(commit))
753 die("could not parse commit %s", use_message);
755 enc = strstr(commit->buffer, "\nencoding");
756 if (enc) {
757 end = strchr(enc + 10, '\n');
758 enc = xstrndup(enc + 10, end - (enc + 10));
759 } else {
760 enc = utf8;
762 out_enc = git_commit_encoding ? git_commit_encoding : utf8;
764 if (strcmp(out_enc, enc))
765 use_message_buffer =
766 reencode_string(commit->buffer, out_enc, enc);
769 * If we failed to reencode the buffer, just copy it
770 * byte for byte so the user can try to fix it up.
771 * This also handles the case where input and output
772 * encodings are identical.
774 if (use_message_buffer == NULL)
775 use_message_buffer = xstrdup(commit->buffer);
776 if (enc != utf8)
777 free(enc);
780 if (!!also + !!only + !!all + !!interactive > 1)
781 die("Only one of --include/--only/--all/--interactive can be used.");
782 if (argc == 0 && (also || (only && !amend)))
783 die("No paths with --include/--only does not make sense.");
784 if (argc == 0 && only && amend)
785 only_include_assumed = "Clever... amending the last one with dirty index.";
786 if (argc > 0 && !also && !only)
787 only_include_assumed = "Explicit paths specified without -i nor -o; assuming --only paths...";
788 if (!cleanup_arg || !strcmp(cleanup_arg, "default"))
789 cleanup_mode = use_editor ? CLEANUP_ALL : CLEANUP_SPACE;
790 else if (!strcmp(cleanup_arg, "verbatim"))
791 cleanup_mode = CLEANUP_NONE;
792 else if (!strcmp(cleanup_arg, "whitespace"))
793 cleanup_mode = CLEANUP_SPACE;
794 else if (!strcmp(cleanup_arg, "strip"))
795 cleanup_mode = CLEANUP_ALL;
796 else
797 die("Invalid cleanup mode %s", cleanup_arg);
799 if (!untracked_files_arg)
800 ; /* default already initialized */
801 else if (!strcmp(untracked_files_arg, "no"))
802 show_untracked_files = SHOW_NO_UNTRACKED_FILES;
803 else if (!strcmp(untracked_files_arg, "normal"))
804 show_untracked_files = SHOW_NORMAL_UNTRACKED_FILES;
805 else if (!strcmp(untracked_files_arg, "all"))
806 show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
807 else
808 die("Invalid untracked files mode '%s'", untracked_files_arg);
810 if (all && argc > 0)
811 die("Paths with -a does not make sense.");
812 else if (interactive && argc > 0)
813 die("Paths with --interactive does not make sense.");
815 return argc;
818 int cmd_status(int argc, const char **argv, const char *prefix)
820 const char *index_file;
821 int commitable;
823 git_config(git_status_config, NULL);
825 if (wt_status_use_color == -1)
826 wt_status_use_color = git_use_color_default;
828 if (diff_use_color_default == -1)
829 diff_use_color_default = git_use_color_default;
831 argc = parse_and_validate_options(argc, argv, builtin_status_usage, prefix);
833 index_file = prepare_index(argc, argv, prefix);
835 commitable = run_status(stdout, index_file, prefix, 0);
837 rollback_index_files();
839 return commitable ? 0 : 1;
842 static void print_summary(const char *prefix, const unsigned char *sha1)
844 struct rev_info rev;
845 struct commit *commit;
846 static const char *format = "format:%h] %s";
847 unsigned char junk_sha1[20];
848 const char *head = resolve_ref("HEAD", junk_sha1, 0, NULL);
850 commit = lookup_commit(sha1);
851 if (!commit)
852 die("couldn't look up newly created commit");
853 if (!commit || parse_commit(commit))
854 die("could not parse newly created commit");
856 init_revisions(&rev, prefix);
857 setup_revisions(0, NULL, &rev, NULL);
859 rev.abbrev = 0;
860 rev.diff = 1;
861 rev.diffopt.output_format =
862 DIFF_FORMAT_SHORTSTAT | DIFF_FORMAT_SUMMARY;
864 rev.verbose_header = 1;
865 rev.show_root_diff = 1;
866 get_commit_format(format, &rev);
867 rev.always_show_header = 0;
868 rev.diffopt.detect_rename = 1;
869 rev.diffopt.rename_limit = 100;
870 rev.diffopt.break_opt = 0;
871 diff_setup_done(&rev.diffopt);
873 printf("[%s%s ",
874 !prefixcmp(head, "refs/heads/") ?
875 head + 11 :
876 !strcmp(head, "HEAD") ?
877 "detached HEAD" :
878 head,
879 initial_commit ? " (root-commit)" : "");
881 if (!log_tree_commit(&rev, commit)) {
882 struct strbuf buf = STRBUF_INIT;
883 format_commit_message(commit, format + 7, &buf, DATE_NORMAL);
884 printf("%s\n", buf.buf);
885 strbuf_release(&buf);
889 static int git_commit_config(const char *k, const char *v, void *cb)
891 if (!strcmp(k, "commit.template"))
892 return git_config_string(&template_file, k, v);
894 return git_status_config(k, v, cb);
897 int cmd_commit(int argc, const char **argv, const char *prefix)
899 struct strbuf sb = STRBUF_INIT;
900 const char *index_file, *reflog_msg;
901 char *nl, *p;
902 unsigned char commit_sha1[20];
903 struct ref_lock *ref_lock;
904 struct commit_list *parents = NULL, **pptr = &parents;
905 struct stat statbuf;
906 int allow_fast_forward = 1;
908 git_config(git_commit_config, NULL);
910 if (wt_status_use_color == -1)
911 wt_status_use_color = git_use_color_default;
913 argc = parse_and_validate_options(argc, argv, builtin_commit_usage, prefix);
915 index_file = prepare_index(argc, argv, prefix);
917 /* Set up everything for writing the commit object. This includes
918 running hooks, writing the trees, and interacting with the user. */
919 if (!prepare_to_commit(index_file, prefix)) {
920 rollback_index_files();
921 return 1;
924 /* Determine parents */
925 if (initial_commit) {
926 reflog_msg = "commit (initial)";
927 } else if (amend) {
928 struct commit_list *c;
929 struct commit *commit;
931 reflog_msg = "commit (amend)";
932 commit = lookup_commit(head_sha1);
933 if (!commit || parse_commit(commit))
934 die("could not parse HEAD commit");
936 for (c = commit->parents; c; c = c->next)
937 pptr = &commit_list_insert(c->item, pptr)->next;
938 } else if (in_merge) {
939 struct strbuf m = STRBUF_INIT;
940 FILE *fp;
942 reflog_msg = "commit (merge)";
943 pptr = &commit_list_insert(lookup_commit(head_sha1), pptr)->next;
944 fp = fopen(git_path("MERGE_HEAD"), "r");
945 if (fp == NULL)
946 die_errno("could not open '%s' for reading",
947 git_path("MERGE_HEAD"));
948 while (strbuf_getline(&m, fp, '\n') != EOF) {
949 unsigned char sha1[20];
950 if (get_sha1_hex(m.buf, sha1) < 0)
951 die("Corrupt MERGE_HEAD file (%s)", m.buf);
952 pptr = &commit_list_insert(lookup_commit(sha1), pptr)->next;
954 fclose(fp);
955 strbuf_release(&m);
956 if (!stat(git_path("MERGE_MODE"), &statbuf)) {
957 if (strbuf_read_file(&sb, git_path("MERGE_MODE"), 0) < 0)
958 die_errno("could not read MERGE_MODE");
959 if (!strcmp(sb.buf, "no-ff"))
960 allow_fast_forward = 0;
962 if (allow_fast_forward)
963 parents = reduce_heads(parents);
964 } else {
965 reflog_msg = "commit";
966 pptr = &commit_list_insert(lookup_commit(head_sha1), pptr)->next;
969 /* Finally, get the commit message */
970 strbuf_reset(&sb);
971 if (strbuf_read_file(&sb, git_path(commit_editmsg), 0) < 0) {
972 int saved_errno = errno;
973 rollback_index_files();
974 die("could not read commit message: %s", strerror(saved_errno));
977 /* Truncate the message just before the diff, if any. */
978 if (verbose) {
979 p = strstr(sb.buf, "\ndiff --git ");
980 if (p != NULL)
981 strbuf_setlen(&sb, p - sb.buf + 1);
984 if (cleanup_mode != CLEANUP_NONE)
985 stripspace(&sb, cleanup_mode == CLEANUP_ALL);
986 if (message_is_empty(&sb)) {
987 rollback_index_files();
988 fprintf(stderr, "Aborting commit due to empty commit message.\n");
989 exit(1);
992 if (commit_tree(sb.buf, active_cache_tree->sha1, parents, commit_sha1,
993 fmt_ident(author_name, author_email, author_date,
994 IDENT_ERROR_ON_NO_NAME))) {
995 rollback_index_files();
996 die("failed to write commit object");
999 ref_lock = lock_any_ref_for_update("HEAD",
1000 initial_commit ? NULL : head_sha1,
1003 nl = strchr(sb.buf, '\n');
1004 if (nl)
1005 strbuf_setlen(&sb, nl + 1 - sb.buf);
1006 else
1007 strbuf_addch(&sb, '\n');
1008 strbuf_insert(&sb, 0, reflog_msg, strlen(reflog_msg));
1009 strbuf_insert(&sb, strlen(reflog_msg), ": ", 2);
1011 if (!ref_lock) {
1012 rollback_index_files();
1013 die("cannot lock HEAD ref");
1015 if (write_ref_sha1(ref_lock, commit_sha1, sb.buf) < 0) {
1016 rollback_index_files();
1017 die("cannot update HEAD ref");
1020 unlink(git_path("MERGE_HEAD"));
1021 unlink(git_path("MERGE_MSG"));
1022 unlink(git_path("MERGE_MODE"));
1023 unlink(git_path("SQUASH_MSG"));
1025 if (commit_index_files())
1026 die ("Repository has been updated, but unable to write\n"
1027 "new_index file. Check that disk is not full or quota is\n"
1028 "not exceeded, and then \"git reset HEAD\" to recover.");
1030 rerere();
1031 run_hook(get_index_file(), "post-commit", NULL);
1032 if (!quiet)
1033 print_summary(prefix, commit_sha1);
1035 return 0;