4 * Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>
5 * Based on git-commit.sh by Junio C Hamano and Linus Torvalds
8 #define USE_THE_INDEX_COMPATIBILITY_MACROS
12 #include "cache-tree.h"
20 #include "wt-status.h"
21 #include "run-command.h"
26 #include "parse-options.h"
27 #include "string-list.h"
29 #include "unpack-trees.h"
31 #include "submodule.h"
32 #include "gpg-interface.h"
34 #include "sequencer.h"
37 #include "commit-reach.h"
38 #include "commit-graph.h"
40 static const char * const builtin_commit_usage[] = {
41 N_("git commit [<options>] [--] <pathspec>..."),
45 static const char * const builtin_status_usage[] = {
46 N_("git status [<options>] [--] <pathspec>..."),
50 static const char empty_amend_advice[] =
51 N_("You asked to amend the most recent commit, but doing so would make\n"
52 "it empty. You can repeat your command with --allow-empty, or you can\n"
53 "remove the commit entirely with \"git reset HEAD^\".\n");
55 static const char empty_cherry_pick_advice[] =
56 N_("The previous cherry-pick is now empty, possibly due to conflict resolution.\n"
57 "If you wish to commit it anyway, use:\n"
59 " git commit --allow-empty\n"
62 static const char empty_rebase_pick_advice[] =
63 N_("Otherwise, please use 'git rebase --skip'\n");
65 static const char empty_cherry_pick_advice_single[] =
66 N_("Otherwise, please use 'git cherry-pick --skip'\n");
68 static const char empty_cherry_pick_advice_multi[] =
71 " git cherry-pick --continue\n"
73 "to resume cherry-picking the remaining commits.\n"
74 "If you wish to skip this commit, use:\n"
76 " git cherry-pick --skip\n"
79 static const char *color_status_slots[] = {
80 [WT_STATUS_HEADER] = "header",
81 [WT_STATUS_UPDATED] = "updated",
82 [WT_STATUS_CHANGED] = "changed",
83 [WT_STATUS_UNTRACKED] = "untracked",
84 [WT_STATUS_NOBRANCH] = "noBranch",
85 [WT_STATUS_UNMERGED] = "unmerged",
86 [WT_STATUS_LOCAL_BRANCH] = "localBranch",
87 [WT_STATUS_REMOTE_BRANCH] = "remoteBranch",
88 [WT_STATUS_ONBRANCH] = "branch",
91 static const char *use_message_buffer;
92 static struct lock_file index_lock; /* real index */
93 static struct lock_file false_lock; /* used only for partial commits */
100 static const char *logfile, *force_author;
101 static const char *template_file;
103 * The _message variables are commit names from which to take
104 * the commit message and/or authorship.
106 static const char *author_message, *author_message_buffer;
107 static char *edit_message, *use_message;
108 static char *fixup_message, *squash_message;
109 static int all, also, interactive, patch_interactive, only, amend, signoff;
110 static int edit_flag = -1; /* unspecified */
111 static int quiet, verbose, no_verify, allow_empty, dry_run, renew_authorship;
112 static int config_commit_verbose = -1; /* unspecified */
113 static int no_post_rewrite, allow_empty_message;
114 static char *untracked_files_arg, *force_date, *ignore_submodule_arg, *ignored_arg;
115 static char *sign_commit;
118 * The default commit message cleanup mode will remove the lines
119 * beginning with # (shell comments) and leading and trailing
120 * whitespaces (empty lines or containing only whitespaces)
121 * if editor is used, and only the whitespaces if the message
122 * is specified explicitly.
124 static enum commit_msg_cleanup_mode cleanup_mode;
125 static const char *cleanup_arg;
127 static enum commit_whence whence;
128 static int use_editor = 1, include_status = 1;
129 static int have_option_m;
130 static struct strbuf message = STRBUF_INIT;
132 static enum wt_status_format status_format = STATUS_FORMAT_UNSPECIFIED;
134 static int opt_parse_porcelain(const struct option *opt, const char *arg, int unset)
136 enum wt_status_format *value = (enum wt_status_format *)opt->value;
138 *value = STATUS_FORMAT_NONE;
140 *value = STATUS_FORMAT_PORCELAIN;
141 else if (!strcmp(arg, "v1") || !strcmp(arg, "1"))
142 *value = STATUS_FORMAT_PORCELAIN;
143 else if (!strcmp(arg, "v2") || !strcmp(arg, "2"))
144 *value = STATUS_FORMAT_PORCELAIN_V2;
146 die("unsupported porcelain version '%s'", arg);
151 static int opt_parse_m(const struct option *opt, const char *arg, int unset)
153 struct strbuf *buf = opt->value;
156 strbuf_setlen(buf, 0);
160 strbuf_addch(buf, '\n');
161 strbuf_addstr(buf, arg);
162 strbuf_complete_line(buf);
167 static int opt_parse_rename_score(const struct option *opt, const char *arg, int unset)
169 const char **value = opt->value;
171 BUG_ON_OPT_NEG(unset);
173 if (arg != NULL && *arg == '=')
180 static void determine_whence(struct wt_status *s)
182 if (file_exists(git_path_merge_head(the_repository)))
184 else if (!sequencer_determine_whence(the_repository, &whence))
185 whence = FROM_COMMIT;
190 static void status_init_config(struct wt_status *s, config_fn_t fn)
192 wt_status_prepare(the_repository, s);
193 init_diff_ui_defaults();
196 s->hints = advice_status_hints; /* must come after git_config() */
199 static void rollback_index_files(void)
201 switch (commit_style) {
203 break; /* nothing to do */
205 rollback_lock_file(&index_lock);
208 rollback_lock_file(&index_lock);
209 rollback_lock_file(&false_lock);
214 static int commit_index_files(void)
218 switch (commit_style) {
220 break; /* nothing to do */
222 err = commit_lock_file(&index_lock);
225 err = commit_lock_file(&index_lock);
226 rollback_lock_file(&false_lock);
234 * Take a union of paths in the index and the named tree (typically, "HEAD"),
235 * and return the paths that match the given pattern in list.
237 static int list_paths(struct string_list *list, const char *with_tree,
238 const struct pathspec *pattern)
246 m = xcalloc(1, pattern->nr);
249 char *max_prefix = common_prefix(pattern);
250 overlay_tree_on_index(&the_index, with_tree, max_prefix);
254 for (i = 0; i < active_nr; i++) {
255 const struct cache_entry *ce = active_cache[i];
256 struct string_list_item *item;
258 if (ce->ce_flags & CE_UPDATE)
260 if (!ce_path_match(&the_index, ce, pattern, m))
262 item = string_list_insert(list, ce->name);
263 if (ce_skip_worktree(ce))
264 item->util = item; /* better a valid pointer than a fake one */
267 ret = report_path_error(m, pattern);
272 static void add_remove_files(struct string_list *list)
275 for (i = 0; i < list->nr; i++) {
277 struct string_list_item *p = &(list->items[i]);
279 /* p->util is skip-worktree */
283 if (!lstat(p->string, &st)) {
284 if (add_to_cache(p->string, &st, 0))
285 die(_("updating files failed"));
287 remove_file_from_cache(p->string);
291 static void create_base_index(const struct commit *current_head)
294 struct unpack_trees_options opts;
302 memset(&opts, 0, sizeof(opts));
306 opts.src_index = &the_index;
307 opts.dst_index = &the_index;
309 opts.fn = oneway_merge;
310 tree = parse_tree_indirect(¤t_head->object.oid);
312 die(_("failed to unpack HEAD tree object"));
314 init_tree_desc(&t, tree->buffer, tree->size);
315 if (unpack_trees(1, &t, &opts))
316 exit(128); /* We've already reported the error, finish dying */
319 static void refresh_cache_or_die(int refresh_flags)
322 * refresh_flags contains REFRESH_QUIET, so the only errors
323 * are for unmerged entries.
325 if (refresh_cache(refresh_flags | REFRESH_IN_PORCELAIN))
326 die_resolve_conflict("commit");
329 static const char *prepare_index(int argc, const char **argv, const char *prefix,
330 const struct commit *current_head, int is_status)
332 struct string_list partial = STRING_LIST_INIT_DUP;
333 struct pathspec pathspec;
334 int refresh_flags = REFRESH_QUIET;
338 refresh_flags |= REFRESH_UNMERGED;
339 parse_pathspec(&pathspec, 0,
340 PATHSPEC_PREFER_FULL,
343 if (read_cache_preload(&pathspec) < 0)
344 die(_("index file corrupt"));
347 char *old_index_env = NULL;
348 hold_locked_index(&index_lock, LOCK_DIE_ON_ERROR);
350 refresh_cache_or_die(refresh_flags);
352 if (write_locked_index(&the_index, &index_lock, 0))
353 die(_("unable to create temporary index"));
355 old_index_env = xstrdup_or_null(getenv(INDEX_ENVIRONMENT));
356 setenv(INDEX_ENVIRONMENT, get_lock_file_path(&index_lock), 1);
358 if (interactive_add(argc, argv, prefix, patch_interactive) != 0)
359 die(_("interactive add failed"));
361 if (old_index_env && *old_index_env)
362 setenv(INDEX_ENVIRONMENT, old_index_env, 1);
364 unsetenv(INDEX_ENVIRONMENT);
365 FREE_AND_NULL(old_index_env);
368 read_cache_from(get_lock_file_path(&index_lock));
369 if (update_main_cache_tree(WRITE_TREE_SILENT) == 0) {
370 if (reopen_lock_file(&index_lock) < 0)
371 die(_("unable to write index file"));
372 if (write_locked_index(&the_index, &index_lock, 0))
373 die(_("unable to update temporary index"));
375 warning(_("Failed to update main cache tree"));
377 commit_style = COMMIT_NORMAL;
378 ret = get_lock_file_path(&index_lock);
383 * Non partial, non as-is commit.
385 * (1) get the real index;
386 * (2) update the_index as necessary;
387 * (3) write the_index out to the real index (still locked);
388 * (4) return the name of the locked index file.
390 * The caller should run hooks on the locked real index, and
391 * (A) if all goes well, commit the real index;
392 * (B) on failure, rollback the real index.
394 if (all || (also && pathspec.nr)) {
395 hold_locked_index(&index_lock, LOCK_DIE_ON_ERROR);
396 add_files_to_cache(also ? prefix : NULL, &pathspec, 0);
397 refresh_cache_or_die(refresh_flags);
398 update_main_cache_tree(WRITE_TREE_SILENT);
399 if (write_locked_index(&the_index, &index_lock, 0))
400 die(_("unable to write new_index file"));
401 commit_style = COMMIT_NORMAL;
402 ret = get_lock_file_path(&index_lock);
409 * (1) return the name of the real index file.
411 * The caller should run hooks on the real index,
412 * and create commit from the_index.
413 * We still need to refresh the index here.
415 if (!only && !pathspec.nr) {
416 hold_locked_index(&index_lock, LOCK_DIE_ON_ERROR);
417 refresh_cache_or_die(refresh_flags);
418 if (active_cache_changed
419 || !cache_tree_fully_valid(active_cache_tree))
420 update_main_cache_tree(WRITE_TREE_SILENT);
421 if (write_locked_index(&the_index, &index_lock,
422 COMMIT_LOCK | SKIP_IF_UNCHANGED))
423 die(_("unable to write new_index file"));
424 commit_style = COMMIT_AS_IS;
425 ret = get_index_file();
432 * (0) find the set of affected paths;
433 * (1) get lock on the real index file;
434 * (2) update the_index with the given paths;
435 * (3) write the_index out to the real index (still locked);
436 * (4) get lock on the false index file;
437 * (5) reset the_index from HEAD;
438 * (6) update the_index the same way as (2);
439 * (7) write the_index out to the false index file;
440 * (8) return the name of the false index file (still locked);
442 * The caller should run hooks on the locked false index, and
443 * create commit from it. Then
444 * (A) if all goes well, commit the real index;
445 * (B) on failure, rollback the real index;
446 * In either case, rollback the false index.
448 commit_style = COMMIT_PARTIAL;
450 if (whence != FROM_COMMIT) {
451 if (whence == FROM_MERGE)
452 die(_("cannot do a partial commit during a merge."));
453 else if (is_from_cherry_pick(whence))
454 die(_("cannot do a partial commit during a cherry-pick."));
455 else if (is_from_rebase(whence))
456 die(_("cannot do a partial commit during a rebase."));
459 if (list_paths(&partial, !current_head ? NULL : "HEAD", &pathspec))
463 if (read_cache() < 0)
464 die(_("cannot read the index"));
466 hold_locked_index(&index_lock, LOCK_DIE_ON_ERROR);
467 add_remove_files(&partial);
468 refresh_cache(REFRESH_QUIET);
469 update_main_cache_tree(WRITE_TREE_SILENT);
470 if (write_locked_index(&the_index, &index_lock, 0))
471 die(_("unable to write new_index file"));
473 hold_lock_file_for_update(&false_lock,
474 git_path("next-index-%"PRIuMAX,
475 (uintmax_t) getpid()),
478 create_base_index(current_head);
479 add_remove_files(&partial);
480 refresh_cache(REFRESH_QUIET);
482 if (write_locked_index(&the_index, &false_lock, 0))
483 die(_("unable to write temporary index file"));
486 ret = get_lock_file_path(&false_lock);
487 read_cache_from(ret);
489 string_list_clear(&partial, 0);
490 clear_pathspec(&pathspec);
494 static int run_status(FILE *fp, const char *index_file, const char *prefix, int nowarn,
497 struct object_id oid;
499 if (s->relative_paths)
504 s->reference = "HEAD^1";
506 s->verbose = verbose;
507 s->index_file = index_file;
510 s->is_initial = get_oid(s->reference, &oid) ? 1 : 0;
512 oidcpy(&s->oid_commit, &oid);
513 s->status_format = status_format;
514 s->ignore_submodule_arg = ignore_submodule_arg;
516 wt_status_collect(s);
518 wt_status_collect_free_buffers(s);
520 return s->committable;
523 static int is_a_merge(const struct commit *current_head)
525 return !!(current_head->parents && current_head->parents->next);
528 static void assert_split_ident(struct ident_split *id, const struct strbuf *buf)
530 if (split_ident_line(id, buf->buf, buf->len) || !id->date_begin)
531 BUG("unable to parse our own ident: %s", buf->buf);
534 static void export_one(const char *var, const char *s, const char *e, int hack)
536 struct strbuf buf = STRBUF_INIT;
538 strbuf_addch(&buf, hack);
539 strbuf_addf(&buf, "%.*s", (int)(e - s), s);
540 setenv(var, buf.buf, 1);
541 strbuf_release(&buf);
544 static int parse_force_date(const char *in, struct strbuf *out)
546 strbuf_addch(out, '@');
548 if (parse_date(in, out) < 0) {
550 unsigned long t = approxidate_careful(in, &errors);
553 strbuf_addf(out, "%lu", t);
559 static void set_ident_var(char **buf, char *val)
565 static void determine_author_info(struct strbuf *author_ident)
567 char *name, *email, *date;
568 struct ident_split author;
570 name = xstrdup_or_null(getenv("GIT_AUTHOR_NAME"));
571 email = xstrdup_or_null(getenv("GIT_AUTHOR_EMAIL"));
572 date = xstrdup_or_null(getenv("GIT_AUTHOR_DATE"));
574 if (author_message) {
575 struct ident_split ident;
579 a = find_commit_header(author_message_buffer, "author", &len);
581 die(_("commit '%s' lacks author header"), author_message);
582 if (split_ident_line(&ident, a, len) < 0)
583 die(_("commit '%s' has malformed author line"), author_message);
585 set_ident_var(&name, xmemdupz(ident.name_begin, ident.name_end - ident.name_begin));
586 set_ident_var(&email, xmemdupz(ident.mail_begin, ident.mail_end - ident.mail_begin));
588 if (ident.date_begin) {
589 struct strbuf date_buf = STRBUF_INIT;
590 strbuf_addch(&date_buf, '@');
591 strbuf_add(&date_buf, ident.date_begin, ident.date_end - ident.date_begin);
592 strbuf_addch(&date_buf, ' ');
593 strbuf_add(&date_buf, ident.tz_begin, ident.tz_end - ident.tz_begin);
594 set_ident_var(&date, strbuf_detach(&date_buf, NULL));
599 struct ident_split ident;
601 if (split_ident_line(&ident, force_author, strlen(force_author)) < 0)
602 die(_("malformed --author parameter"));
603 set_ident_var(&name, xmemdupz(ident.name_begin, ident.name_end - ident.name_begin));
604 set_ident_var(&email, xmemdupz(ident.mail_begin, ident.mail_end - ident.mail_begin));
608 struct strbuf date_buf = STRBUF_INIT;
609 if (parse_force_date(force_date, &date_buf))
610 die(_("invalid date format: %s"), force_date);
611 set_ident_var(&date, strbuf_detach(&date_buf, NULL));
614 strbuf_addstr(author_ident, fmt_ident(name, email, WANT_AUTHOR_IDENT, date,
616 assert_split_ident(&author, author_ident);
617 export_one("GIT_AUTHOR_NAME", author.name_begin, author.name_end, 0);
618 export_one("GIT_AUTHOR_EMAIL", author.mail_begin, author.mail_end, 0);
619 export_one("GIT_AUTHOR_DATE", author.date_begin, author.tz_end, '@');
625 static int author_date_is_interesting(void)
627 return author_message || force_date;
630 static void adjust_comment_line_char(const struct strbuf *sb)
632 char candidates[] = "#;@!$%^&|:";
636 comment_line_char = candidates[0];
637 if (!memchr(sb->buf, comment_line_char, sb->len))
641 candidate = strchr(candidates, *p);
644 for (p = sb->buf; *p; p++) {
645 if ((p[0] == '\n' || p[0] == '\r') && p[1]) {
646 candidate = strchr(candidates, p[1]);
652 for (p = candidates; *p == ' '; p++)
655 die(_("unable to select a comment character that is not used\n"
656 "in the current commit message"));
657 comment_line_char = *p;
660 static int prepare_to_commit(const char *index_file, const char *prefix,
661 struct commit *current_head,
663 struct strbuf *author_ident)
666 struct strbuf committer_ident = STRBUF_INIT;
668 struct strbuf sb = STRBUF_INIT;
669 const char *hook_arg1 = NULL;
670 const char *hook_arg2 = NULL;
671 int clean_message_contents = (cleanup_mode != COMMIT_MSG_CLEANUP_NONE);
672 int old_display_comment_prefix;
673 int merge_contains_scissors = 0;
675 /* This checks and barfs if author is badly specified */
676 determine_author_info(author_ident);
678 if (!no_verify && run_commit_hook(use_editor, index_file, "pre-commit", NULL))
681 if (squash_message) {
683 * Insert the proper subject line before other commit
684 * message options add their content.
686 if (use_message && !strcmp(use_message, squash_message))
687 strbuf_addstr(&sb, "squash! ");
689 struct pretty_print_context ctx = {0};
691 c = lookup_commit_reference_by_name(squash_message);
693 die(_("could not lookup commit %s"), squash_message);
694 ctx.output_encoding = get_commit_output_encoding();
695 format_commit_message(c, "squash! %s\n\n", &sb,
700 if (have_option_m && !fixup_message) {
701 strbuf_addbuf(&sb, &message);
702 hook_arg1 = "message";
703 } else if (logfile && !strcmp(logfile, "-")) {
705 fprintf(stderr, _("(reading log message from standard input)\n"));
706 if (strbuf_read(&sb, 0, 0) < 0)
707 die_errno(_("could not read log from standard input"));
708 hook_arg1 = "message";
709 } else if (logfile) {
710 if (strbuf_read_file(&sb, logfile, 0) < 0)
711 die_errno(_("could not read log file '%s'"),
713 hook_arg1 = "message";
714 } else if (use_message) {
716 buffer = strstr(use_message_buffer, "\n\n");
718 strbuf_addstr(&sb, skip_blank_lines(buffer + 2));
719 hook_arg1 = "commit";
720 hook_arg2 = use_message;
721 } else if (fixup_message) {
722 struct pretty_print_context ctx = {0};
723 struct commit *commit;
724 commit = lookup_commit_reference_by_name(fixup_message);
726 die(_("could not lookup commit %s"), fixup_message);
727 ctx.output_encoding = get_commit_output_encoding();
728 format_commit_message(commit, "fixup! %s\n\n",
731 strbuf_addbuf(&sb, &message);
732 hook_arg1 = "message";
733 } else if (!stat(git_path_merge_msg(the_repository), &statbuf)) {
734 size_t merge_msg_start;
737 * prepend SQUASH_MSG here if it exists and a
738 * "merge --squash" was originally performed
740 if (!stat(git_path_squash_msg(the_repository), &statbuf)) {
741 if (strbuf_read_file(&sb, git_path_squash_msg(the_repository), 0) < 0)
742 die_errno(_("could not read SQUASH_MSG"));
743 hook_arg1 = "squash";
747 merge_msg_start = sb.len;
748 if (strbuf_read_file(&sb, git_path_merge_msg(the_repository), 0) < 0)
749 die_errno(_("could not read MERGE_MSG"));
751 if (cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS &&
752 wt_status_locate_end(sb.buf + merge_msg_start,
753 sb.len - merge_msg_start) <
754 sb.len - merge_msg_start)
755 merge_contains_scissors = 1;
756 } else if (!stat(git_path_squash_msg(the_repository), &statbuf)) {
757 if (strbuf_read_file(&sb, git_path_squash_msg(the_repository), 0) < 0)
758 die_errno(_("could not read SQUASH_MSG"));
759 hook_arg1 = "squash";
760 } else if (template_file) {
761 if (strbuf_read_file(&sb, template_file, 0) < 0)
762 die_errno(_("could not read '%s'"), template_file);
763 hook_arg1 = "template";
764 clean_message_contents = 0;
768 * The remaining cases don't modify the template message, but
769 * just set the argument(s) to the prepare-commit-msg hook.
771 else if (whence == FROM_MERGE)
773 else if (is_from_cherry_pick(whence) || whence == FROM_REBASE_PICK) {
774 hook_arg1 = "commit";
775 hook_arg2 = "CHERRY_PICK_HEAD";
778 if (squash_message) {
780 * If squash_commit was used for the commit subject,
781 * then we're possibly hijacking other commit log options.
782 * Reset the hook args to tell the real story.
784 hook_arg1 = "message";
788 s->fp = fopen_for_writing(git_path_commit_editmsg());
790 die_errno(_("could not open '%s'"), git_path_commit_editmsg());
792 /* Ignore status.displayCommentPrefix: we do need comments in COMMIT_EDITMSG. */
793 old_display_comment_prefix = s->display_comment_prefix;
794 s->display_comment_prefix = 1;
797 * Most hints are counter-productive when the commit has
802 if (clean_message_contents)
803 strbuf_stripspace(&sb, 0);
806 append_signoff(&sb, ignore_non_trailer(sb.buf, sb.len), 0);
808 if (fwrite(sb.buf, 1, sb.len, s->fp) < sb.len)
809 die_errno(_("could not write commit template"));
811 if (auto_comment_line_char)
812 adjust_comment_line_char(&sb);
815 /* This checks if committer ident is explicitly given */
816 strbuf_addstr(&committer_ident, git_committer_info(IDENT_STRICT));
817 if (use_editor && include_status) {
819 int saved_color_setting;
820 struct ident_split ci, ai;
822 if (whence != FROM_COMMIT) {
823 if (cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS &&
824 !merge_contains_scissors)
825 wt_status_add_cut_line(s->fp);
826 status_printf_ln(s, GIT_COLOR_NORMAL,
829 "It looks like you may be committing a merge.\n"
830 "If this is not correct, please remove the file\n"
834 "It looks like you may be committing a cherry-pick.\n"
835 "If this is not correct, please remove the file\n"
838 whence == FROM_MERGE ?
839 git_path_merge_head(the_repository) :
840 git_path_cherry_pick_head(the_repository));
843 fprintf(s->fp, "\n");
844 if (cleanup_mode == COMMIT_MSG_CLEANUP_ALL)
845 status_printf(s, GIT_COLOR_NORMAL,
846 _("Please enter the commit message for your changes."
847 " Lines starting\nwith '%c' will be ignored, and an empty"
848 " message aborts the commit.\n"), comment_line_char);
849 else if (cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS) {
850 if (whence == FROM_COMMIT && !merge_contains_scissors)
851 wt_status_add_cut_line(s->fp);
852 } else /* COMMIT_MSG_CLEANUP_SPACE, that is. */
853 status_printf(s, GIT_COLOR_NORMAL,
854 _("Please enter the commit message for your changes."
856 "with '%c' will be kept; you may remove them"
857 " yourself if you want to.\n"
858 "An empty message aborts the commit.\n"), comment_line_char);
861 * These should never fail because they come from our own
862 * fmt_ident. They may fail the sane_ident test, but we know
863 * that the name and mail pointers will at least be valid,
864 * which is enough for our tests and printing here.
866 assert_split_ident(&ai, author_ident);
867 assert_split_ident(&ci, &committer_ident);
869 if (ident_cmp(&ai, &ci))
870 status_printf_ln(s, GIT_COLOR_NORMAL,
872 "Author: %.*s <%.*s>"),
873 ident_shown++ ? "" : "\n",
874 (int)(ai.name_end - ai.name_begin), ai.name_begin,
875 (int)(ai.mail_end - ai.mail_begin), ai.mail_begin);
877 if (author_date_is_interesting())
878 status_printf_ln(s, GIT_COLOR_NORMAL,
881 ident_shown++ ? "" : "\n",
882 show_ident_date(&ai, DATE_MODE(NORMAL)));
884 if (!committer_ident_sufficiently_given())
885 status_printf_ln(s, GIT_COLOR_NORMAL,
887 "Committer: %.*s <%.*s>"),
888 ident_shown++ ? "" : "\n",
889 (int)(ci.name_end - ci.name_begin), ci.name_begin,
890 (int)(ci.mail_end - ci.mail_begin), ci.mail_begin);
892 status_printf_ln(s, GIT_COLOR_NORMAL, "%s", ""); /* Add new line for clarity */
894 saved_color_setting = s->use_color;
896 committable = run_status(s->fp, index_file, prefix, 1, s);
897 s->use_color = saved_color_setting;
898 string_list_clear(&s->change, 1);
900 struct object_id oid;
901 const char *parent = "HEAD";
903 if (!active_nr && read_cache() < 0)
904 die(_("Cannot read index"));
909 if (get_oid(parent, &oid)) {
912 for (i = 0; i < active_nr; i++)
913 if (ce_intent_to_add(active_cache[i]))
915 committable = active_nr - ita_nr > 0;
918 * Unless the user did explicitly request a submodule
919 * ignore mode by passing a command line option we do
920 * not ignore any changed submodule SHA-1s when
921 * comparing index and parent, no matter what is
922 * configured. Otherwise we won't commit any
923 * submodules which were manually staged, which would
924 * be really confusing.
926 struct diff_flags flags = DIFF_FLAGS_INIT;
927 flags.override_submodule_config = 1;
928 if (ignore_submodule_arg &&
929 !strcmp(ignore_submodule_arg, "all"))
930 flags.ignore_submodules = 1;
931 committable = index_differs_from(the_repository,
935 strbuf_release(&committer_ident);
940 * Reject an attempt to record a non-merge empty commit without
941 * explicit --allow-empty. In the cherry-pick case, it may be
942 * empty due to conflict resolution, which the user should okay.
944 if (!committable && whence != FROM_MERGE && !allow_empty &&
945 !(amend && is_a_merge(current_head))) {
946 s->display_comment_prefix = old_display_comment_prefix;
947 run_status(stdout, index_file, prefix, 0, s);
949 fputs(_(empty_amend_advice), stderr);
950 else if (is_from_cherry_pick(whence) ||
951 whence == FROM_REBASE_PICK) {
952 fputs(_(empty_cherry_pick_advice), stderr);
953 if (whence == FROM_CHERRY_PICK_SINGLE)
954 fputs(_(empty_cherry_pick_advice_single), stderr);
955 else if (whence == FROM_CHERRY_PICK_MULTI)
956 fputs(_(empty_cherry_pick_advice_multi), stderr);
958 fputs(_(empty_rebase_pick_advice), stderr);
963 if (!no_verify && find_hook("pre-commit")) {
965 * Re-read the index as pre-commit hook could have updated it,
966 * and write it out as a tree. We must do this before we invoke
967 * the editor and after we invoke run_status above.
971 read_cache_from(index_file);
973 if (update_main_cache_tree(0)) {
974 error(_("Error building trees"));
978 if (run_commit_hook(use_editor, index_file, "prepare-commit-msg",
979 git_path_commit_editmsg(), hook_arg1, hook_arg2, NULL))
983 struct argv_array env = ARGV_ARRAY_INIT;
985 argv_array_pushf(&env, "GIT_INDEX_FILE=%s", index_file);
986 if (launch_editor(git_path_commit_editmsg(), NULL, env.argv)) {
988 _("Please supply the message using either -m or -F option.\n"));
991 argv_array_clear(&env);
995 run_commit_hook(use_editor, index_file, "commit-msg", git_path_commit_editmsg(), NULL)) {
1002 static const char *find_author_by_nickname(const char *name)
1004 struct rev_info revs;
1005 struct commit *commit;
1006 struct strbuf buf = STRBUF_INIT;
1007 struct string_list mailmap = STRING_LIST_INIT_NODUP;
1011 repo_init_revisions(the_repository, &revs, NULL);
1012 strbuf_addf(&buf, "--author=%s", name);
1017 setup_revisions(ac, av, &revs, NULL);
1018 revs.mailmap = &mailmap;
1019 read_mailmap(revs.mailmap, NULL);
1021 if (prepare_revision_walk(&revs))
1022 die(_("revision walk setup failed"));
1023 commit = get_revision(&revs);
1025 struct pretty_print_context ctx = {0};
1026 ctx.date_mode.type = DATE_NORMAL;
1027 strbuf_release(&buf);
1028 format_commit_message(commit, "%aN <%aE>", &buf, &ctx);
1029 clear_mailmap(&mailmap);
1030 return strbuf_detach(&buf, NULL);
1032 die(_("--author '%s' is not 'Name <email>' and matches no existing author"), name);
1035 static void handle_ignored_arg(struct wt_status *s)
1038 ; /* default already initialized */
1039 else if (!strcmp(ignored_arg, "traditional"))
1040 s->show_ignored_mode = SHOW_TRADITIONAL_IGNORED;
1041 else if (!strcmp(ignored_arg, "no"))
1042 s->show_ignored_mode = SHOW_NO_IGNORED;
1043 else if (!strcmp(ignored_arg, "matching"))
1044 s->show_ignored_mode = SHOW_MATCHING_IGNORED;
1046 die(_("Invalid ignored mode '%s'"), ignored_arg);
1049 static void handle_untracked_files_arg(struct wt_status *s)
1051 if (!untracked_files_arg)
1052 ; /* default already initialized */
1053 else if (!strcmp(untracked_files_arg, "no"))
1054 s->show_untracked_files = SHOW_NO_UNTRACKED_FILES;
1055 else if (!strcmp(untracked_files_arg, "normal"))
1056 s->show_untracked_files = SHOW_NORMAL_UNTRACKED_FILES;
1057 else if (!strcmp(untracked_files_arg, "all"))
1058 s->show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
1060 * Please update $__git_untracked_file_modes in
1061 * git-completion.bash when you add new options
1064 die(_("Invalid untracked files mode '%s'"), untracked_files_arg);
1067 static const char *read_commit_message(const char *name)
1069 const char *out_enc;
1070 struct commit *commit;
1072 commit = lookup_commit_reference_by_name(name);
1074 die(_("could not lookup commit %s"), name);
1075 out_enc = get_commit_output_encoding();
1076 return logmsg_reencode(commit, NULL, out_enc);
1080 * Enumerate what needs to be propagated when --porcelain
1081 * is not in effect here.
1083 static struct status_deferred_config {
1084 enum wt_status_format status_format;
1086 enum ahead_behind_flags ahead_behind;
1087 } status_deferred_config = {
1088 STATUS_FORMAT_UNSPECIFIED,
1089 -1, /* unspecified */
1090 AHEAD_BEHIND_UNSPECIFIED,
1093 static void finalize_deferred_config(struct wt_status *s)
1095 int use_deferred_config = (status_format != STATUS_FORMAT_PORCELAIN &&
1096 status_format != STATUS_FORMAT_PORCELAIN_V2 &&
1097 !s->null_termination);
1099 if (s->null_termination) {
1100 if (status_format == STATUS_FORMAT_NONE ||
1101 status_format == STATUS_FORMAT_UNSPECIFIED)
1102 status_format = STATUS_FORMAT_PORCELAIN;
1103 else if (status_format == STATUS_FORMAT_LONG)
1104 die(_("--long and -z are incompatible"));
1107 if (use_deferred_config && status_format == STATUS_FORMAT_UNSPECIFIED)
1108 status_format = status_deferred_config.status_format;
1109 if (status_format == STATUS_FORMAT_UNSPECIFIED)
1110 status_format = STATUS_FORMAT_NONE;
1112 if (use_deferred_config && s->show_branch < 0)
1113 s->show_branch = status_deferred_config.show_branch;
1114 if (s->show_branch < 0)
1118 * If the user did not give a "--[no]-ahead-behind" command
1119 * line argument *AND* we will print in a human-readable format
1120 * (short, long etc.) then we inherit from the status.aheadbehind
1121 * config setting. In all other cases (and porcelain V[12] formats
1122 * in particular), we inherit _FULL for backwards compatibility.
1124 if (use_deferred_config &&
1125 s->ahead_behind_flags == AHEAD_BEHIND_UNSPECIFIED)
1126 s->ahead_behind_flags = status_deferred_config.ahead_behind;
1128 if (s->ahead_behind_flags == AHEAD_BEHIND_UNSPECIFIED)
1129 s->ahead_behind_flags = AHEAD_BEHIND_FULL;
1132 static int parse_and_validate_options(int argc, const char *argv[],
1133 const struct option *options,
1134 const char * const usage[],
1136 struct commit *current_head,
1137 struct wt_status *s)
1141 argc = parse_options(argc, argv, prefix, options, usage, 0);
1142 finalize_deferred_config(s);
1144 if (force_author && !strchr(force_author, '>'))
1145 force_author = find_author_by_nickname(force_author);
1147 if (force_author && renew_authorship)
1148 die(_("Using both --reset-author and --author does not make sense"));
1150 if (logfile || have_option_m || use_message || fixup_message)
1153 use_editor = edit_flag;
1155 /* Sanity check options */
1156 if (amend && !current_head)
1157 die(_("You have nothing to amend."));
1158 if (amend && whence != FROM_COMMIT) {
1159 if (whence == FROM_MERGE)
1160 die(_("You are in the middle of a merge -- cannot amend."));
1161 else if (is_from_cherry_pick(whence))
1162 die(_("You are in the middle of a cherry-pick -- cannot amend."));
1163 else if (whence == FROM_REBASE_PICK)
1164 die(_("You are in the middle of a rebase -- cannot amend."));
1166 if (fixup_message && squash_message)
1167 die(_("Options --squash and --fixup cannot be used together"));
1177 die(_("Only one of -c/-C/-F/--fixup can be used."));
1178 if (have_option_m && (edit_message || use_message || logfile))
1179 die((_("Option -m cannot be combined with -c/-C/-F.")));
1180 if (f || have_option_m)
1181 template_file = NULL;
1183 use_message = edit_message;
1184 if (amend && !use_message && !fixup_message)
1185 use_message = "HEAD";
1186 if (!use_message && !is_from_cherry_pick(whence) &&
1187 !is_from_rebase(whence) && renew_authorship)
1188 die(_("--reset-author can be used only with -C, -c or --amend."));
1190 use_message_buffer = read_commit_message(use_message);
1191 if (!renew_authorship) {
1192 author_message = use_message;
1193 author_message_buffer = use_message_buffer;
1196 if ((is_from_cherry_pick(whence) || whence == FROM_REBASE_PICK) &&
1197 !renew_authorship) {
1198 author_message = "CHERRY_PICK_HEAD";
1199 author_message_buffer = read_commit_message(author_message);
1202 if (patch_interactive)
1205 if (also + only + all + interactive > 1)
1206 die(_("Only one of --include/--only/--all/--interactive/--patch can be used."));
1207 if (argc == 0 && (also || (only && !amend && !allow_empty)))
1208 die(_("No paths with --include/--only does not make sense."));
1209 cleanup_mode = get_cleanup_mode(cleanup_arg, use_editor);
1211 handle_untracked_files_arg(s);
1213 if (all && argc > 0)
1214 die(_("paths '%s ...' with -a does not make sense"),
1217 if (status_format != STATUS_FORMAT_NONE)
1223 static int dry_run_commit(int argc, const char **argv, const char *prefix,
1224 const struct commit *current_head, struct wt_status *s)
1227 const char *index_file;
1229 index_file = prepare_index(argc, argv, prefix, current_head, 1);
1230 committable = run_status(stdout, index_file, prefix, 0, s);
1231 rollback_index_files();
1233 return committable ? 0 : 1;
1236 define_list_config_array_extra(color_status_slots, {"added"});
1238 static int parse_status_slot(const char *slot)
1240 if (!strcasecmp(slot, "added"))
1241 return WT_STATUS_UPDATED;
1243 return LOOKUP_CONFIG(color_status_slots, slot);
1246 static int git_status_config(const char *k, const char *v, void *cb)
1248 struct wt_status *s = cb;
1249 const char *slot_name;
1251 if (starts_with(k, "column."))
1252 return git_column_config(k, v, "status", &s->colopts);
1253 if (!strcmp(k, "status.submodulesummary")) {
1255 s->submodule_summary = git_config_bool_or_int(k, v, &is_bool);
1256 if (is_bool && s->submodule_summary)
1257 s->submodule_summary = -1;
1260 if (!strcmp(k, "status.short")) {
1261 if (git_config_bool(k, v))
1262 status_deferred_config.status_format = STATUS_FORMAT_SHORT;
1264 status_deferred_config.status_format = STATUS_FORMAT_NONE;
1267 if (!strcmp(k, "status.branch")) {
1268 status_deferred_config.show_branch = git_config_bool(k, v);
1271 if (!strcmp(k, "status.aheadbehind")) {
1272 status_deferred_config.ahead_behind = git_config_bool(k, v);
1275 if (!strcmp(k, "status.showstash")) {
1276 s->show_stash = git_config_bool(k, v);
1279 if (!strcmp(k, "status.color") || !strcmp(k, "color.status")) {
1280 s->use_color = git_config_colorbool(k, v);
1283 if (!strcmp(k, "status.displaycommentprefix")) {
1284 s->display_comment_prefix = git_config_bool(k, v);
1287 if (skip_prefix(k, "status.color.", &slot_name) ||
1288 skip_prefix(k, "color.status.", &slot_name)) {
1289 int slot = parse_status_slot(slot_name);
1293 return config_error_nonbool(k);
1294 return color_parse(v, s->color_palette[slot]);
1296 if (!strcmp(k, "status.relativepaths")) {
1297 s->relative_paths = git_config_bool(k, v);
1300 if (!strcmp(k, "status.showuntrackedfiles")) {
1302 return config_error_nonbool(k);
1303 else if (!strcmp(v, "no"))
1304 s->show_untracked_files = SHOW_NO_UNTRACKED_FILES;
1305 else if (!strcmp(v, "normal"))
1306 s->show_untracked_files = SHOW_NORMAL_UNTRACKED_FILES;
1307 else if (!strcmp(v, "all"))
1308 s->show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
1310 return error(_("Invalid untracked files mode '%s'"), v);
1313 if (!strcmp(k, "diff.renamelimit")) {
1314 if (s->rename_limit == -1)
1315 s->rename_limit = git_config_int(k, v);
1318 if (!strcmp(k, "status.renamelimit")) {
1319 s->rename_limit = git_config_int(k, v);
1322 if (!strcmp(k, "diff.renames")) {
1323 if (s->detect_rename == -1)
1324 s->detect_rename = git_config_rename(k, v);
1327 if (!strcmp(k, "status.renames")) {
1328 s->detect_rename = git_config_rename(k, v);
1331 return git_diff_ui_config(k, v, NULL);
1334 int cmd_status(int argc, const char **argv, const char *prefix)
1336 static int no_renames = -1;
1337 static const char *rename_score_arg = (const char *)-1;
1338 static struct wt_status s;
1339 unsigned int progress_flag = 0;
1341 struct object_id oid;
1342 static struct option builtin_status_options[] = {
1343 OPT__VERBOSE(&verbose, N_("be verbose")),
1344 OPT_SET_INT('s', "short", &status_format,
1345 N_("show status concisely"), STATUS_FORMAT_SHORT),
1346 OPT_BOOL('b', "branch", &s.show_branch,
1347 N_("show branch information")),
1348 OPT_BOOL(0, "show-stash", &s.show_stash,
1349 N_("show stash information")),
1350 OPT_BOOL(0, "ahead-behind", &s.ahead_behind_flags,
1351 N_("compute full ahead/behind values")),
1352 { OPTION_CALLBACK, 0, "porcelain", &status_format,
1353 N_("version"), N_("machine-readable output"),
1354 PARSE_OPT_OPTARG, opt_parse_porcelain },
1355 OPT_SET_INT(0, "long", &status_format,
1356 N_("show status in long format (default)"),
1357 STATUS_FORMAT_LONG),
1358 OPT_BOOL('z', "null", &s.null_termination,
1359 N_("terminate entries with NUL")),
1360 { OPTION_STRING, 'u', "untracked-files", &untracked_files_arg,
1362 N_("show untracked files, optional modes: all, normal, no. (Default: all)"),
1363 PARSE_OPT_OPTARG, NULL, (intptr_t)"all" },
1364 { OPTION_STRING, 0, "ignored", &ignored_arg,
1366 N_("show ignored files, optional modes: traditional, matching, no. (Default: traditional)"),
1367 PARSE_OPT_OPTARG, NULL, (intptr_t)"traditional" },
1368 { OPTION_STRING, 0, "ignore-submodules", &ignore_submodule_arg, N_("when"),
1369 N_("ignore changes to submodules, optional when: all, dirty, untracked. (Default: all)"),
1370 PARSE_OPT_OPTARG, NULL, (intptr_t)"all" },
1371 OPT_COLUMN(0, "column", &s.colopts, N_("list untracked files in columns")),
1372 OPT_BOOL(0, "no-renames", &no_renames, N_("do not detect renames")),
1373 { OPTION_CALLBACK, 'M', "find-renames", &rename_score_arg,
1374 N_("n"), N_("detect renames, optionally set similarity index"),
1375 PARSE_OPT_OPTARG | PARSE_OPT_NONEG, opt_parse_rename_score },
1379 if (argc == 2 && !strcmp(argv[1], "-h"))
1380 usage_with_options(builtin_status_usage, builtin_status_options);
1382 status_init_config(&s, git_status_config);
1383 argc = parse_options(argc, argv, prefix,
1384 builtin_status_options,
1385 builtin_status_usage, 0);
1386 finalize_colopts(&s.colopts, -1);
1387 finalize_deferred_config(&s);
1389 handle_untracked_files_arg(&s);
1390 handle_ignored_arg(&s);
1392 if (s.show_ignored_mode == SHOW_MATCHING_IGNORED &&
1393 s.show_untracked_files == SHOW_NO_UNTRACKED_FILES)
1394 die(_("Unsupported combination of ignored and untracked-files arguments"));
1396 parse_pathspec(&s.pathspec, 0,
1397 PATHSPEC_PREFER_FULL,
1400 if (status_format != STATUS_FORMAT_PORCELAIN &&
1401 status_format != STATUS_FORMAT_PORCELAIN_V2)
1402 progress_flag = REFRESH_PROGRESS;
1403 repo_read_index(the_repository);
1404 refresh_index(&the_index,
1405 REFRESH_QUIET|REFRESH_UNMERGED|progress_flag,
1406 &s.pathspec, NULL, NULL);
1408 if (use_optional_locks())
1409 fd = hold_locked_index(&index_lock, 0);
1413 s.is_initial = get_oid(s.reference, &oid) ? 1 : 0;
1415 oidcpy(&s.oid_commit, &oid);
1417 s.ignore_submodule_arg = ignore_submodule_arg;
1418 s.status_format = status_format;
1419 s.verbose = verbose;
1420 if (no_renames != -1)
1421 s.detect_rename = !no_renames;
1422 if ((intptr_t)rename_score_arg != -1) {
1423 if (s.detect_rename < DIFF_DETECT_RENAME)
1424 s.detect_rename = DIFF_DETECT_RENAME;
1425 if (rename_score_arg)
1426 s.rename_score = parse_rename_score(&rename_score_arg);
1429 wt_status_collect(&s);
1432 repo_update_index_if_able(the_repository, &index_lock);
1434 if (s.relative_paths)
1437 wt_status_print(&s);
1438 wt_status_collect_free_buffers(&s);
1443 static int git_commit_config(const char *k, const char *v, void *cb)
1445 struct wt_status *s = cb;
1448 if (!strcmp(k, "commit.template"))
1449 return git_config_pathname(&template_file, k, v);
1450 if (!strcmp(k, "commit.status")) {
1451 include_status = git_config_bool(k, v);
1454 if (!strcmp(k, "commit.cleanup"))
1455 return git_config_string(&cleanup_arg, k, v);
1456 if (!strcmp(k, "commit.gpgsign")) {
1457 sign_commit = git_config_bool(k, v) ? "" : NULL;
1460 if (!strcmp(k, "commit.verbose")) {
1462 config_commit_verbose = git_config_bool_or_int(k, v, &is_bool);
1466 status = git_gpg_config(k, v, NULL);
1469 return git_status_config(k, v, s);
1472 int cmd_commit(int argc, const char **argv, const char *prefix)
1474 const char *argv_gc_auto[] = {"gc", "--auto", NULL};
1475 static struct wt_status s;
1476 static struct option builtin_commit_options[] = {
1477 OPT__QUIET(&quiet, N_("suppress summary after successful commit")),
1478 OPT__VERBOSE(&verbose, N_("show diff in commit message template")),
1480 OPT_GROUP(N_("Commit message options")),
1481 OPT_FILENAME('F', "file", &logfile, N_("read message from file")),
1482 OPT_STRING(0, "author", &force_author, N_("author"), N_("override author for commit")),
1483 OPT_STRING(0, "date", &force_date, N_("date"), N_("override date for commit")),
1484 OPT_CALLBACK('m', "message", &message, N_("message"), N_("commit message"), opt_parse_m),
1485 OPT_STRING('c', "reedit-message", &edit_message, N_("commit"), N_("reuse and edit message from specified commit")),
1486 OPT_STRING('C', "reuse-message", &use_message, N_("commit"), N_("reuse message from specified commit")),
1487 OPT_STRING(0, "fixup", &fixup_message, N_("commit"), N_("use autosquash formatted message to fixup specified commit")),
1488 OPT_STRING(0, "squash", &squash_message, N_("commit"), N_("use autosquash formatted message to squash specified commit")),
1489 OPT_BOOL(0, "reset-author", &renew_authorship, N_("the commit is authored by me now (used with -C/-c/--amend)")),
1490 OPT_BOOL('s', "signoff", &signoff, N_("add Signed-off-by:")),
1491 OPT_FILENAME('t', "template", &template_file, N_("use specified template file")),
1492 OPT_BOOL('e', "edit", &edit_flag, N_("force edit of commit")),
1493 OPT_CLEANUP(&cleanup_arg),
1494 OPT_BOOL(0, "status", &include_status, N_("include status in commit message template")),
1495 { OPTION_STRING, 'S', "gpg-sign", &sign_commit, N_("key-id"),
1496 N_("GPG sign commit"), PARSE_OPT_OPTARG, NULL, (intptr_t) "" },
1497 /* end commit message options */
1499 OPT_GROUP(N_("Commit contents options")),
1500 OPT_BOOL('a', "all", &all, N_("commit all changed files")),
1501 OPT_BOOL('i', "include", &also, N_("add specified files to index for commit")),
1502 OPT_BOOL(0, "interactive", &interactive, N_("interactively add files")),
1503 OPT_BOOL('p', "patch", &patch_interactive, N_("interactively add changes")),
1504 OPT_BOOL('o', "only", &only, N_("commit only specified files")),
1505 OPT_BOOL('n', "no-verify", &no_verify, N_("bypass pre-commit and commit-msg hooks")),
1506 OPT_BOOL(0, "dry-run", &dry_run, N_("show what would be committed")),
1507 OPT_SET_INT(0, "short", &status_format, N_("show status concisely"),
1508 STATUS_FORMAT_SHORT),
1509 OPT_BOOL(0, "branch", &s.show_branch, N_("show branch information")),
1510 OPT_BOOL(0, "ahead-behind", &s.ahead_behind_flags,
1511 N_("compute full ahead/behind values")),
1512 OPT_SET_INT(0, "porcelain", &status_format,
1513 N_("machine-readable output"), STATUS_FORMAT_PORCELAIN),
1514 OPT_SET_INT(0, "long", &status_format,
1515 N_("show status in long format (default)"),
1516 STATUS_FORMAT_LONG),
1517 OPT_BOOL('z', "null", &s.null_termination,
1518 N_("terminate entries with NUL")),
1519 OPT_BOOL(0, "amend", &amend, N_("amend previous commit")),
1520 OPT_BOOL(0, "no-post-rewrite", &no_post_rewrite, N_("bypass post-rewrite hook")),
1521 { 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" },
1522 /* end commit contents options */
1524 OPT_HIDDEN_BOOL(0, "allow-empty", &allow_empty,
1525 N_("ok to record an empty change")),
1526 OPT_HIDDEN_BOOL(0, "allow-empty-message", &allow_empty_message,
1527 N_("ok to record a change with an empty message")),
1532 struct strbuf sb = STRBUF_INIT;
1533 struct strbuf author_ident = STRBUF_INIT;
1534 const char *index_file, *reflog_msg;
1535 struct object_id oid;
1536 struct commit_list *parents = NULL;
1537 struct stat statbuf;
1538 struct commit *current_head = NULL;
1539 struct commit_extra_header *extra = NULL;
1540 struct strbuf err = STRBUF_INIT;
1542 if (argc == 2 && !strcmp(argv[1], "-h"))
1543 usage_with_options(builtin_commit_usage, builtin_commit_options);
1545 status_init_config(&s, git_commit_config);
1546 s.commit_template = 1;
1547 status_format = STATUS_FORMAT_NONE; /* Ignore status.short */
1550 if (get_oid("HEAD", &oid))
1551 current_head = NULL;
1553 current_head = lookup_commit_or_die(&oid, "HEAD");
1554 if (parse_commit(current_head))
1555 die(_("could not parse HEAD commit"));
1557 verbose = -1; /* unspecified */
1558 argc = parse_and_validate_options(argc, argv, builtin_commit_options,
1559 builtin_commit_usage,
1560 prefix, current_head, &s);
1562 verbose = (config_commit_verbose < 0) ? 0 : config_commit_verbose;
1565 return dry_run_commit(argc, argv, prefix, current_head, &s);
1566 index_file = prepare_index(argc, argv, prefix, current_head, 0);
1568 /* Set up everything for writing the commit object. This includes
1569 running hooks, writing the trees, and interacting with the user. */
1570 if (!prepare_to_commit(index_file, prefix,
1571 current_head, &s, &author_ident)) {
1572 rollback_index_files();
1576 /* Determine parents */
1577 reflog_msg = getenv("GIT_REFLOG_ACTION");
1578 if (!current_head) {
1580 reflog_msg = "commit (initial)";
1583 reflog_msg = "commit (amend)";
1584 parents = copy_commit_list(current_head->parents);
1585 } else if (whence == FROM_MERGE) {
1586 struct strbuf m = STRBUF_INIT;
1588 int allow_fast_forward = 1;
1589 struct commit_list **pptr = &parents;
1592 reflog_msg = "commit (merge)";
1593 pptr = commit_list_append(current_head, pptr);
1594 fp = xfopen(git_path_merge_head(the_repository), "r");
1595 while (strbuf_getline_lf(&m, fp) != EOF) {
1596 struct commit *parent;
1598 parent = get_merge_parent(m.buf);
1600 die(_("Corrupt MERGE_HEAD file (%s)"), m.buf);
1601 pptr = commit_list_append(parent, pptr);
1605 if (!stat(git_path_merge_mode(the_repository), &statbuf)) {
1606 if (strbuf_read_file(&sb, git_path_merge_mode(the_repository), 0) < 0)
1607 die_errno(_("could not read MERGE_MODE"));
1608 if (!strcmp(sb.buf, "no-ff"))
1609 allow_fast_forward = 0;
1611 if (allow_fast_forward)
1612 reduce_heads_replace(&parents);
1615 reflog_msg = is_from_cherry_pick(whence)
1616 ? "commit (cherry-pick)"
1617 : is_from_rebase(whence)
1620 commit_list_insert(current_head, &parents);
1623 /* Finally, get the commit message */
1625 if (strbuf_read_file(&sb, git_path_commit_editmsg(), 0) < 0) {
1626 int saved_errno = errno;
1627 rollback_index_files();
1628 die(_("could not read commit message: %s"), strerror(saved_errno));
1631 cleanup_message(&sb, cleanup_mode, verbose);
1633 if (message_is_empty(&sb, cleanup_mode) && !allow_empty_message) {
1634 rollback_index_files();
1635 fprintf(stderr, _("Aborting commit due to empty commit message.\n"));
1638 if (template_untouched(&sb, template_file, cleanup_mode) && !allow_empty_message) {
1639 rollback_index_files();
1640 fprintf(stderr, _("Aborting commit; you did not edit the message.\n"));
1645 const char *exclude_gpgsig[2] = { "gpgsig", NULL };
1646 extra = read_commit_extra_headers(current_head, exclude_gpgsig);
1648 struct commit_extra_header **tail = &extra;
1649 append_merge_tag_headers(parents, &tail);
1652 if (commit_tree_extended(sb.buf, sb.len, &active_cache_tree->oid,
1653 parents, &oid, author_ident.buf, sign_commit,
1655 rollback_index_files();
1656 die(_("failed to write commit object"));
1658 strbuf_release(&author_ident);
1659 free_commit_extra_headers(extra);
1661 if (update_head_with_reflog(current_head, &oid, reflog_msg, &sb,
1663 rollback_index_files();
1667 sequencer_post_commit_cleanup(the_repository, 0);
1668 unlink(git_path_merge_head(the_repository));
1669 unlink(git_path_merge_msg(the_repository));
1670 unlink(git_path_merge_mode(the_repository));
1671 unlink(git_path_squash_msg(the_repository));
1673 if (commit_index_files())
1674 die(_("repository has been updated, but unable to write\n"
1675 "new_index file. Check that disk is not full and quota is\n"
1676 "not exceeded, and then \"git restore --staged :/\" to recover."));
1678 if (git_env_bool(GIT_TEST_COMMIT_GRAPH, 0) &&
1679 write_commit_graph_reachable(get_object_directory(), 0, NULL))
1682 repo_rerere(the_repository, 0);
1683 run_command_v_opt(argv_gc_auto, RUN_GIT_CMD);
1684 run_commit_hook(use_editor, get_index_file(), "post-commit", NULL);
1685 if (amend && !no_post_rewrite) {
1686 commit_post_rewrite(the_repository, current_head, &oid);
1689 unsigned int flags = 0;
1692 flags |= SUMMARY_INITIAL_COMMIT;
1693 if (author_date_is_interesting())
1694 flags |= SUMMARY_SHOW_AUTHOR_DATE;
1695 print_commit_summary(the_repository, prefix,