4 * Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>
5 * Based on git-commit.sh by Junio C Hamano and Linus Torvalds
9 #include "cache-tree.h"
17 #include "wt-status.h"
18 #include "run-command.h"
23 #include "parse-options.h"
24 #include "path-list.h"
25 #include "unpack-trees.h"
27 static const char * const builtin_commit_usage[] = {
28 "git-commit [options] [--] <filepattern>...",
32 static const char * const builtin_status_usage[] = {
33 "git-status [options] [--] <filepattern>...",
37 static unsigned char head_sha1[20], merge_head_sha1[20];
38 static char *use_message_buffer;
39 static const char commit_editmsg[] = "COMMIT_EDITMSG";
40 static struct lock_file index_lock; /* real index */
41 static struct lock_file false_lock; /* used only for partial commits */
48 static const char *logfile, *force_author;
49 static const char *template_file;
50 static char *edit_message, *use_message;
51 static char *author_name, *author_email, *author_date;
52 static int all, edit_flag, also, interactive, only, amend, signoff;
53 static int quiet, verbose, untracked_files, no_verify, allow_empty;
55 * The default commit message cleanup mode will remove the lines
56 * beginning with # (shell comments) and leading and trailing
57 * whitespaces (empty lines or containing only whitespaces)
58 * if editor is used, and only the whitespaces if the message
59 * is specified explicitly.
66 static char *cleanup_arg;
68 static int use_editor = 1, initial_commit, in_merge;
69 const char *only_include_assumed;
70 struct strbuf message;
72 static int opt_parse_m(const struct option *opt, const char *arg, int unset)
74 struct strbuf *buf = opt->value;
76 strbuf_setlen(buf, 0);
78 strbuf_addstr(buf, arg);
79 strbuf_addch(buf, '\n');
80 strbuf_addch(buf, '\n');
85 static struct option builtin_commit_options[] = {
87 OPT__VERBOSE(&verbose),
88 OPT_GROUP("Commit message options"),
90 OPT_STRING('F', "file", &logfile, "FILE", "read log from file"),
91 OPT_STRING(0, "author", &force_author, "AUTHOR", "override author for commit"),
92 OPT_CALLBACK('m', "message", &message, "MESSAGE", "specify commit message", opt_parse_m),
93 OPT_STRING('c', "reedit-message", &edit_message, "COMMIT", "reuse and edit message from specified commit "),
94 OPT_STRING('C', "reuse-message", &use_message, "COMMIT", "reuse message from specified commit"),
95 OPT_BOOLEAN('s', "signoff", &signoff, "add Signed-off-by:"),
96 OPT_STRING('t', "template", &template_file, "FILE", "use specified template file"),
97 OPT_BOOLEAN('e', "edit", &edit_flag, "force edit of commit"),
99 OPT_GROUP("Commit contents options"),
100 OPT_BOOLEAN('a', "all", &all, "commit all changed files"),
101 OPT_BOOLEAN('i', "include", &also, "add specified files to index for commit"),
102 OPT_BOOLEAN(0, "interactive", &interactive, "interactively add files"),
103 OPT_BOOLEAN('o', "only", &only, "commit only specified files"),
104 OPT_BOOLEAN('n', "no-verify", &no_verify, "bypass pre-commit hook"),
105 OPT_BOOLEAN(0, "amend", &amend, "amend previous commit"),
106 OPT_BOOLEAN('u', "untracked-files", &untracked_files, "show all untracked files"),
107 OPT_BOOLEAN(0, "allow-empty", &allow_empty, "ok to record an empty change"),
108 OPT_STRING(0, "cleanup", &cleanup_arg, "default", "how to strip spaces and #comments from message"),
113 static void rollback_index_files(void)
115 switch (commit_style) {
117 break; /* nothing to do */
119 rollback_lock_file(&index_lock);
122 rollback_lock_file(&index_lock);
123 rollback_lock_file(&false_lock);
128 static int commit_index_files(void)
132 switch (commit_style) {
134 break; /* nothing to do */
136 err = commit_lock_file(&index_lock);
139 err = commit_lock_file(&index_lock);
140 rollback_lock_file(&false_lock);
148 * Take a union of paths in the index and the named tree (typically, "HEAD"),
149 * and return the paths that match the given pattern in list.
151 static int list_paths(struct path_list *list, const char *with_tree,
152 const char *prefix, const char **pattern)
157 for (i = 0; pattern[i]; i++)
162 overlay_tree_on_cache(with_tree, prefix);
164 for (i = 0; i < active_nr; i++) {
165 struct cache_entry *ce = active_cache[i];
166 if (ce->ce_flags & CE_UPDATE)
168 if (!pathspec_match(pattern, m, ce->name, 0))
170 path_list_insert(ce->name, list);
173 return report_path_error(m, pattern, prefix ? strlen(prefix) : 0);
176 static void add_remove_files(struct path_list *list)
179 for (i = 0; i < list->nr; i++) {
181 struct path_list_item *p = &(list->items[i]);
183 if (!lstat(p->path, &st)) {
184 if (add_to_cache(p->path, &st, 0))
185 die("updating files failed");
187 remove_file_from_cache(p->path);
191 static void create_base_index(void)
194 struct unpack_trees_options opts;
197 if (initial_commit) {
202 memset(&opts, 0, sizeof(opts));
206 opts.src_index = &the_index;
207 opts.dst_index = &the_index;
209 opts.fn = oneway_merge;
210 tree = parse_tree_indirect(head_sha1);
212 die("failed to unpack HEAD tree object");
214 init_tree_desc(&t, tree->buffer, tree->size);
215 if (unpack_trees(1, &t, &opts))
216 exit(128); /* We've already reported the error, finish dying */
219 static char *prepare_index(int argc, const char **argv, const char *prefix)
222 struct path_list partial;
223 const char **pathspec = NULL;
226 interactive_add(argc, argv, prefix);
227 if (read_cache() < 0)
228 die("index file corrupt");
229 commit_style = COMMIT_AS_IS;
230 return get_index_file();
233 if (read_cache() < 0)
234 die("index file corrupt");
237 pathspec = get_pathspec(prefix, argv);
240 * Non partial, non as-is commit.
242 * (1) get the real index;
243 * (2) update the_index as necessary;
244 * (3) write the_index out to the real index (still locked);
245 * (4) return the name of the locked index file.
247 * The caller should run hooks on the locked real index, and
248 * (A) if all goes well, commit the real index;
249 * (B) on failure, rollback the real index.
251 if (all || (also && pathspec && *pathspec)) {
252 int fd = hold_locked_index(&index_lock, 1);
253 add_files_to_cache(also ? prefix : NULL, pathspec, 0);
254 refresh_cache(REFRESH_QUIET);
255 if (write_cache(fd, active_cache, active_nr) ||
256 close_lock_file(&index_lock))
257 die("unable to write new_index file");
258 commit_style = COMMIT_NORMAL;
259 return index_lock.filename;
265 * (1) return the name of the real index file.
267 * The caller should run hooks on the real index, and run
268 * hooks on the real index, and create commit from the_index.
269 * We still need to refresh the index here.
271 if (!pathspec || !*pathspec) {
272 fd = hold_locked_index(&index_lock, 1);
273 refresh_cache(REFRESH_QUIET);
274 if (write_cache(fd, active_cache, active_nr) ||
275 commit_locked_index(&index_lock))
276 die("unable to write new_index file");
277 commit_style = COMMIT_AS_IS;
278 return get_index_file();
284 * (0) find the set of affected paths;
285 * (1) get lock on the real index file;
286 * (2) update the_index with the given paths;
287 * (3) write the_index out to the real index (still locked);
288 * (4) get lock on the false index file;
289 * (5) reset the_index from HEAD;
290 * (6) update the_index the same way as (2);
291 * (7) write the_index out to the false index file;
292 * (8) return the name of the false index file (still locked);
294 * The caller should run hooks on the locked false index, and
295 * create commit from it. Then
296 * (A) if all goes well, commit the real index;
297 * (B) on failure, rollback the real index;
298 * In either case, rollback the false index.
300 commit_style = COMMIT_PARTIAL;
302 if (file_exists(git_path("MERGE_HEAD")))
303 die("cannot do a partial commit during a merge.");
305 memset(&partial, 0, sizeof(partial));
306 partial.strdup_paths = 1;
307 if (list_paths(&partial, initial_commit ? NULL : "HEAD", prefix, pathspec))
311 if (read_cache() < 0)
312 die("cannot read the index");
314 fd = hold_locked_index(&index_lock, 1);
315 add_remove_files(&partial);
316 refresh_cache(REFRESH_QUIET);
317 if (write_cache(fd, active_cache, active_nr) ||
318 close_lock_file(&index_lock))
319 die("unable to write new_index file");
321 fd = hold_lock_file_for_update(&false_lock,
322 git_path("next-index-%d", getpid()), 1);
325 add_remove_files(&partial);
326 refresh_cache(REFRESH_QUIET);
328 if (write_cache(fd, active_cache, active_nr) ||
329 close_lock_file(&false_lock))
330 die("unable to write temporary index file");
333 read_cache_from(false_lock.filename);
335 return false_lock.filename;
338 static int run_status(FILE *fp, const char *index_file, const char *prefix, int nowarn)
342 wt_status_prepare(&s);
343 if (wt_status_relative_paths)
348 s.reference = "HEAD^1";
351 s.untracked = untracked_files;
352 s.index_file = index_file;
361 static int run_hook(const char *index_file, const char *name, ...)
363 struct child_process hook;
364 const char *argv[10], *env[2];
365 char index[PATH_MAX];
369 va_start(args, name);
370 argv[0] = git_path("hooks/%s", name);
373 if (++i >= ARRAY_SIZE(argv))
374 die ("run_hook(): too many arguments");
375 argv[i] = va_arg(args, const char *);
379 snprintf(index, sizeof(index), "GIT_INDEX_FILE=%s", index_file);
383 if (access(argv[0], X_OK) < 0)
386 memset(&hook, 0, sizeof(hook));
389 hook.stdout_to_stderr = 1;
392 return run_command(&hook);
395 static int is_a_merge(const unsigned char *sha1)
397 struct commit *commit = lookup_commit(sha1);
398 if (!commit || parse_commit(commit))
399 die("could not parse HEAD commit");
400 return !!(commit->parents && commit->parents->next);
403 static const char sign_off_header[] = "Signed-off-by: ";
405 static void determine_author_info(void)
407 char *name, *email, *date;
409 name = getenv("GIT_AUTHOR_NAME");
410 email = getenv("GIT_AUTHOR_EMAIL");
411 date = getenv("GIT_AUTHOR_DATE");
414 const char *a, *lb, *rb, *eol;
416 a = strstr(use_message_buffer, "\nauthor ");
418 die("invalid commit: %s", use_message);
420 lb = strstr(a + 8, " <");
421 rb = strstr(a + 8, "> ");
422 eol = strchr(a + 8, '\n');
423 if (!lb || !rb || !eol)
424 die("invalid commit: %s", use_message);
426 name = xstrndup(a + 8, lb - (a + 8));
427 email = xstrndup(lb + 2, rb - (lb + 2));
428 date = xstrndup(rb + 2, eol - (rb + 2));
432 const char *lb = strstr(force_author, " <");
433 const char *rb = strchr(force_author, '>');
436 die("malformed --author parameter");
437 name = xstrndup(force_author, lb - force_author);
438 email = xstrndup(lb + 2, rb - (lb + 2));
442 author_email = email;
446 static int prepare_to_commit(const char *index_file, const char *prefix)
449 int commitable, saved_color_setting;
453 const char *hook_arg1 = NULL;
454 const char *hook_arg2 = NULL;
457 if (!no_verify && run_hook(index_file, "pre-commit", NULL))
462 strbuf_addbuf(&sb, &message);
463 hook_arg1 = "message";
464 } else if (logfile && !strcmp(logfile, "-")) {
466 fprintf(stderr, "(reading log message from standard input)\n");
467 if (strbuf_read(&sb, 0, 0) < 0)
468 die("could not read log from standard input");
469 hook_arg1 = "message";
470 } else if (logfile) {
471 if (strbuf_read_file(&sb, logfile, 0) < 0)
472 die("could not read log file '%s': %s",
473 logfile, strerror(errno));
474 hook_arg1 = "message";
475 } else if (use_message) {
476 buffer = strstr(use_message_buffer, "\n\n");
477 if (!buffer || buffer[2] == '\0')
478 die("commit has empty message");
479 strbuf_add(&sb, buffer + 2, strlen(buffer + 2));
480 hook_arg1 = "commit";
481 hook_arg2 = use_message;
482 } else if (!stat(git_path("MERGE_MSG"), &statbuf)) {
483 if (strbuf_read_file(&sb, git_path("MERGE_MSG"), 0) < 0)
484 die("could not read MERGE_MSG: %s", strerror(errno));
486 } else if (!stat(git_path("SQUASH_MSG"), &statbuf)) {
487 if (strbuf_read_file(&sb, git_path("SQUASH_MSG"), 0) < 0)
488 die("could not read SQUASH_MSG: %s", strerror(errno));
489 hook_arg1 = "squash";
490 } else if (template_file && !stat(template_file, &statbuf)) {
491 if (strbuf_read_file(&sb, template_file, 0) < 0)
492 die("could not read %s: %s",
493 template_file, strerror(errno));
494 hook_arg1 = "template";
498 * This final case does not modify the template message,
499 * it just sets the argument to the prepare-commit-msg hook.
504 fp = fopen(git_path(commit_editmsg), "w");
506 die("could not open %s", git_path(commit_editmsg));
508 if (cleanup_mode != CLEANUP_NONE)
515 strbuf_init(&sob, 0);
516 strbuf_addstr(&sob, sign_off_header);
517 strbuf_addstr(&sob, fmt_name(getenv("GIT_COMMITTER_NAME"),
518 getenv("GIT_COMMITTER_EMAIL")));
519 strbuf_addch(&sob, '\n');
520 for (i = sb.len - 1; i > 0 && sb.buf[i - 1] != '\n'; i--)
522 if (prefixcmp(sb.buf + i, sob.buf)) {
523 if (prefixcmp(sb.buf + i, sign_off_header))
524 strbuf_addch(&sb, '\n');
525 strbuf_addbuf(&sb, &sob);
527 strbuf_release(&sob);
530 if (fwrite(sb.buf, 1, sb.len, fp) < sb.len)
531 die("could not write commit template: %s", strerror(errno));
535 determine_author_info();
537 /* This checks if committer ident is explicitly given */
538 git_committer_info(0);
541 const char *committer_ident;
546 "# It looks like you may be committing a MERGE.\n"
547 "# If this is not correct, please remove the file\n"
551 git_path("MERGE_HEAD"));
555 "# Please enter the commit message for your changes.\n"
556 "# (Comment lines starting with '#' will ");
557 if (cleanup_mode == CLEANUP_ALL)
558 fprintf(fp, "not be included)\n");
559 else /* CLEANUP_SPACE, that is. */
560 fprintf(fp, "be kept.\n"
561 "# You can remove them yourself if you want to)\n");
562 if (only_include_assumed)
563 fprintf(fp, "# %s\n", only_include_assumed);
565 author_ident = xstrdup(fmt_name(author_name, author_email));
566 committer_ident = fmt_name(getenv("GIT_COMMITTER_NAME"),
567 getenv("GIT_COMMITTER_EMAIL"));
568 if (strcmp(author_ident, committer_ident))
572 ident_shown++ ? "" : "#\n",
576 if (!user_ident_explicitly_given)
580 ident_shown++ ? "" : "#\n",
586 saved_color_setting = wt_status_use_color;
587 wt_status_use_color = 0;
588 commitable = run_status(fp, index_file, prefix, 1);
589 wt_status_use_color = saved_color_setting;
592 unsigned char sha1[20];
593 const char *parent = "HEAD";
595 if (!active_nr && read_cache() < 0)
596 die("Cannot read index");
601 if (get_sha1(parent, sha1))
602 commitable = !!active_nr;
604 init_revisions(&rev, "");
606 setup_revisions(0, NULL, &rev, parent);
607 DIFF_OPT_SET(&rev.diffopt, QUIET);
608 DIFF_OPT_SET(&rev.diffopt, EXIT_WITH_STATUS);
609 run_diff_index(&rev, 1 /* cached */);
611 commitable = !!DIFF_OPT_TST(&rev.diffopt, HAS_CHANGES);
617 if (!commitable && !in_merge && !allow_empty &&
618 !(amend && is_a_merge(head_sha1))) {
619 run_status(stdout, index_file, prefix, 0);
620 unlink(commit_editmsg);
625 * Re-read the index as pre-commit hook could have updated it,
626 * and write it out as a tree. We must do this before we invoke
627 * the editor and after we invoke run_status above.
630 read_cache_from(index_file);
631 if (!active_cache_tree)
632 active_cache_tree = cache_tree();
633 if (cache_tree_update(active_cache_tree,
634 active_cache, active_nr, 0, 0) < 0) {
635 error("Error building trees");
639 if (run_hook(index_file, "prepare-commit-msg",
640 git_path(commit_editmsg), hook_arg1, hook_arg2, NULL))
644 char index[PATH_MAX];
645 const char *env[2] = { index, NULL };
646 snprintf(index, sizeof(index), "GIT_INDEX_FILE=%s", index_file);
647 launch_editor(git_path(commit_editmsg), NULL, env);
651 run_hook(index_file, "commit-msg", git_path(commit_editmsg), NULL)) {
659 * Find out if the message starting at position 'start' in the strbuf
660 * contains only whitespace and Signed-off-by lines.
662 static int message_is_empty(struct strbuf *sb, int start)
668 if (cleanup_mode == CLEANUP_NONE && sb->len)
671 /* See if the template is just a prefix of the message. */
672 strbuf_init(&tmpl, 0);
673 if (template_file && strbuf_read_file(&tmpl, template_file, 0) > 0) {
674 stripspace(&tmpl, cleanup_mode == CLEANUP_ALL);
675 if (start + tmpl.len <= sb->len &&
676 memcmp(tmpl.buf, sb->buf + start, tmpl.len) == 0)
679 strbuf_release(&tmpl);
681 /* Check if the rest is just whitespace and Signed-of-by's. */
682 for (i = start; i < sb->len; i++) {
683 nl = memchr(sb->buf + i, '\n', sb->len - i);
689 if (strlen(sign_off_header) <= eol - i &&
690 !prefixcmp(sb->buf + i, sign_off_header)) {
695 if (!isspace(sb->buf[i++]))
702 static int parse_and_validate_options(int argc, const char *argv[],
703 const char * const usage[],
708 argc = parse_options(argc, argv, builtin_commit_options, usage, 0);
709 logfile = parse_options_fix_filename(prefix, logfile);
710 template_file = parse_options_fix_filename(prefix, template_file);
712 if (logfile || message.len || use_message)
717 setenv("GIT_EDITOR", ":", 1);
719 if (get_sha1("HEAD", head_sha1))
722 if (!get_sha1("MERGE_HEAD", merge_head_sha1))
725 /* Sanity check options */
726 if (amend && initial_commit)
727 die("You have nothing to amend.");
728 if (amend && in_merge)
729 die("You are in the middle of a merge -- cannot amend.");
738 die("Only one of -c/-C/-F can be used.");
739 if (message.len && f > 0)
740 die("Option -m cannot be combined with -c/-C/-F.");
742 use_message = edit_message;
743 if (amend && !use_message)
744 use_message = "HEAD";
746 unsigned char sha1[20];
747 static char utf8[] = "UTF-8";
750 struct commit *commit;
752 if (get_sha1(use_message, sha1))
753 die("could not lookup commit %s", use_message);
754 commit = lookup_commit_reference(sha1);
755 if (!commit || parse_commit(commit))
756 die("could not parse commit %s", use_message);
758 enc = strstr(commit->buffer, "\nencoding");
760 end = strchr(enc + 10, '\n');
761 enc = xstrndup(enc + 10, end - (enc + 10));
765 out_enc = git_commit_encoding ? git_commit_encoding : utf8;
767 if (strcmp(out_enc, enc))
769 reencode_string(commit->buffer, out_enc, enc);
772 * If we failed to reencode the buffer, just copy it
773 * byte for byte so the user can try to fix it up.
774 * This also handles the case where input and output
775 * encodings are identical.
777 if (use_message_buffer == NULL)
778 use_message_buffer = xstrdup(commit->buffer);
783 if (!!also + !!only + !!all + !!interactive > 1)
784 die("Only one of --include/--only/--all/--interactive can be used.");
785 if (argc == 0 && (also || (only && !amend)))
786 die("No paths with --include/--only does not make sense.");
787 if (argc == 0 && only && amend)
788 only_include_assumed = "Clever... amending the last one with dirty index.";
789 if (argc > 0 && !also && !only)
790 only_include_assumed = "Explicit paths specified without -i nor -o; assuming --only paths...";
791 if (!cleanup_arg || !strcmp(cleanup_arg, "default"))
792 cleanup_mode = use_editor ? CLEANUP_ALL : CLEANUP_SPACE;
793 else if (!strcmp(cleanup_arg, "verbatim"))
794 cleanup_mode = CLEANUP_NONE;
795 else if (!strcmp(cleanup_arg, "whitespace"))
796 cleanup_mode = CLEANUP_SPACE;
797 else if (!strcmp(cleanup_arg, "strip"))
798 cleanup_mode = CLEANUP_ALL;
800 die("Invalid cleanup mode %s", cleanup_arg);
803 die("Paths with -a does not make sense.");
804 else if (interactive && argc > 0)
805 die("Paths with --interactive does not make sense.");
810 int cmd_status(int argc, const char **argv, const char *prefix)
812 const char *index_file;
815 git_config(git_status_config, NULL);
817 if (wt_status_use_color == -1)
818 wt_status_use_color = git_use_color_default;
820 argc = parse_and_validate_options(argc, argv, builtin_status_usage, prefix);
822 index_file = prepare_index(argc, argv, prefix);
824 commitable = run_status(stdout, index_file, prefix, 0);
826 rollback_index_files();
828 return commitable ? 0 : 1;
831 static void print_summary(const char *prefix, const unsigned char *sha1)
834 struct commit *commit;
836 commit = lookup_commit(sha1);
838 die("couldn't look up newly created commit");
839 if (!commit || parse_commit(commit))
840 die("could not parse newly created commit");
842 init_revisions(&rev, prefix);
843 setup_revisions(0, NULL, &rev, NULL);
847 rev.diffopt.output_format =
848 DIFF_FORMAT_SHORTSTAT | DIFF_FORMAT_SUMMARY;
850 rev.verbose_header = 1;
851 rev.show_root_diff = 1;
852 get_commit_format("format:%h: %s", &rev);
853 rev.always_show_header = 0;
854 rev.diffopt.detect_rename = 1;
855 rev.diffopt.rename_limit = 100;
856 rev.diffopt.break_opt = 0;
857 diff_setup_done(&rev.diffopt);
859 printf("Created %scommit ", initial_commit ? "initial " : "");
861 if (!log_tree_commit(&rev, commit)) {
862 struct strbuf buf = STRBUF_INIT;
863 format_commit_message(commit, "%h: %s", &buf);
864 printf("%s\n", buf.buf);
865 strbuf_release(&buf);
869 int git_commit_config(const char *k, const char *v, void *cb)
871 if (!strcmp(k, "commit.template"))
872 return git_config_string(&template_file, k, v);
874 return git_status_config(k, v, cb);
877 static const char commit_utf8_warn[] =
878 "Warning: commit message does not conform to UTF-8.\n"
879 "You may want to amend it after fixing the message, or set the config\n"
880 "variable i18n.commitencoding to the encoding your project uses.\n";
882 static void add_parent(struct strbuf *sb, const unsigned char *sha1)
884 struct object *obj = parse_object(sha1);
885 const char *parent = sha1_to_hex(sha1);
889 die("Unable to find commit parent %s", parent);
890 if (obj->type != OBJ_COMMIT)
891 die("Parent %s isn't a proper commit", parent);
893 for (cp = sb->buf; cp && (cp = strstr(cp, "\nparent ")); cp += 8) {
894 if (!memcmp(cp + 8, parent, 40) && cp[48] == '\n') {
895 error("duplicate parent %s ignored", parent);
899 strbuf_addf(sb, "parent %s\n", parent);
902 int cmd_commit(int argc, const char **argv, const char *prefix)
906 const char *index_file, *reflog_msg;
908 unsigned char commit_sha1[20];
909 struct ref_lock *ref_lock;
911 git_config(git_commit_config, NULL);
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();
928 strbuf_addf(&sb, "tree %s\n",
929 sha1_to_hex(active_cache_tree->sha1));
931 /* Determine parents */
932 if (initial_commit) {
933 reflog_msg = "commit (initial)";
935 struct commit_list *c;
936 struct commit *commit;
938 reflog_msg = "commit (amend)";
939 commit = lookup_commit(head_sha1);
940 if (!commit || parse_commit(commit))
941 die("could not parse HEAD commit");
943 for (c = commit->parents; c; c = c->next)
944 add_parent(&sb, c->item->object.sha1);
945 } else if (in_merge) {
949 reflog_msg = "commit (merge)";
950 add_parent(&sb, head_sha1);
952 fp = fopen(git_path("MERGE_HEAD"), "r");
954 die("could not open %s for reading: %s",
955 git_path("MERGE_HEAD"), strerror(errno));
956 while (strbuf_getline(&m, fp, '\n') != EOF) {
957 unsigned char sha1[20];
958 if (get_sha1_hex(m.buf, sha1) < 0)
959 die("Corrupt MERGE_HEAD file (%s)", m.buf);
960 add_parent(&sb, sha1);
965 reflog_msg = "commit";
966 strbuf_addf(&sb, "parent %s\n", sha1_to_hex(head_sha1));
969 strbuf_addf(&sb, "author %s\n",
970 fmt_ident(author_name, author_email, author_date, IDENT_ERROR_ON_NO_NAME));
971 strbuf_addf(&sb, "committer %s\n", git_committer_info(IDENT_ERROR_ON_NO_NAME));
972 if (!is_encoding_utf8(git_commit_encoding))
973 strbuf_addf(&sb, "encoding %s\n", git_commit_encoding);
974 strbuf_addch(&sb, '\n');
976 /* Finally, get the commit message */
978 if (strbuf_read_file(&sb, git_path(commit_editmsg), 0) < 0) {
979 rollback_index_files();
980 die("could not read commit message");
983 /* Truncate the message just before the diff, if any. */
984 p = strstr(sb.buf, "\ndiff --git a/");
986 strbuf_setlen(&sb, p - sb.buf + 1);
988 if (cleanup_mode != CLEANUP_NONE)
989 stripspace(&sb, cleanup_mode == CLEANUP_ALL);
990 if (sb.len < header_len || message_is_empty(&sb, header_len)) {
991 rollback_index_files();
992 die("no commit message? aborting commit.");
994 strbuf_addch(&sb, '\0');
995 if (is_encoding_utf8(git_commit_encoding) && !is_utf8(sb.buf))
996 fprintf(stderr, commit_utf8_warn);
998 if (write_sha1_file(sb.buf, sb.len - 1, commit_type, commit_sha1)) {
999 rollback_index_files();
1000 die("failed to write commit object");
1003 ref_lock = lock_any_ref_for_update("HEAD",
1004 initial_commit ? NULL : head_sha1,
1007 nl = strchr(sb.buf + header_len, '\n');
1009 strbuf_setlen(&sb, nl + 1 - sb.buf);
1011 strbuf_addch(&sb, '\n');
1012 strbuf_remove(&sb, 0, header_len);
1013 strbuf_insert(&sb, 0, reflog_msg, strlen(reflog_msg));
1014 strbuf_insert(&sb, strlen(reflog_msg), ": ", 2);
1017 rollback_index_files();
1018 die("cannot lock HEAD ref");
1020 if (write_ref_sha1(ref_lock, commit_sha1, sb.buf) < 0) {
1021 rollback_index_files();
1022 die("cannot update HEAD ref");
1025 unlink(git_path("MERGE_HEAD"));
1026 unlink(git_path("MERGE_MSG"));
1027 unlink(git_path("SQUASH_MSG"));
1029 if (commit_index_files())
1030 die ("Repository has been updated, but unable to write\n"
1031 "new_index file. Check that disk is not full or quota is\n"
1032 "not exceeded, and then \"git reset HEAD\" to recover.");
1035 run_hook(get_index_file(), "post-commit", NULL);
1037 print_summary(prefix, commit_sha1);