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 "string-list.h"
26 #include "unpack-trees.h"
28 #include "submodule.h"
29 #include "gpg-interface.h"
31 #include "sequencer.h"
32 #include "notes-utils.h"
34 static const char * const builtin_commit_usage[] = {
35 N_("git commit [options] [--] <pathspec>..."),
39 static const char * const builtin_status_usage[] = {
40 N_("git status [options] [--] <pathspec>..."),
44 static const char implicit_ident_advice[] =
45 N_("Your name and email address were configured automatically based\n"
46 "on your username and hostname. Please check that they are accurate.\n"
47 "You can suppress this message by setting them explicitly:\n"
49 " git config --global user.name \"Your Name\"\n"
50 " git config --global user.email you@example.com\n"
52 "After doing this, you may fix the identity used for this commit with:\n"
54 " git commit --amend --reset-author\n");
56 static const char empty_amend_advice[] =
57 N_("You asked to amend the most recent commit, but doing so would make\n"
58 "it empty. You can repeat your command with --allow-empty, or you can\n"
59 "remove the commit entirely with \"git reset HEAD^\".\n");
61 static const char empty_cherry_pick_advice[] =
62 N_("The previous cherry-pick is now empty, possibly due to conflict resolution.\n"
63 "If you wish to commit it anyway, use:\n"
65 " git commit --allow-empty\n"
67 "Otherwise, please use 'git reset'\n");
69 static const char *use_message_buffer;
70 static const char commit_editmsg[] = "COMMIT_EDITMSG";
71 static struct lock_file index_lock; /* real index */
72 static struct lock_file false_lock; /* used only for partial commits */
79 static const char *logfile, *force_author;
80 static const char *template_file;
82 * The _message variables are commit names from which to take
83 * the commit message and/or authorship.
85 static const char *author_message, *author_message_buffer;
86 static char *edit_message, *use_message;
87 static char *fixup_message, *squash_message;
88 static int all, also, interactive, patch_interactive, only, amend, signoff;
89 static int edit_flag = -1; /* unspecified */
90 static int quiet, verbose, no_verify, allow_empty, dry_run, renew_authorship;
91 static int no_post_rewrite, allow_empty_message;
92 static char *untracked_files_arg, *force_date, *ignore_submodule_arg;
93 static char *sign_commit;
96 * The default commit message cleanup mode will remove the lines
97 * beginning with # (shell comments) and leading and trailing
98 * whitespaces (empty lines or containing only whitespaces)
99 * if editor is used, and only the whitespaces if the message
100 * is specified explicitly.
107 static const char *cleanup_arg;
109 static enum commit_whence whence;
110 static int use_editor = 1, include_status = 1;
111 static int show_ignored_in_status, have_option_m;
112 static const char *only_include_assumed;
113 static struct strbuf message = STRBUF_INIT;
115 static enum status_format {
116 STATUS_FORMAT_NONE = 0,
119 STATUS_FORMAT_PORCELAIN,
121 STATUS_FORMAT_UNSPECIFIED
122 } status_format = STATUS_FORMAT_UNSPECIFIED;
124 static int opt_parse_m(const struct option *opt, const char *arg, int unset)
126 struct strbuf *buf = opt->value;
129 strbuf_setlen(buf, 0);
133 strbuf_addch(buf, '\n');
134 strbuf_addstr(buf, arg);
135 strbuf_complete_line(buf);
140 static void determine_whence(struct wt_status *s)
142 if (file_exists(git_path("MERGE_HEAD")))
144 else if (file_exists(git_path("CHERRY_PICK_HEAD")))
145 whence = FROM_CHERRY_PICK;
147 whence = FROM_COMMIT;
152 static void rollback_index_files(void)
154 switch (commit_style) {
156 break; /* nothing to do */
158 rollback_lock_file(&index_lock);
161 rollback_lock_file(&index_lock);
162 rollback_lock_file(&false_lock);
167 static int commit_index_files(void)
171 switch (commit_style) {
173 break; /* nothing to do */
175 err = commit_lock_file(&index_lock);
178 err = commit_lock_file(&index_lock);
179 rollback_lock_file(&false_lock);
187 * Take a union of paths in the index and the named tree (typically, "HEAD"),
188 * and return the paths that match the given pattern in list.
190 static int list_paths(struct string_list *list, const char *with_tree,
191 const char *prefix, const char **pattern)
199 for (i = 0; pattern[i]; i++)
204 char *max_prefix = common_prefix(pattern);
205 overlay_tree_on_cache(with_tree, max_prefix ? max_prefix : prefix);
209 for (i = 0; i < active_nr; i++) {
210 struct cache_entry *ce = active_cache[i];
211 struct string_list_item *item;
213 if (ce->ce_flags & CE_UPDATE)
215 if (!match_pathspec(pattern, ce->name, ce_namelen(ce), 0, m))
217 item = string_list_insert(list, ce->name);
218 if (ce_skip_worktree(ce))
219 item->util = item; /* better a valid pointer than a fake one */
222 return report_path_error(m, pattern, prefix);
225 static void add_remove_files(struct string_list *list)
228 for (i = 0; i < list->nr; i++) {
230 struct string_list_item *p = &(list->items[i]);
232 /* p->util is skip-worktree */
236 if (!lstat(p->string, &st)) {
237 if (add_to_cache(p->string, &st, 0))
238 die(_("updating files failed"));
240 remove_file_from_cache(p->string);
244 static void create_base_index(const struct commit *current_head)
247 struct unpack_trees_options opts;
255 memset(&opts, 0, sizeof(opts));
259 opts.src_index = &the_index;
260 opts.dst_index = &the_index;
262 opts.fn = oneway_merge;
263 tree = parse_tree_indirect(current_head->object.sha1);
265 die(_("failed to unpack HEAD tree object"));
267 init_tree_desc(&t, tree->buffer, tree->size);
268 if (unpack_trees(1, &t, &opts))
269 exit(128); /* We've already reported the error, finish dying */
272 static void refresh_cache_or_die(int refresh_flags)
275 * refresh_flags contains REFRESH_QUIET, so the only errors
276 * are for unmerged entries.
278 if (refresh_cache(refresh_flags | REFRESH_IN_PORCELAIN))
279 die_resolve_conflict("commit");
282 static char *prepare_index(int argc, const char **argv, const char *prefix,
283 const struct commit *current_head, int is_status)
286 struct string_list partial;
287 struct pathspec pathspec;
288 char *old_index_env = NULL;
289 int refresh_flags = REFRESH_QUIET;
292 refresh_flags |= REFRESH_UNMERGED;
293 parse_pathspec(&pathspec, 0,
294 PATHSPEC_PREFER_FULL,
297 if (read_cache_preload(&pathspec) < 0)
298 die(_("index file corrupt"));
301 fd = hold_locked_index(&index_lock, 1);
303 refresh_cache_or_die(refresh_flags);
305 if (write_cache(fd, active_cache, active_nr) ||
306 close_lock_file(&index_lock))
307 die(_("unable to create temporary index"));
309 old_index_env = getenv(INDEX_ENVIRONMENT);
310 setenv(INDEX_ENVIRONMENT, index_lock.filename, 1);
312 if (interactive_add(argc, argv, prefix, patch_interactive) != 0)
313 die(_("interactive add failed"));
315 if (old_index_env && *old_index_env)
316 setenv(INDEX_ENVIRONMENT, old_index_env, 1);
318 unsetenv(INDEX_ENVIRONMENT);
321 read_cache_from(index_lock.filename);
323 commit_style = COMMIT_NORMAL;
324 return index_lock.filename;
328 * Non partial, non as-is commit.
330 * (1) get the real index;
331 * (2) update the_index as necessary;
332 * (3) write the_index out to the real index (still locked);
333 * (4) return the name of the locked index file.
335 * The caller should run hooks on the locked real index, and
336 * (A) if all goes well, commit the real index;
337 * (B) on failure, rollback the real index.
339 if (all || (also && pathspec.nr)) {
340 fd = hold_locked_index(&index_lock, 1);
341 add_files_to_cache(also ? prefix : NULL, pathspec.raw, 0);
342 refresh_cache_or_die(refresh_flags);
343 update_main_cache_tree(WRITE_TREE_SILENT);
344 if (write_cache(fd, active_cache, active_nr) ||
345 close_lock_file(&index_lock))
346 die(_("unable to write new_index file"));
347 commit_style = COMMIT_NORMAL;
348 return index_lock.filename;
354 * (1) return the name of the real index file.
356 * The caller should run hooks on the real index,
357 * and create commit from the_index.
358 * We still need to refresh the index here.
360 if (!only && !pathspec.nr) {
361 fd = hold_locked_index(&index_lock, 1);
362 refresh_cache_or_die(refresh_flags);
363 if (active_cache_changed) {
364 update_main_cache_tree(WRITE_TREE_SILENT);
365 if (write_cache(fd, active_cache, active_nr) ||
366 commit_locked_index(&index_lock))
367 die(_("unable to write new_index file"));
369 rollback_lock_file(&index_lock);
371 commit_style = COMMIT_AS_IS;
372 return get_index_file();
378 * (0) find the set of affected paths;
379 * (1) get lock on the real index file;
380 * (2) update the_index with the given paths;
381 * (3) write the_index out to the real index (still locked);
382 * (4) get lock on the false index file;
383 * (5) reset the_index from HEAD;
384 * (6) update the_index the same way as (2);
385 * (7) write the_index out to the false index file;
386 * (8) return the name of the false index file (still locked);
388 * The caller should run hooks on the locked false index, and
389 * create commit from it. Then
390 * (A) if all goes well, commit the real index;
391 * (B) on failure, rollback the real index;
392 * In either case, rollback the false index.
394 commit_style = COMMIT_PARTIAL;
396 if (whence != FROM_COMMIT) {
397 if (whence == FROM_MERGE)
398 die(_("cannot do a partial commit during a merge."));
399 else if (whence == FROM_CHERRY_PICK)
400 die(_("cannot do a partial commit during a cherry-pick."));
403 memset(&partial, 0, sizeof(partial));
404 partial.strdup_strings = 1;
405 if (list_paths(&partial, !current_head ? NULL : "HEAD", prefix, pathspec.raw))
409 if (read_cache() < 0)
410 die(_("cannot read the index"));
412 fd = hold_locked_index(&index_lock, 1);
413 add_remove_files(&partial);
414 refresh_cache(REFRESH_QUIET);
415 if (write_cache(fd, active_cache, active_nr) ||
416 close_lock_file(&index_lock))
417 die(_("unable to write new_index file"));
419 fd = hold_lock_file_for_update(&false_lock,
420 git_path("next-index-%"PRIuMAX,
421 (uintmax_t) getpid()),
424 create_base_index(current_head);
425 add_remove_files(&partial);
426 refresh_cache(REFRESH_QUIET);
428 if (write_cache(fd, active_cache, active_nr) ||
429 close_lock_file(&false_lock))
430 die(_("unable to write temporary index file"));
433 read_cache_from(false_lock.filename);
435 return false_lock.filename;
438 static int run_status(FILE *fp, const char *index_file, const char *prefix, int nowarn,
441 unsigned char sha1[20];
443 if (s->relative_paths)
448 s->reference = "HEAD^1";
450 s->verbose = verbose;
451 s->index_file = index_file;
454 s->is_initial = get_sha1(s->reference, sha1) ? 1 : 0;
456 wt_status_collect(s);
458 switch (status_format) {
459 case STATUS_FORMAT_SHORT:
460 wt_shortstatus_print(s);
462 case STATUS_FORMAT_PORCELAIN:
463 wt_porcelain_print(s);
465 case STATUS_FORMAT_UNSPECIFIED:
466 die("BUG: finalize_deferred_config() should have been called");
468 case STATUS_FORMAT_NONE:
469 case STATUS_FORMAT_LONG:
474 return s->commitable;
477 static int is_a_merge(const struct commit *current_head)
479 return !!(current_head->parents && current_head->parents->next);
482 static void export_one(const char *var, const char *s, const char *e, int hack)
484 struct strbuf buf = STRBUF_INIT;
486 strbuf_addch(&buf, hack);
487 strbuf_addf(&buf, "%.*s", (int)(e - s), s);
488 setenv(var, buf.buf, 1);
489 strbuf_release(&buf);
492 static int sane_ident_split(struct ident_split *person)
494 if (!person->name_begin || !person->name_end ||
495 person->name_begin == person->name_end)
496 return 0; /* no human readable name */
497 if (!person->mail_begin || !person->mail_end ||
498 person->mail_begin == person->mail_end)
499 return 0; /* no usable mail */
500 if (!person->date_begin || !person->date_end ||
501 !person->tz_begin || !person->tz_end)
506 static void determine_author_info(struct strbuf *author_ident)
508 char *name, *email, *date;
509 struct ident_split author;
511 name = getenv("GIT_AUTHOR_NAME");
512 email = getenv("GIT_AUTHOR_EMAIL");
513 date = getenv("GIT_AUTHOR_DATE");
515 if (author_message) {
516 const char *a, *lb, *rb, *eol;
519 a = strstr(author_message_buffer, "\nauthor ");
521 die(_("invalid commit: %s"), author_message);
523 lb = strchrnul(a + strlen("\nauthor "), '<');
524 rb = strchrnul(lb, '>');
525 eol = strchrnul(rb, '\n');
526 if (!*lb || !*rb || !*eol)
527 die(_("invalid commit: %s"), author_message);
529 if (lb == a + strlen("\nauthor "))
530 /* \nauthor <foo@example.com> */
531 name = xcalloc(1, 1);
533 name = xmemdupz(a + strlen("\nauthor "),
535 (a + strlen("\nauthor "))));
536 email = xmemdupz(lb + strlen("<"), rb - (lb + strlen("<")));
537 date = xmemdupz(rb + strlen("> "), eol - (rb + strlen("> ")));
538 len = eol - (rb + strlen("> "));
539 date = xmalloc(len + 2);
541 memcpy(date + 1, rb + strlen("> "), len);
542 date[len + 1] = '\0';
546 const char *lb = strstr(force_author, " <");
547 const char *rb = strchr(force_author, '>');
550 die(_("malformed --author parameter"));
551 name = xstrndup(force_author, lb - force_author);
552 email = xstrndup(lb + 2, rb - (lb + 2));
557 strbuf_addstr(author_ident, fmt_ident(name, email, date, IDENT_STRICT));
558 if (!split_ident_line(&author, author_ident->buf, author_ident->len) &&
559 sane_ident_split(&author)) {
560 export_one("GIT_AUTHOR_NAME", author.name_begin, author.name_end, 0);
561 export_one("GIT_AUTHOR_EMAIL", author.mail_begin, author.mail_end, 0);
562 export_one("GIT_AUTHOR_DATE", author.date_begin, author.tz_end, '@');
566 static char *cut_ident_timestamp_part(char *string)
568 char *ket = strrchr(string, '>');
569 if (!ket || ket[1] != ' ')
570 die(_("Malformed ident string: '%s'"), string);
575 static int prepare_to_commit(const char *index_file, const char *prefix,
576 struct commit *current_head,
578 struct strbuf *author_ident)
581 struct strbuf committer_ident = STRBUF_INIT;
582 int commitable, saved_color_setting;
583 struct strbuf sb = STRBUF_INIT;
585 const char *hook_arg1 = NULL;
586 const char *hook_arg2 = NULL;
588 int clean_message_contents = (cleanup_mode != CLEANUP_NONE);
590 /* This checks and barfs if author is badly specified */
591 determine_author_info(author_ident);
593 if (!no_verify && run_hook(index_file, "pre-commit", NULL))
596 if (squash_message) {
598 * Insert the proper subject line before other commit
599 * message options add their content.
601 if (use_message && !strcmp(use_message, squash_message))
602 strbuf_addstr(&sb, "squash! ");
604 struct pretty_print_context ctx = {0};
606 c = lookup_commit_reference_by_name(squash_message);
608 die(_("could not lookup commit %s"), squash_message);
609 ctx.output_encoding = get_commit_output_encoding();
610 format_commit_message(c, "squash! %s\n\n", &sb,
616 strbuf_addbuf(&sb, &message);
617 hook_arg1 = "message";
618 } else if (logfile && !strcmp(logfile, "-")) {
620 fprintf(stderr, _("(reading log message from standard input)\n"));
621 if (strbuf_read(&sb, 0, 0) < 0)
622 die_errno(_("could not read log from standard input"));
623 hook_arg1 = "message";
624 } else if (logfile) {
625 if (strbuf_read_file(&sb, logfile, 0) < 0)
626 die_errno(_("could not read log file '%s'"),
628 hook_arg1 = "message";
629 } else if (use_message) {
630 buffer = strstr(use_message_buffer, "\n\n");
631 if (!use_editor && (!buffer || buffer[2] == '\0'))
632 die(_("commit has empty message"));
633 strbuf_add(&sb, buffer + 2, strlen(buffer + 2));
634 hook_arg1 = "commit";
635 hook_arg2 = use_message;
636 } else if (fixup_message) {
637 struct pretty_print_context ctx = {0};
638 struct commit *commit;
639 commit = lookup_commit_reference_by_name(fixup_message);
641 die(_("could not lookup commit %s"), fixup_message);
642 ctx.output_encoding = get_commit_output_encoding();
643 format_commit_message(commit, "fixup! %s\n\n",
645 hook_arg1 = "message";
646 } else if (!stat(git_path("MERGE_MSG"), &statbuf)) {
647 if (strbuf_read_file(&sb, git_path("MERGE_MSG"), 0) < 0)
648 die_errno(_("could not read MERGE_MSG"));
650 } else if (!stat(git_path("SQUASH_MSG"), &statbuf)) {
651 if (strbuf_read_file(&sb, git_path("SQUASH_MSG"), 0) < 0)
652 die_errno(_("could not read SQUASH_MSG"));
653 hook_arg1 = "squash";
654 } else if (template_file) {
655 if (strbuf_read_file(&sb, template_file, 0) < 0)
656 die_errno(_("could not read '%s'"), template_file);
657 hook_arg1 = "template";
658 clean_message_contents = 0;
662 * The remaining cases don't modify the template message, but
663 * just set the argument(s) to the prepare-commit-msg hook.
665 else if (whence == FROM_MERGE)
667 else if (whence == FROM_CHERRY_PICK) {
668 hook_arg1 = "commit";
669 hook_arg2 = "CHERRY_PICK_HEAD";
672 if (squash_message) {
674 * If squash_commit was used for the commit subject,
675 * then we're possibly hijacking other commit log options.
676 * Reset the hook args to tell the real story.
678 hook_arg1 = "message";
682 s->fp = fopen(git_path(commit_editmsg), "w");
684 die_errno(_("could not open '%s'"), git_path(commit_editmsg));
686 if (clean_message_contents)
691 * See if we have a Conflicts: block at the end. If yes, count
692 * its size, so we can ignore it.
694 int ignore_footer = 0;
695 int i, eol, previous = 0;
698 for (i = 0; i < sb.len; i++) {
699 nl = memchr(sb.buf + i, '\n', sb.len - i);
704 if (!prefixcmp(sb.buf + previous, "\nConflicts:\n")) {
705 ignore_footer = sb.len - previous;
713 append_signoff(&sb, ignore_footer, 0);
716 if (fwrite(sb.buf, 1, sb.len, s->fp) < sb.len)
717 die_errno(_("could not write commit template"));
721 /* This checks if committer ident is explicitly given */
722 strbuf_addstr(&committer_ident, git_committer_info(IDENT_STRICT));
723 if (use_editor && include_status) {
724 char *ai_tmp, *ci_tmp;
725 if (whence != FROM_COMMIT)
726 status_printf_ln(s, GIT_COLOR_NORMAL,
729 "It looks like you may be committing a merge.\n"
730 "If this is not correct, please remove the file\n"
734 "It looks like you may be committing a cherry-pick.\n"
735 "If this is not correct, please remove the file\n"
738 git_path(whence == FROM_MERGE
740 : "CHERRY_PICK_HEAD"));
742 fprintf(s->fp, "\n");
743 if (cleanup_mode == CLEANUP_ALL)
744 status_printf(s, GIT_COLOR_NORMAL,
745 _("Please enter the commit message for your changes."
746 " Lines starting\nwith '%c' will be ignored, and an empty"
747 " message aborts the commit.\n"), comment_line_char);
748 else /* CLEANUP_SPACE, that is. */
749 status_printf(s, GIT_COLOR_NORMAL,
750 _("Please enter the commit message for your changes."
752 "with '%c' will be kept; you may remove them"
753 " yourself if you want to.\n"
754 "An empty message aborts the commit.\n"), comment_line_char);
755 if (only_include_assumed)
756 status_printf_ln(s, GIT_COLOR_NORMAL,
757 "%s", only_include_assumed);
759 ai_tmp = cut_ident_timestamp_part(author_ident->buf);
760 ci_tmp = cut_ident_timestamp_part(committer_ident.buf);
761 if (strcmp(author_ident->buf, committer_ident.buf))
762 status_printf_ln(s, GIT_COLOR_NORMAL,
765 ident_shown++ ? "" : "\n",
768 if (!committer_ident_sufficiently_given())
769 status_printf_ln(s, GIT_COLOR_NORMAL,
772 ident_shown++ ? "" : "\n",
773 committer_ident.buf);
776 status_printf_ln(s, GIT_COLOR_NORMAL, "");
778 saved_color_setting = s->use_color;
780 commitable = run_status(s->fp, index_file, prefix, 1, s);
781 s->use_color = saved_color_setting;
786 unsigned char sha1[20];
787 const char *parent = "HEAD";
789 if (!active_nr && read_cache() < 0)
790 die(_("Cannot read index"));
795 if (get_sha1(parent, sha1))
796 commitable = !!active_nr;
798 commitable = index_differs_from(parent, 0);
800 strbuf_release(&committer_ident);
805 * Reject an attempt to record a non-merge empty commit without
806 * explicit --allow-empty. In the cherry-pick case, it may be
807 * empty due to conflict resolution, which the user should okay.
809 if (!commitable && whence != FROM_MERGE && !allow_empty &&
810 !(amend && is_a_merge(current_head))) {
811 run_status(stdout, index_file, prefix, 0, s);
813 fputs(_(empty_amend_advice), stderr);
814 else if (whence == FROM_CHERRY_PICK)
815 fputs(_(empty_cherry_pick_advice), stderr);
820 * Re-read the index as pre-commit hook could have updated it,
821 * and write it out as a tree. We must do this before we invoke
822 * the editor and after we invoke run_status above.
825 read_cache_from(index_file);
826 if (update_main_cache_tree(0)) {
827 error(_("Error building trees"));
831 if (run_hook(index_file, "prepare-commit-msg",
832 git_path(commit_editmsg), hook_arg1, hook_arg2, NULL))
836 char index[PATH_MAX];
837 const char *env[2] = { NULL };
839 snprintf(index, sizeof(index), "GIT_INDEX_FILE=%s", index_file);
840 if (launch_editor(git_path(commit_editmsg), NULL, env)) {
842 _("Please supply the message using either -m or -F option.\n"));
848 run_hook(index_file, "commit-msg", git_path(commit_editmsg), NULL)) {
855 static int rest_is_empty(struct strbuf *sb, int start)
860 /* Check if the rest is just whitespace and Signed-of-by's. */
861 for (i = start; i < sb->len; i++) {
862 nl = memchr(sb->buf + i, '\n', sb->len - i);
868 if (strlen(sign_off_header) <= eol - i &&
869 !prefixcmp(sb->buf + i, sign_off_header)) {
874 if (!isspace(sb->buf[i++]))
882 * Find out if the message in the strbuf contains only whitespace and
883 * Signed-off-by lines.
885 static int message_is_empty(struct strbuf *sb)
887 if (cleanup_mode == CLEANUP_NONE && sb->len)
889 return rest_is_empty(sb, 0);
893 * See if the user edited the message in the editor or left what
894 * was in the template intact
896 static int template_untouched(struct strbuf *sb)
898 struct strbuf tmpl = STRBUF_INIT;
901 if (cleanup_mode == CLEANUP_NONE && sb->len)
904 if (!template_file || strbuf_read_file(&tmpl, template_file, 0) <= 0)
907 stripspace(&tmpl, cleanup_mode == CLEANUP_ALL);
908 start = (char *)skip_prefix(sb->buf, tmpl.buf);
911 strbuf_release(&tmpl);
912 return rest_is_empty(sb, start - sb->buf);
915 static const char *find_author_by_nickname(const char *name)
917 struct rev_info revs;
918 struct commit *commit;
919 struct strbuf buf = STRBUF_INIT;
923 init_revisions(&revs, NULL);
924 strbuf_addf(&buf, "--author=%s", name);
929 setup_revisions(ac, av, &revs, NULL);
930 prepare_revision_walk(&revs);
931 commit = get_revision(&revs);
933 struct pretty_print_context ctx = {0};
934 ctx.date_mode = DATE_NORMAL;
935 strbuf_release(&buf);
936 format_commit_message(commit, "%an <%ae>", &buf, &ctx);
937 return strbuf_detach(&buf, NULL);
939 die(_("No existing author found with '%s'"), name);
943 static void handle_untracked_files_arg(struct wt_status *s)
945 if (!untracked_files_arg)
946 ; /* default already initialized */
947 else if (!strcmp(untracked_files_arg, "no"))
948 s->show_untracked_files = SHOW_NO_UNTRACKED_FILES;
949 else if (!strcmp(untracked_files_arg, "normal"))
950 s->show_untracked_files = SHOW_NORMAL_UNTRACKED_FILES;
951 else if (!strcmp(untracked_files_arg, "all"))
952 s->show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
954 die(_("Invalid untracked files mode '%s'"), untracked_files_arg);
957 static const char *read_commit_message(const char *name)
960 struct commit *commit;
962 commit = lookup_commit_reference_by_name(name);
964 die(_("could not lookup commit %s"), name);
965 out_enc = get_commit_output_encoding();
966 return logmsg_reencode(commit, NULL, out_enc);
970 * Enumerate what needs to be propagated when --porcelain
971 * is not in effect here.
973 static struct status_deferred_config {
974 enum status_format status_format;
976 } status_deferred_config = {
977 STATUS_FORMAT_UNSPECIFIED,
981 static void finalize_deferred_config(struct wt_status *s)
983 int use_deferred_config = (status_format != STATUS_FORMAT_PORCELAIN &&
984 !s->null_termination);
986 if (s->null_termination) {
987 if (status_format == STATUS_FORMAT_NONE ||
988 status_format == STATUS_FORMAT_UNSPECIFIED)
989 status_format = STATUS_FORMAT_PORCELAIN;
990 else if (status_format == STATUS_FORMAT_LONG)
991 die(_("--long and -z are incompatible"));
994 if (use_deferred_config && status_format == STATUS_FORMAT_UNSPECIFIED)
995 status_format = status_deferred_config.status_format;
996 if (status_format == STATUS_FORMAT_UNSPECIFIED)
997 status_format = STATUS_FORMAT_NONE;
999 if (use_deferred_config && s->show_branch < 0)
1000 s->show_branch = status_deferred_config.show_branch;
1001 if (s->show_branch < 0)
1005 static int parse_and_validate_options(int argc, const char *argv[],
1006 const struct option *options,
1007 const char * const usage[],
1009 struct commit *current_head,
1010 struct wt_status *s)
1014 argc = parse_options(argc, argv, prefix, options, usage, 0);
1015 finalize_deferred_config(s);
1017 if (force_author && !strchr(force_author, '>'))
1018 force_author = find_author_by_nickname(force_author);
1020 if (force_author && renew_authorship)
1021 die(_("Using both --reset-author and --author does not make sense"));
1023 if (logfile || have_option_m || use_message || fixup_message)
1026 use_editor = edit_flag;
1028 setenv("GIT_EDITOR", ":", 1);
1030 /* Sanity check options */
1031 if (amend && !current_head)
1032 die(_("You have nothing to amend."));
1033 if (amend && whence != FROM_COMMIT) {
1034 if (whence == FROM_MERGE)
1035 die(_("You are in the middle of a merge -- cannot amend."));
1036 else if (whence == FROM_CHERRY_PICK)
1037 die(_("You are in the middle of a cherry-pick -- cannot amend."));
1039 if (fixup_message && squash_message)
1040 die(_("Options --squash and --fixup cannot be used together"));
1050 die(_("Only one of -c/-C/-F/--fixup can be used."));
1051 if (message.len && f > 0)
1052 die((_("Option -m cannot be combined with -c/-C/-F/--fixup.")));
1053 if (f || message.len)
1054 template_file = NULL;
1056 use_message = edit_message;
1057 if (amend && !use_message && !fixup_message)
1058 use_message = "HEAD";
1059 if (!use_message && whence != FROM_CHERRY_PICK && renew_authorship)
1060 die(_("--reset-author can be used only with -C, -c or --amend."));
1062 use_message_buffer = read_commit_message(use_message);
1063 if (!renew_authorship) {
1064 author_message = use_message;
1065 author_message_buffer = use_message_buffer;
1068 if (whence == FROM_CHERRY_PICK && !renew_authorship) {
1069 author_message = "CHERRY_PICK_HEAD";
1070 author_message_buffer = read_commit_message(author_message);
1073 if (patch_interactive)
1076 if (!!also + !!only + !!all + !!interactive > 1)
1077 die(_("Only one of --include/--only/--all/--interactive/--patch can be used."));
1078 if (argc == 0 && (also || (only && !amend)))
1079 die(_("No paths with --include/--only does not make sense."));
1080 if (argc == 0 && only && amend)
1081 only_include_assumed = _("Clever... amending the last one with dirty index.");
1082 if (argc > 0 && !also && !only)
1083 only_include_assumed = _("Explicit paths specified without -i nor -o; assuming --only paths...");
1084 if (!cleanup_arg || !strcmp(cleanup_arg, "default"))
1085 cleanup_mode = use_editor ? CLEANUP_ALL : CLEANUP_SPACE;
1086 else if (!strcmp(cleanup_arg, "verbatim"))
1087 cleanup_mode = CLEANUP_NONE;
1088 else if (!strcmp(cleanup_arg, "whitespace"))
1089 cleanup_mode = CLEANUP_SPACE;
1090 else if (!strcmp(cleanup_arg, "strip"))
1091 cleanup_mode = CLEANUP_ALL;
1093 die(_("Invalid cleanup mode %s"), cleanup_arg);
1095 handle_untracked_files_arg(s);
1097 if (all && argc > 0)
1098 die(_("Paths with -a does not make sense."));
1100 if (status_format != STATUS_FORMAT_NONE)
1106 static int dry_run_commit(int argc, const char **argv, const char *prefix,
1107 const struct commit *current_head, struct wt_status *s)
1110 const char *index_file;
1112 index_file = prepare_index(argc, argv, prefix, current_head, 1);
1113 commitable = run_status(stdout, index_file, prefix, 0, s);
1114 rollback_index_files();
1116 return commitable ? 0 : 1;
1119 static int parse_status_slot(const char *var, int offset)
1121 if (!strcasecmp(var+offset, "header"))
1122 return WT_STATUS_HEADER;
1123 if (!strcasecmp(var+offset, "branch"))
1124 return WT_STATUS_ONBRANCH;
1125 if (!strcasecmp(var+offset, "updated")
1126 || !strcasecmp(var+offset, "added"))
1127 return WT_STATUS_UPDATED;
1128 if (!strcasecmp(var+offset, "changed"))
1129 return WT_STATUS_CHANGED;
1130 if (!strcasecmp(var+offset, "untracked"))
1131 return WT_STATUS_UNTRACKED;
1132 if (!strcasecmp(var+offset, "nobranch"))
1133 return WT_STATUS_NOBRANCH;
1134 if (!strcasecmp(var+offset, "unmerged"))
1135 return WT_STATUS_UNMERGED;
1139 static int git_status_config(const char *k, const char *v, void *cb)
1141 struct wt_status *s = cb;
1143 if (!prefixcmp(k, "column."))
1144 return git_column_config(k, v, "status", &s->colopts);
1145 if (!strcmp(k, "status.submodulesummary")) {
1147 s->submodule_summary = git_config_bool_or_int(k, v, &is_bool);
1148 if (is_bool && s->submodule_summary)
1149 s->submodule_summary = -1;
1152 if (!strcmp(k, "status.short")) {
1153 if (git_config_bool(k, v))
1154 status_deferred_config.status_format = STATUS_FORMAT_SHORT;
1156 status_deferred_config.status_format = STATUS_FORMAT_NONE;
1159 if (!strcmp(k, "status.branch")) {
1160 status_deferred_config.show_branch = git_config_bool(k, v);
1163 if (!strcmp(k, "status.color") || !strcmp(k, "color.status")) {
1164 s->use_color = git_config_colorbool(k, v);
1167 if (!prefixcmp(k, "status.color.") || !prefixcmp(k, "color.status.")) {
1168 int slot = parse_status_slot(k, 13);
1172 return config_error_nonbool(k);
1173 color_parse(v, k, s->color_palette[slot]);
1176 if (!strcmp(k, "status.relativepaths")) {
1177 s->relative_paths = git_config_bool(k, v);
1180 if (!strcmp(k, "status.showuntrackedfiles")) {
1182 return config_error_nonbool(k);
1183 else if (!strcmp(v, "no"))
1184 s->show_untracked_files = SHOW_NO_UNTRACKED_FILES;
1185 else if (!strcmp(v, "normal"))
1186 s->show_untracked_files = SHOW_NORMAL_UNTRACKED_FILES;
1187 else if (!strcmp(v, "all"))
1188 s->show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
1190 return error(_("Invalid untracked files mode '%s'"), v);
1193 return git_diff_ui_config(k, v, NULL);
1196 int cmd_status(int argc, const char **argv, const char *prefix)
1198 static struct wt_status s;
1200 unsigned char sha1[20];
1201 static struct option builtin_status_options[] = {
1202 OPT__VERBOSE(&verbose, N_("be verbose")),
1203 OPT_SET_INT('s', "short", &status_format,
1204 N_("show status concisely"), STATUS_FORMAT_SHORT),
1205 OPT_BOOL('b', "branch", &s.show_branch,
1206 N_("show branch information")),
1207 OPT_SET_INT(0, "porcelain", &status_format,
1208 N_("machine-readable output"),
1209 STATUS_FORMAT_PORCELAIN),
1210 OPT_SET_INT(0, "long", &status_format,
1211 N_("show status in long format (default)"),
1212 STATUS_FORMAT_LONG),
1213 OPT_BOOLEAN('z', "null", &s.null_termination,
1214 N_("terminate entries with NUL")),
1215 { OPTION_STRING, 'u', "untracked-files", &untracked_files_arg,
1217 N_("show untracked files, optional modes: all, normal, no. (Default: all)"),
1218 PARSE_OPT_OPTARG, NULL, (intptr_t)"all" },
1219 OPT_BOOLEAN(0, "ignored", &show_ignored_in_status,
1220 N_("show ignored files")),
1221 { OPTION_STRING, 0, "ignore-submodules", &ignore_submodule_arg, N_("when"),
1222 N_("ignore changes to submodules, optional when: all, dirty, untracked. (Default: all)"),
1223 PARSE_OPT_OPTARG, NULL, (intptr_t)"all" },
1224 OPT_COLUMN(0, "column", &s.colopts, N_("list untracked files in columns")),
1228 if (argc == 2 && !strcmp(argv[1], "-h"))
1229 usage_with_options(builtin_status_usage, builtin_status_options);
1231 wt_status_prepare(&s);
1232 gitmodules_config();
1233 git_config(git_status_config, &s);
1234 determine_whence(&s);
1235 argc = parse_options(argc, argv, prefix,
1236 builtin_status_options,
1237 builtin_status_usage, 0);
1238 finalize_colopts(&s.colopts, -1);
1239 finalize_deferred_config(&s);
1241 handle_untracked_files_arg(&s);
1242 if (show_ignored_in_status)
1243 s.show_ignored_files = 1;
1244 parse_pathspec(&s.pathspec, 0,
1245 PATHSPEC_PREFER_FULL,
1248 read_cache_preload(&s.pathspec);
1249 refresh_index(&the_index, REFRESH_QUIET|REFRESH_UNMERGED, s.pathspec.raw, NULL, NULL);
1251 fd = hold_locked_index(&index_lock, 0);
1253 update_index_if_able(&the_index, &index_lock);
1255 s.is_initial = get_sha1(s.reference, sha1) ? 1 : 0;
1256 s.ignore_submodule_arg = ignore_submodule_arg;
1257 wt_status_collect(&s);
1259 if (s.relative_paths)
1262 switch (status_format) {
1263 case STATUS_FORMAT_SHORT:
1264 wt_shortstatus_print(&s);
1266 case STATUS_FORMAT_PORCELAIN:
1267 wt_porcelain_print(&s);
1269 case STATUS_FORMAT_UNSPECIFIED:
1270 die("BUG: finalize_deferred_config() should have been called");
1272 case STATUS_FORMAT_NONE:
1273 case STATUS_FORMAT_LONG:
1274 s.verbose = verbose;
1275 s.ignore_submodule_arg = ignore_submodule_arg;
1276 wt_status_print(&s);
1282 static void print_summary(const char *prefix, const unsigned char *sha1,
1285 struct rev_info rev;
1286 struct commit *commit;
1287 struct strbuf format = STRBUF_INIT;
1288 unsigned char junk_sha1[20];
1290 struct pretty_print_context pctx = {0};
1291 struct strbuf author_ident = STRBUF_INIT;
1292 struct strbuf committer_ident = STRBUF_INIT;
1294 commit = lookup_commit(sha1);
1296 die(_("couldn't look up newly created commit"));
1297 if (!commit || parse_commit(commit))
1298 die(_("could not parse newly created commit"));
1300 strbuf_addstr(&format, "format:%h] %s");
1302 format_commit_message(commit, "%an <%ae>", &author_ident, &pctx);
1303 format_commit_message(commit, "%cn <%ce>", &committer_ident, &pctx);
1304 if (strbuf_cmp(&author_ident, &committer_ident)) {
1305 strbuf_addstr(&format, "\n Author: ");
1306 strbuf_addbuf_percentquote(&format, &author_ident);
1308 if (!committer_ident_sufficiently_given()) {
1309 strbuf_addstr(&format, "\n Committer: ");
1310 strbuf_addbuf_percentquote(&format, &committer_ident);
1311 if (advice_implicit_identity) {
1312 strbuf_addch(&format, '\n');
1313 strbuf_addstr(&format, _(implicit_ident_advice));
1316 strbuf_release(&author_ident);
1317 strbuf_release(&committer_ident);
1319 init_revisions(&rev, prefix);
1320 setup_revisions(0, NULL, &rev, NULL);
1323 rev.diffopt.output_format =
1324 DIFF_FORMAT_SHORTSTAT | DIFF_FORMAT_SUMMARY;
1326 rev.verbose_header = 1;
1327 rev.show_root_diff = 1;
1328 get_commit_format(format.buf, &rev);
1329 rev.always_show_header = 0;
1330 rev.diffopt.detect_rename = 1;
1331 rev.diffopt.break_opt = 0;
1332 diff_setup_done(&rev.diffopt);
1334 head = resolve_ref_unsafe("HEAD", junk_sha1, 0, NULL);
1336 !prefixcmp(head, "refs/heads/") ?
1338 !strcmp(head, "HEAD") ?
1339 _("detached HEAD") :
1341 initial_commit ? _(" (root-commit)") : "");
1343 if (!log_tree_commit(&rev, commit)) {
1344 rev.always_show_header = 1;
1345 rev.use_terminator = 1;
1346 log_tree_commit(&rev, commit);
1349 strbuf_release(&format);
1352 static int git_commit_config(const char *k, const char *v, void *cb)
1354 struct wt_status *s = cb;
1357 if (!strcmp(k, "commit.template"))
1358 return git_config_pathname(&template_file, k, v);
1359 if (!strcmp(k, "commit.status")) {
1360 include_status = git_config_bool(k, v);
1363 if (!strcmp(k, "commit.cleanup"))
1364 return git_config_string(&cleanup_arg, k, v);
1366 status = git_gpg_config(k, v, NULL);
1369 return git_status_config(k, v, s);
1372 static int run_rewrite_hook(const unsigned char *oldsha1,
1373 const unsigned char *newsha1)
1375 /* oldsha1 SP newsha1 LF NUL */
1376 static char buf[2*40 + 3];
1377 struct child_process proc;
1378 const char *argv[3];
1382 argv[0] = find_hook("post-rewrite");
1389 memset(&proc, 0, sizeof(proc));
1392 proc.stdout_to_stderr = 1;
1394 code = start_command(&proc);
1397 n = snprintf(buf, sizeof(buf), "%s %s\n",
1398 sha1_to_hex(oldsha1), sha1_to_hex(newsha1));
1399 write_in_full(proc.in, buf, n);
1401 return finish_command(&proc);
1404 int cmd_commit(int argc, const char **argv, const char *prefix)
1406 static struct wt_status s;
1407 static struct option builtin_commit_options[] = {
1408 OPT__QUIET(&quiet, N_("suppress summary after successful commit")),
1409 OPT__VERBOSE(&verbose, N_("show diff in commit message template")),
1411 OPT_GROUP(N_("Commit message options")),
1412 OPT_FILENAME('F', "file", &logfile, N_("read message from file")),
1413 OPT_STRING(0, "author", &force_author, N_("author"), N_("override author for commit")),
1414 OPT_STRING(0, "date", &force_date, N_("date"), N_("override date for commit")),
1415 OPT_CALLBACK('m', "message", &message, N_("message"), N_("commit message"), opt_parse_m),
1416 OPT_STRING('c', "reedit-message", &edit_message, N_("commit"), N_("reuse and edit message from specified commit")),
1417 OPT_STRING('C', "reuse-message", &use_message, N_("commit"), N_("reuse message from specified commit")),
1418 OPT_STRING(0, "fixup", &fixup_message, N_("commit"), N_("use autosquash formatted message to fixup specified commit")),
1419 OPT_STRING(0, "squash", &squash_message, N_("commit"), N_("use autosquash formatted message to squash specified commit")),
1420 OPT_BOOLEAN(0, "reset-author", &renew_authorship, N_("the commit is authored by me now (used with -C/-c/--amend)")),
1421 OPT_BOOLEAN('s', "signoff", &signoff, N_("add Signed-off-by:")),
1422 OPT_FILENAME('t', "template", &template_file, N_("use specified template file")),
1423 OPT_BOOL('e', "edit", &edit_flag, N_("force edit of commit")),
1424 OPT_STRING(0, "cleanup", &cleanup_arg, N_("default"), N_("how to strip spaces and #comments from message")),
1425 OPT_BOOLEAN(0, "status", &include_status, N_("include status in commit message template")),
1426 { OPTION_STRING, 'S', "gpg-sign", &sign_commit, N_("key id"),
1427 N_("GPG sign commit"), PARSE_OPT_OPTARG, NULL, (intptr_t) "" },
1428 /* end commit message options */
1430 OPT_GROUP(N_("Commit contents options")),
1431 OPT_BOOLEAN('a', "all", &all, N_("commit all changed files")),
1432 OPT_BOOLEAN('i', "include", &also, N_("add specified files to index for commit")),
1433 OPT_BOOLEAN(0, "interactive", &interactive, N_("interactively add files")),
1434 OPT_BOOLEAN('p', "patch", &patch_interactive, N_("interactively add changes")),
1435 OPT_BOOLEAN('o', "only", &only, N_("commit only specified files")),
1436 OPT_BOOLEAN('n', "no-verify", &no_verify, N_("bypass pre-commit hook")),
1437 OPT_BOOLEAN(0, "dry-run", &dry_run, N_("show what would be committed")),
1438 OPT_SET_INT(0, "short", &status_format, N_("show status concisely"),
1439 STATUS_FORMAT_SHORT),
1440 OPT_BOOL(0, "branch", &s.show_branch, N_("show branch information")),
1441 OPT_SET_INT(0, "porcelain", &status_format,
1442 N_("machine-readable output"), STATUS_FORMAT_PORCELAIN),
1443 OPT_SET_INT(0, "long", &status_format,
1444 N_("show status in long format (default)"),
1445 STATUS_FORMAT_LONG),
1446 OPT_BOOLEAN('z', "null", &s.null_termination,
1447 N_("terminate entries with NUL")),
1448 OPT_BOOLEAN(0, "amend", &amend, N_("amend previous commit")),
1449 OPT_BOOLEAN(0, "no-post-rewrite", &no_post_rewrite, N_("bypass post-rewrite hook")),
1450 { OPTION_STRING, 'u', "untracked-files", &untracked_files_arg, N_("mode"), N_("show untracked files, optional modes: all, normal, no. (Default: all)"), PARSE_OPT_OPTARG, NULL, (intptr_t)"all" },
1451 /* end commit contents options */
1453 { OPTION_BOOLEAN, 0, "allow-empty", &allow_empty, NULL,
1454 N_("ok to record an empty change"),
1455 PARSE_OPT_NOARG | PARSE_OPT_HIDDEN },
1456 { OPTION_BOOLEAN, 0, "allow-empty-message", &allow_empty_message, NULL,
1457 N_("ok to record a change with an empty message"),
1458 PARSE_OPT_NOARG | PARSE_OPT_HIDDEN },
1463 struct strbuf sb = STRBUF_INIT;
1464 struct strbuf author_ident = STRBUF_INIT;
1465 const char *index_file, *reflog_msg;
1467 unsigned char sha1[20];
1468 struct ref_lock *ref_lock;
1469 struct commit_list *parents = NULL, **pptr = &parents;
1470 struct stat statbuf;
1471 int allow_fast_forward = 1;
1472 struct commit *current_head = NULL;
1473 struct commit_extra_header *extra = NULL;
1475 if (argc == 2 && !strcmp(argv[1], "-h"))
1476 usage_with_options(builtin_commit_usage, builtin_commit_options);
1478 wt_status_prepare(&s);
1479 gitmodules_config();
1480 git_config(git_commit_config, &s);
1481 status_format = STATUS_FORMAT_NONE; /* Ignore status.short */
1482 determine_whence(&s);
1485 if (get_sha1("HEAD", sha1))
1486 current_head = NULL;
1488 current_head = lookup_commit_or_die(sha1, "HEAD");
1489 if (!current_head || parse_commit(current_head))
1490 die(_("could not parse HEAD commit"));
1492 argc = parse_and_validate_options(argc, argv, builtin_commit_options,
1493 builtin_commit_usage,
1494 prefix, current_head, &s);
1496 return dry_run_commit(argc, argv, prefix, current_head, &s);
1497 index_file = prepare_index(argc, argv, prefix, current_head, 0);
1499 /* Set up everything for writing the commit object. This includes
1500 running hooks, writing the trees, and interacting with the user. */
1501 if (!prepare_to_commit(index_file, prefix,
1502 current_head, &s, &author_ident)) {
1503 rollback_index_files();
1507 /* Determine parents */
1508 reflog_msg = getenv("GIT_REFLOG_ACTION");
1509 if (!current_head) {
1511 reflog_msg = "commit (initial)";
1513 struct commit_list *c;
1516 reflog_msg = "commit (amend)";
1517 for (c = current_head->parents; c; c = c->next)
1518 pptr = &commit_list_insert(c->item, pptr)->next;
1519 } else if (whence == FROM_MERGE) {
1520 struct strbuf m = STRBUF_INIT;
1524 reflog_msg = "commit (merge)";
1525 pptr = &commit_list_insert(current_head, pptr)->next;
1526 fp = fopen(git_path("MERGE_HEAD"), "r");
1528 die_errno(_("could not open '%s' for reading"),
1529 git_path("MERGE_HEAD"));
1530 while (strbuf_getline(&m, fp, '\n') != EOF) {
1531 struct commit *parent;
1533 parent = get_merge_parent(m.buf);
1535 die(_("Corrupt MERGE_HEAD file (%s)"), m.buf);
1536 pptr = &commit_list_insert(parent, pptr)->next;
1540 if (!stat(git_path("MERGE_MODE"), &statbuf)) {
1541 if (strbuf_read_file(&sb, git_path("MERGE_MODE"), 0) < 0)
1542 die_errno(_("could not read MERGE_MODE"));
1543 if (!strcmp(sb.buf, "no-ff"))
1544 allow_fast_forward = 0;
1546 if (allow_fast_forward)
1547 parents = reduce_heads(parents);
1550 reflog_msg = (whence == FROM_CHERRY_PICK)
1551 ? "commit (cherry-pick)"
1553 pptr = &commit_list_insert(current_head, pptr)->next;
1556 /* Finally, get the commit message */
1558 if (strbuf_read_file(&sb, git_path(commit_editmsg), 0) < 0) {
1559 int saved_errno = errno;
1560 rollback_index_files();
1561 die(_("could not read commit message: %s"), strerror(saved_errno));
1564 /* Truncate the message just before the diff, if any. */
1566 p = strstr(sb.buf, "\ndiff --git ");
1568 strbuf_setlen(&sb, p - sb.buf + 1);
1571 if (cleanup_mode != CLEANUP_NONE)
1572 stripspace(&sb, cleanup_mode == CLEANUP_ALL);
1573 if (template_untouched(&sb) && !allow_empty_message) {
1574 rollback_index_files();
1575 fprintf(stderr, _("Aborting commit; you did not edit the message.\n"));
1578 if (message_is_empty(&sb) && !allow_empty_message) {
1579 rollback_index_files();
1580 fprintf(stderr, _("Aborting commit due to empty commit message.\n"));
1585 const char *exclude_gpgsig[2] = { "gpgsig", NULL };
1586 extra = read_commit_extra_headers(current_head, exclude_gpgsig);
1588 struct commit_extra_header **tail = &extra;
1589 append_merge_tag_headers(parents, &tail);
1592 if (commit_tree_extended(&sb, active_cache_tree->sha1, parents, sha1,
1593 author_ident.buf, sign_commit, extra)) {
1594 rollback_index_files();
1595 die(_("failed to write commit object"));
1597 strbuf_release(&author_ident);
1598 free_commit_extra_headers(extra);
1600 ref_lock = lock_any_ref_for_update("HEAD",
1603 : current_head->object.sha1,
1606 nl = strchr(sb.buf, '\n');
1608 strbuf_setlen(&sb, nl + 1 - sb.buf);
1610 strbuf_addch(&sb, '\n');
1611 strbuf_insert(&sb, 0, reflog_msg, strlen(reflog_msg));
1612 strbuf_insert(&sb, strlen(reflog_msg), ": ", 2);
1615 rollback_index_files();
1616 die(_("cannot lock HEAD ref"));
1618 if (write_ref_sha1(ref_lock, sha1, sb.buf) < 0) {
1619 rollback_index_files();
1620 die(_("cannot update HEAD ref"));
1623 unlink(git_path("CHERRY_PICK_HEAD"));
1624 unlink(git_path("REVERT_HEAD"));
1625 unlink(git_path("MERGE_HEAD"));
1626 unlink(git_path("MERGE_MSG"));
1627 unlink(git_path("MERGE_MODE"));
1628 unlink(git_path("SQUASH_MSG"));
1630 if (commit_index_files())
1631 die (_("Repository has been updated, but unable to write\n"
1632 "new_index file. Check that disk is not full or quota is\n"
1633 "not exceeded, and then \"git reset HEAD\" to recover."));
1636 run_hook(get_index_file(), "post-commit", NULL);
1637 if (amend && !no_post_rewrite) {
1638 struct notes_rewrite_cfg *cfg;
1639 cfg = init_copy_notes_for_rewrite("amend");
1641 /* we are amending, so current_head is not NULL */
1642 copy_note_for_rewrite(cfg, current_head->object.sha1, sha1);
1643 finish_copy_notes_for_rewrite(cfg, "Notes added by 'git commit --amend'");
1645 run_rewrite_hook(current_head->object.sha1, sha1);
1648 print_summary(prefix, sha1, !current_head);