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, pathspec_file_nul;
114 static char *untracked_files_arg, *force_date, *ignore_submodule_arg, *ignored_arg;
115 static char *sign_commit, *pathspec_from_file;
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 /* TODO: audit for interaction with sparse-index. */
255 ensure_full_index(&the_index);
256 for (i = 0; i < active_nr; i++) {
257 const struct cache_entry *ce = active_cache[i];
258 struct string_list_item *item;
260 if (ce->ce_flags & CE_UPDATE)
262 if (!ce_path_match(&the_index, ce, pattern, m))
264 item = string_list_insert(list, ce->name);
265 if (ce_skip_worktree(ce))
266 item->util = item; /* better a valid pointer than a fake one */
269 ret = report_path_error(m, pattern);
274 static void add_remove_files(struct string_list *list)
277 for (i = 0; i < list->nr; i++) {
279 struct string_list_item *p = &(list->items[i]);
281 /* p->util is skip-worktree */
285 if (!lstat(p->string, &st)) {
286 if (add_to_cache(p->string, &st, 0))
287 die(_("updating files failed"));
289 remove_file_from_cache(p->string);
293 static void create_base_index(const struct commit *current_head)
296 struct unpack_trees_options opts;
304 memset(&opts, 0, sizeof(opts));
308 opts.src_index = &the_index;
309 opts.dst_index = &the_index;
311 opts.fn = oneway_merge;
312 tree = parse_tree_indirect(¤t_head->object.oid);
314 die(_("failed to unpack HEAD tree object"));
316 init_tree_desc(&t, tree->buffer, tree->size);
317 if (unpack_trees(1, &t, &opts))
318 exit(128); /* We've already reported the error, finish dying */
321 static void refresh_cache_or_die(int refresh_flags)
324 * refresh_flags contains REFRESH_QUIET, so the only errors
325 * are for unmerged entries.
327 if (refresh_cache(refresh_flags | REFRESH_IN_PORCELAIN))
328 die_resolve_conflict("commit");
331 static const char *prepare_index(const char **argv, const char *prefix,
332 const struct commit *current_head, int is_status)
334 struct string_list partial = STRING_LIST_INIT_DUP;
335 struct pathspec pathspec;
336 int refresh_flags = REFRESH_QUIET;
340 refresh_flags |= REFRESH_UNMERGED;
341 parse_pathspec(&pathspec, 0,
342 PATHSPEC_PREFER_FULL,
345 if (pathspec_from_file) {
347 die(_("--pathspec-from-file is incompatible with --interactive/--patch"));
350 die(_("--pathspec-from-file with -a does not make sense"));
353 die(_("--pathspec-from-file is incompatible with pathspec arguments"));
355 parse_pathspec_file(&pathspec, 0,
356 PATHSPEC_PREFER_FULL,
357 prefix, pathspec_from_file, pathspec_file_nul);
358 } else if (pathspec_file_nul) {
359 die(_("--pathspec-file-nul requires --pathspec-from-file"));
362 if (!pathspec.nr && (also || (only && !amend && !allow_empty)))
363 die(_("No paths with --include/--only does not make sense."));
365 if (read_cache_preload(&pathspec) < 0)
366 die(_("index file corrupt"));
369 char *old_index_env = NULL, *old_repo_index_file;
370 hold_locked_index(&index_lock, LOCK_DIE_ON_ERROR);
372 refresh_cache_or_die(refresh_flags);
374 if (write_locked_index(&the_index, &index_lock, 0))
375 die(_("unable to create temporary index"));
377 old_repo_index_file = the_repository->index_file;
378 the_repository->index_file =
379 (char *)get_lock_file_path(&index_lock);
380 old_index_env = xstrdup_or_null(getenv(INDEX_ENVIRONMENT));
381 setenv(INDEX_ENVIRONMENT, the_repository->index_file, 1);
383 if (interactive_add(argv, prefix, patch_interactive) != 0)
384 die(_("interactive add failed"));
386 the_repository->index_file = old_repo_index_file;
387 if (old_index_env && *old_index_env)
388 setenv(INDEX_ENVIRONMENT, old_index_env, 1);
390 unsetenv(INDEX_ENVIRONMENT);
391 FREE_AND_NULL(old_index_env);
394 read_cache_from(get_lock_file_path(&index_lock));
395 if (update_main_cache_tree(WRITE_TREE_SILENT) == 0) {
396 if (reopen_lock_file(&index_lock) < 0)
397 die(_("unable to write index file"));
398 if (write_locked_index(&the_index, &index_lock, 0))
399 die(_("unable to update temporary index"));
401 warning(_("Failed to update main cache tree"));
403 commit_style = COMMIT_NORMAL;
404 ret = get_lock_file_path(&index_lock);
409 * Non partial, non as-is commit.
411 * (1) get the real index;
412 * (2) update the_index as necessary;
413 * (3) write the_index out to the real index (still locked);
414 * (4) return the name of the locked index file.
416 * The caller should run hooks on the locked real index, and
417 * (A) if all goes well, commit the real index;
418 * (B) on failure, rollback the real index.
420 if (all || (also && pathspec.nr)) {
421 hold_locked_index(&index_lock, LOCK_DIE_ON_ERROR);
422 add_files_to_cache(also ? prefix : NULL, &pathspec, 0);
423 refresh_cache_or_die(refresh_flags);
424 update_main_cache_tree(WRITE_TREE_SILENT);
425 if (write_locked_index(&the_index, &index_lock, 0))
426 die(_("unable to write new_index file"));
427 commit_style = COMMIT_NORMAL;
428 ret = get_lock_file_path(&index_lock);
435 * (1) return the name of the real index file.
437 * The caller should run hooks on the real index,
438 * and create commit from the_index.
439 * We still need to refresh the index here.
441 if (!only && !pathspec.nr) {
442 hold_locked_index(&index_lock, LOCK_DIE_ON_ERROR);
443 refresh_cache_or_die(refresh_flags);
444 if (active_cache_changed
445 || !cache_tree_fully_valid(active_cache_tree))
446 update_main_cache_tree(WRITE_TREE_SILENT);
447 if (write_locked_index(&the_index, &index_lock,
448 COMMIT_LOCK | SKIP_IF_UNCHANGED))
449 die(_("unable to write new_index file"));
450 commit_style = COMMIT_AS_IS;
451 ret = get_index_file();
458 * (0) find the set of affected paths;
459 * (1) get lock on the real index file;
460 * (2) update the_index with the given paths;
461 * (3) write the_index out to the real index (still locked);
462 * (4) get lock on the false index file;
463 * (5) reset the_index from HEAD;
464 * (6) update the_index the same way as (2);
465 * (7) write the_index out to the false index file;
466 * (8) return the name of the false index file (still locked);
468 * The caller should run hooks on the locked false index, and
469 * create commit from it. Then
470 * (A) if all goes well, commit the real index;
471 * (B) on failure, rollback the real index;
472 * In either case, rollback the false index.
474 commit_style = COMMIT_PARTIAL;
476 if (whence != FROM_COMMIT) {
477 if (whence == FROM_MERGE)
478 die(_("cannot do a partial commit during a merge."));
479 else if (is_from_cherry_pick(whence))
480 die(_("cannot do a partial commit during a cherry-pick."));
481 else if (is_from_rebase(whence))
482 die(_("cannot do a partial commit during a rebase."));
485 if (list_paths(&partial, !current_head ? NULL : "HEAD", &pathspec))
489 if (read_cache() < 0)
490 die(_("cannot read the index"));
492 hold_locked_index(&index_lock, LOCK_DIE_ON_ERROR);
493 add_remove_files(&partial);
494 refresh_cache(REFRESH_QUIET);
495 update_main_cache_tree(WRITE_TREE_SILENT);
496 if (write_locked_index(&the_index, &index_lock, 0))
497 die(_("unable to write new_index file"));
499 hold_lock_file_for_update(&false_lock,
500 git_path("next-index-%"PRIuMAX,
501 (uintmax_t) getpid()),
504 create_base_index(current_head);
505 add_remove_files(&partial);
506 refresh_cache(REFRESH_QUIET);
508 if (write_locked_index(&the_index, &false_lock, 0))
509 die(_("unable to write temporary index file"));
512 ret = get_lock_file_path(&false_lock);
513 read_cache_from(ret);
515 string_list_clear(&partial, 0);
516 clear_pathspec(&pathspec);
520 static int run_status(FILE *fp, const char *index_file, const char *prefix, int nowarn,
523 struct object_id oid;
525 if (s->relative_paths)
530 s->reference = "HEAD^1";
532 s->verbose = verbose;
533 s->index_file = index_file;
536 s->is_initial = get_oid(s->reference, &oid) ? 1 : 0;
538 oidcpy(&s->oid_commit, &oid);
539 s->status_format = status_format;
540 s->ignore_submodule_arg = ignore_submodule_arg;
542 wt_status_collect(s);
544 wt_status_collect_free_buffers(s);
546 return s->committable;
549 static int is_a_merge(const struct commit *current_head)
551 return !!(current_head->parents && current_head->parents->next);
554 static void assert_split_ident(struct ident_split *id, const struct strbuf *buf)
556 if (split_ident_line(id, buf->buf, buf->len) || !id->date_begin)
557 BUG("unable to parse our own ident: %s", buf->buf);
560 static void export_one(const char *var, const char *s, const char *e, int hack)
562 struct strbuf buf = STRBUF_INIT;
564 strbuf_addch(&buf, hack);
565 strbuf_add(&buf, s, e - s);
566 setenv(var, buf.buf, 1);
567 strbuf_release(&buf);
570 static int parse_force_date(const char *in, struct strbuf *out)
572 strbuf_addch(out, '@');
574 if (parse_date(in, out) < 0) {
576 unsigned long t = approxidate_careful(in, &errors);
579 strbuf_addf(out, "%lu", t);
585 static void set_ident_var(char **buf, char *val)
591 static void determine_author_info(struct strbuf *author_ident)
593 char *name, *email, *date;
594 struct ident_split author;
596 name = xstrdup_or_null(getenv("GIT_AUTHOR_NAME"));
597 email = xstrdup_or_null(getenv("GIT_AUTHOR_EMAIL"));
598 date = xstrdup_or_null(getenv("GIT_AUTHOR_DATE"));
600 if (author_message) {
601 struct ident_split ident;
605 a = find_commit_header(author_message_buffer, "author", &len);
607 die(_("commit '%s' lacks author header"), author_message);
608 if (split_ident_line(&ident, a, len) < 0)
609 die(_("commit '%s' has malformed author line"), author_message);
611 set_ident_var(&name, xmemdupz(ident.name_begin, ident.name_end - ident.name_begin));
612 set_ident_var(&email, xmemdupz(ident.mail_begin, ident.mail_end - ident.mail_begin));
614 if (ident.date_begin) {
615 struct strbuf date_buf = STRBUF_INIT;
616 strbuf_addch(&date_buf, '@');
617 strbuf_add(&date_buf, ident.date_begin, ident.date_end - ident.date_begin);
618 strbuf_addch(&date_buf, ' ');
619 strbuf_add(&date_buf, ident.tz_begin, ident.tz_end - ident.tz_begin);
620 set_ident_var(&date, strbuf_detach(&date_buf, NULL));
625 struct ident_split ident;
627 if (split_ident_line(&ident, force_author, strlen(force_author)) < 0)
628 die(_("malformed --author parameter"));
629 set_ident_var(&name, xmemdupz(ident.name_begin, ident.name_end - ident.name_begin));
630 set_ident_var(&email, xmemdupz(ident.mail_begin, ident.mail_end - ident.mail_begin));
634 struct strbuf date_buf = STRBUF_INIT;
635 if (parse_force_date(force_date, &date_buf))
636 die(_("invalid date format: %s"), force_date);
637 set_ident_var(&date, strbuf_detach(&date_buf, NULL));
640 strbuf_addstr(author_ident, fmt_ident(name, email, WANT_AUTHOR_IDENT, date,
642 assert_split_ident(&author, author_ident);
643 export_one("GIT_AUTHOR_NAME", author.name_begin, author.name_end, 0);
644 export_one("GIT_AUTHOR_EMAIL", author.mail_begin, author.mail_end, 0);
645 export_one("GIT_AUTHOR_DATE", author.date_begin, author.tz_end, '@');
651 static int author_date_is_interesting(void)
653 return author_message || force_date;
656 static void adjust_comment_line_char(const struct strbuf *sb)
658 char candidates[] = "#;@!$%^&|:";
662 comment_line_char = candidates[0];
663 if (!memchr(sb->buf, comment_line_char, sb->len))
667 candidate = strchr(candidates, *p);
670 for (p = sb->buf; *p; p++) {
671 if ((p[0] == '\n' || p[0] == '\r') && p[1]) {
672 candidate = strchr(candidates, p[1]);
678 for (p = candidates; *p == ' '; p++)
681 die(_("unable to select a comment character that is not used\n"
682 "in the current commit message"));
683 comment_line_char = *p;
686 static int prepare_to_commit(const char *index_file, const char *prefix,
687 struct commit *current_head,
689 struct strbuf *author_ident)
692 struct strbuf committer_ident = STRBUF_INIT;
694 struct strbuf sb = STRBUF_INIT;
695 const char *hook_arg1 = NULL;
696 const char *hook_arg2 = NULL;
697 int clean_message_contents = (cleanup_mode != COMMIT_MSG_CLEANUP_NONE);
698 int old_display_comment_prefix;
699 int merge_contains_scissors = 0;
701 /* This checks and barfs if author is badly specified */
702 determine_author_info(author_ident);
704 if (!no_verify && run_commit_hook(use_editor, index_file, "pre-commit", NULL))
707 if (squash_message) {
709 * Insert the proper subject line before other commit
710 * message options add their content.
712 if (use_message && !strcmp(use_message, squash_message))
713 strbuf_addstr(&sb, "squash! ");
715 struct pretty_print_context ctx = {0};
717 c = lookup_commit_reference_by_name(squash_message);
719 die(_("could not lookup commit %s"), squash_message);
720 ctx.output_encoding = get_commit_output_encoding();
721 format_commit_message(c, "squash! %s\n\n", &sb,
726 if (have_option_m && !fixup_message) {
727 strbuf_addbuf(&sb, &message);
728 hook_arg1 = "message";
729 } else if (logfile && !strcmp(logfile, "-")) {
731 fprintf(stderr, _("(reading log message from standard input)\n"));
732 if (strbuf_read(&sb, 0, 0) < 0)
733 die_errno(_("could not read log from standard input"));
734 hook_arg1 = "message";
735 } else if (logfile) {
736 if (strbuf_read_file(&sb, logfile, 0) < 0)
737 die_errno(_("could not read log file '%s'"),
739 hook_arg1 = "message";
740 } else if (use_message) {
742 buffer = strstr(use_message_buffer, "\n\n");
744 strbuf_addstr(&sb, skip_blank_lines(buffer + 2));
745 hook_arg1 = "commit";
746 hook_arg2 = use_message;
747 } else if (fixup_message) {
748 struct pretty_print_context ctx = {0};
749 struct commit *commit;
750 commit = lookup_commit_reference_by_name(fixup_message);
752 die(_("could not lookup commit %s"), fixup_message);
753 ctx.output_encoding = get_commit_output_encoding();
754 format_commit_message(commit, "fixup! %s\n\n",
757 strbuf_addbuf(&sb, &message);
758 hook_arg1 = "message";
759 } else if (!stat(git_path_merge_msg(the_repository), &statbuf)) {
760 size_t merge_msg_start;
763 * prepend SQUASH_MSG here if it exists and a
764 * "merge --squash" was originally performed
766 if (!stat(git_path_squash_msg(the_repository), &statbuf)) {
767 if (strbuf_read_file(&sb, git_path_squash_msg(the_repository), 0) < 0)
768 die_errno(_("could not read SQUASH_MSG"));
769 hook_arg1 = "squash";
773 merge_msg_start = sb.len;
774 if (strbuf_read_file(&sb, git_path_merge_msg(the_repository), 0) < 0)
775 die_errno(_("could not read MERGE_MSG"));
777 if (cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS &&
778 wt_status_locate_end(sb.buf + merge_msg_start,
779 sb.len - merge_msg_start) <
780 sb.len - merge_msg_start)
781 merge_contains_scissors = 1;
782 } else if (!stat(git_path_squash_msg(the_repository), &statbuf)) {
783 if (strbuf_read_file(&sb, git_path_squash_msg(the_repository), 0) < 0)
784 die_errno(_("could not read SQUASH_MSG"));
785 hook_arg1 = "squash";
786 } else if (template_file) {
787 if (strbuf_read_file(&sb, template_file, 0) < 0)
788 die_errno(_("could not read '%s'"), template_file);
789 hook_arg1 = "template";
790 clean_message_contents = 0;
794 * The remaining cases don't modify the template message, but
795 * just set the argument(s) to the prepare-commit-msg hook.
797 else if (whence == FROM_MERGE)
799 else if (is_from_cherry_pick(whence) || whence == FROM_REBASE_PICK) {
800 hook_arg1 = "commit";
801 hook_arg2 = "CHERRY_PICK_HEAD";
804 if (squash_message) {
806 * If squash_commit was used for the commit subject,
807 * then we're possibly hijacking other commit log options.
808 * Reset the hook args to tell the real story.
810 hook_arg1 = "message";
814 s->fp = fopen_for_writing(git_path_commit_editmsg());
816 die_errno(_("could not open '%s'"), git_path_commit_editmsg());
818 /* Ignore status.displayCommentPrefix: we do need comments in COMMIT_EDITMSG. */
819 old_display_comment_prefix = s->display_comment_prefix;
820 s->display_comment_prefix = 1;
823 * Most hints are counter-productive when the commit has
828 if (clean_message_contents)
829 strbuf_stripspace(&sb, 0);
832 append_signoff(&sb, ignore_non_trailer(sb.buf, sb.len), 0);
834 if (fwrite(sb.buf, 1, sb.len, s->fp) < sb.len)
835 die_errno(_("could not write commit template"));
837 if (auto_comment_line_char)
838 adjust_comment_line_char(&sb);
841 /* This checks if committer ident is explicitly given */
842 strbuf_addstr(&committer_ident, git_committer_info(IDENT_STRICT));
843 if (use_editor && include_status) {
845 int saved_color_setting;
846 struct ident_split ci, ai;
848 if (whence != FROM_COMMIT) {
849 if (cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS &&
850 !merge_contains_scissors)
851 wt_status_add_cut_line(s->fp);
854 whence == FROM_MERGE ?
856 "It looks like you may be committing a merge.\n"
857 "If this is not correct, please run\n"
858 " git update-ref -d MERGE_HEAD\n"
859 "and try again.\n") :
861 "It looks like you may be committing a cherry-pick.\n"
862 "If this is not correct, please run\n"
863 " git update-ref -d CHERRY_PICK_HEAD\n"
864 "and try again.\n"));
867 fprintf(s->fp, "\n");
868 if (cleanup_mode == COMMIT_MSG_CLEANUP_ALL)
869 status_printf(s, GIT_COLOR_NORMAL,
870 _("Please enter the commit message for your changes."
871 " Lines starting\nwith '%c' will be ignored, and an empty"
872 " message aborts the commit.\n"), comment_line_char);
873 else if (cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS) {
874 if (whence == FROM_COMMIT && !merge_contains_scissors)
875 wt_status_add_cut_line(s->fp);
876 } else /* COMMIT_MSG_CLEANUP_SPACE, that is. */
877 status_printf(s, GIT_COLOR_NORMAL,
878 _("Please enter the commit message for your changes."
880 "with '%c' will be kept; you may remove them"
881 " yourself if you want to.\n"
882 "An empty message aborts the commit.\n"), comment_line_char);
885 * These should never fail because they come from our own
886 * fmt_ident. They may fail the sane_ident test, but we know
887 * that the name and mail pointers will at least be valid,
888 * which is enough for our tests and printing here.
890 assert_split_ident(&ai, author_ident);
891 assert_split_ident(&ci, &committer_ident);
893 if (ident_cmp(&ai, &ci))
894 status_printf_ln(s, GIT_COLOR_NORMAL,
896 "Author: %.*s <%.*s>"),
897 ident_shown++ ? "" : "\n",
898 (int)(ai.name_end - ai.name_begin), ai.name_begin,
899 (int)(ai.mail_end - ai.mail_begin), ai.mail_begin);
901 if (author_date_is_interesting())
902 status_printf_ln(s, GIT_COLOR_NORMAL,
905 ident_shown++ ? "" : "\n",
906 show_ident_date(&ai, DATE_MODE(NORMAL)));
908 if (!committer_ident_sufficiently_given())
909 status_printf_ln(s, GIT_COLOR_NORMAL,
911 "Committer: %.*s <%.*s>"),
912 ident_shown++ ? "" : "\n",
913 (int)(ci.name_end - ci.name_begin), ci.name_begin,
914 (int)(ci.mail_end - ci.mail_begin), ci.mail_begin);
916 status_printf_ln(s, GIT_COLOR_NORMAL, "%s", ""); /* Add new line for clarity */
918 saved_color_setting = s->use_color;
920 committable = run_status(s->fp, index_file, prefix, 1, s);
921 s->use_color = saved_color_setting;
922 string_list_clear(&s->change, 1);
924 struct object_id oid;
925 const char *parent = "HEAD";
927 if (!active_nr && read_cache() < 0)
928 die(_("Cannot read index"));
933 if (get_oid(parent, &oid)) {
936 /* TODO: audit for interaction with sparse-index. */
937 ensure_full_index(&the_index);
938 for (i = 0; i < active_nr; i++)
939 if (ce_intent_to_add(active_cache[i]))
941 committable = active_nr - ita_nr > 0;
944 * Unless the user did explicitly request a submodule
945 * ignore mode by passing a command line option we do
946 * not ignore any changed submodule SHA-1s when
947 * comparing index and parent, no matter what is
948 * configured. Otherwise we won't commit any
949 * submodules which were manually staged, which would
950 * be really confusing.
952 struct diff_flags flags = DIFF_FLAGS_INIT;
953 flags.override_submodule_config = 1;
954 if (ignore_submodule_arg &&
955 !strcmp(ignore_submodule_arg, "all"))
956 flags.ignore_submodules = 1;
957 committable = index_differs_from(the_repository,
961 strbuf_release(&committer_ident);
966 * Reject an attempt to record a non-merge empty commit without
967 * explicit --allow-empty. In the cherry-pick case, it may be
968 * empty due to conflict resolution, which the user should okay.
970 if (!committable && whence != FROM_MERGE && !allow_empty &&
971 !(amend && is_a_merge(current_head))) {
972 s->hints = advice_status_hints;
973 s->display_comment_prefix = old_display_comment_prefix;
974 run_status(stdout, index_file, prefix, 0, s);
976 fputs(_(empty_amend_advice), stderr);
977 else if (is_from_cherry_pick(whence) ||
978 whence == FROM_REBASE_PICK) {
979 fputs(_(empty_cherry_pick_advice), stderr);
980 if (whence == FROM_CHERRY_PICK_SINGLE)
981 fputs(_(empty_cherry_pick_advice_single), stderr);
982 else if (whence == FROM_CHERRY_PICK_MULTI)
983 fputs(_(empty_cherry_pick_advice_multi), stderr);
985 fputs(_(empty_rebase_pick_advice), stderr);
990 if (!no_verify && find_hook("pre-commit")) {
992 * Re-read the index as pre-commit hook could have updated it,
993 * and write it out as a tree. We must do this before we invoke
994 * the editor and after we invoke run_status above.
998 read_cache_from(index_file);
1000 if (update_main_cache_tree(0)) {
1001 error(_("Error building trees"));
1005 if (run_commit_hook(use_editor, index_file, "prepare-commit-msg",
1006 git_path_commit_editmsg(), hook_arg1, hook_arg2, NULL))
1010 struct strvec env = STRVEC_INIT;
1012 strvec_pushf(&env, "GIT_INDEX_FILE=%s", index_file);
1013 if (launch_editor(git_path_commit_editmsg(), NULL, env.v)) {
1015 _("Please supply the message using either -m or -F option.\n"));
1022 run_commit_hook(use_editor, index_file, "commit-msg", git_path_commit_editmsg(), NULL)) {
1029 static const char *find_author_by_nickname(const char *name)
1031 struct rev_info revs;
1032 struct commit *commit;
1033 struct strbuf buf = STRBUF_INIT;
1034 struct string_list mailmap = STRING_LIST_INIT_NODUP;
1038 repo_init_revisions(the_repository, &revs, NULL);
1039 strbuf_addf(&buf, "--author=%s", name);
1044 setup_revisions(ac, av, &revs, NULL);
1045 revs.mailmap = &mailmap;
1046 read_mailmap(revs.mailmap);
1048 if (prepare_revision_walk(&revs))
1049 die(_("revision walk setup failed"));
1050 commit = get_revision(&revs);
1052 struct pretty_print_context ctx = {0};
1053 ctx.date_mode.type = DATE_NORMAL;
1054 strbuf_release(&buf);
1055 format_commit_message(commit, "%aN <%aE>", &buf, &ctx);
1056 clear_mailmap(&mailmap);
1057 return strbuf_detach(&buf, NULL);
1059 die(_("--author '%s' is not 'Name <email>' and matches no existing author"), name);
1062 static void handle_ignored_arg(struct wt_status *s)
1065 ; /* default already initialized */
1066 else if (!strcmp(ignored_arg, "traditional"))
1067 s->show_ignored_mode = SHOW_TRADITIONAL_IGNORED;
1068 else if (!strcmp(ignored_arg, "no"))
1069 s->show_ignored_mode = SHOW_NO_IGNORED;
1070 else if (!strcmp(ignored_arg, "matching"))
1071 s->show_ignored_mode = SHOW_MATCHING_IGNORED;
1073 die(_("Invalid ignored mode '%s'"), ignored_arg);
1076 static void handle_untracked_files_arg(struct wt_status *s)
1078 if (!untracked_files_arg)
1079 ; /* default already initialized */
1080 else if (!strcmp(untracked_files_arg, "no"))
1081 s->show_untracked_files = SHOW_NO_UNTRACKED_FILES;
1082 else if (!strcmp(untracked_files_arg, "normal"))
1083 s->show_untracked_files = SHOW_NORMAL_UNTRACKED_FILES;
1084 else if (!strcmp(untracked_files_arg, "all"))
1085 s->show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
1087 * Please update $__git_untracked_file_modes in
1088 * git-completion.bash when you add new options
1091 die(_("Invalid untracked files mode '%s'"), untracked_files_arg);
1094 static const char *read_commit_message(const char *name)
1096 const char *out_enc;
1097 struct commit *commit;
1099 commit = lookup_commit_reference_by_name(name);
1101 die(_("could not lookup commit %s"), name);
1102 out_enc = get_commit_output_encoding();
1103 return logmsg_reencode(commit, NULL, out_enc);
1107 * Enumerate what needs to be propagated when --porcelain
1108 * is not in effect here.
1110 static struct status_deferred_config {
1111 enum wt_status_format status_format;
1113 enum ahead_behind_flags ahead_behind;
1114 } status_deferred_config = {
1115 STATUS_FORMAT_UNSPECIFIED,
1116 -1, /* unspecified */
1117 AHEAD_BEHIND_UNSPECIFIED,
1120 static void finalize_deferred_config(struct wt_status *s)
1122 int use_deferred_config = (status_format != STATUS_FORMAT_PORCELAIN &&
1123 status_format != STATUS_FORMAT_PORCELAIN_V2 &&
1124 !s->null_termination);
1126 if (s->null_termination) {
1127 if (status_format == STATUS_FORMAT_NONE ||
1128 status_format == STATUS_FORMAT_UNSPECIFIED)
1129 status_format = STATUS_FORMAT_PORCELAIN;
1130 else if (status_format == STATUS_FORMAT_LONG)
1131 die(_("--long and -z are incompatible"));
1134 if (use_deferred_config && status_format == STATUS_FORMAT_UNSPECIFIED)
1135 status_format = status_deferred_config.status_format;
1136 if (status_format == STATUS_FORMAT_UNSPECIFIED)
1137 status_format = STATUS_FORMAT_NONE;
1139 if (use_deferred_config && s->show_branch < 0)
1140 s->show_branch = status_deferred_config.show_branch;
1141 if (s->show_branch < 0)
1145 * If the user did not give a "--[no]-ahead-behind" command
1146 * line argument *AND* we will print in a human-readable format
1147 * (short, long etc.) then we inherit from the status.aheadbehind
1148 * config setting. In all other cases (and porcelain V[12] formats
1149 * in particular), we inherit _FULL for backwards compatibility.
1151 if (use_deferred_config &&
1152 s->ahead_behind_flags == AHEAD_BEHIND_UNSPECIFIED)
1153 s->ahead_behind_flags = status_deferred_config.ahead_behind;
1155 if (s->ahead_behind_flags == AHEAD_BEHIND_UNSPECIFIED)
1156 s->ahead_behind_flags = AHEAD_BEHIND_FULL;
1159 static int parse_and_validate_options(int argc, const char *argv[],
1160 const struct option *options,
1161 const char * const usage[],
1163 struct commit *current_head,
1164 struct wt_status *s)
1168 argc = parse_options(argc, argv, prefix, options, usage, 0);
1169 finalize_deferred_config(s);
1171 if (force_author && !strchr(force_author, '>'))
1172 force_author = find_author_by_nickname(force_author);
1174 if (force_author && renew_authorship)
1175 die(_("Using both --reset-author and --author does not make sense"));
1177 if (logfile || have_option_m || use_message || fixup_message)
1180 use_editor = edit_flag;
1182 /* Sanity check options */
1183 if (amend && !current_head)
1184 die(_("You have nothing to amend."));
1185 if (amend && whence != FROM_COMMIT) {
1186 if (whence == FROM_MERGE)
1187 die(_("You are in the middle of a merge -- cannot amend."));
1188 else if (is_from_cherry_pick(whence))
1189 die(_("You are in the middle of a cherry-pick -- cannot amend."));
1190 else if (whence == FROM_REBASE_PICK)
1191 die(_("You are in the middle of a rebase -- cannot amend."));
1193 if (fixup_message && squash_message)
1194 die(_("Options --squash and --fixup cannot be used together"));
1204 die(_("Only one of -c/-C/-F/--fixup can be used."));
1205 if (have_option_m && (edit_message || use_message || logfile))
1206 die((_("Option -m cannot be combined with -c/-C/-F.")));
1207 if (f || have_option_m)
1208 template_file = NULL;
1210 use_message = edit_message;
1211 if (amend && !use_message && !fixup_message)
1212 use_message = "HEAD";
1213 if (!use_message && !is_from_cherry_pick(whence) &&
1214 !is_from_rebase(whence) && renew_authorship)
1215 die(_("--reset-author can be used only with -C, -c or --amend."));
1217 use_message_buffer = read_commit_message(use_message);
1218 if (!renew_authorship) {
1219 author_message = use_message;
1220 author_message_buffer = use_message_buffer;
1223 if ((is_from_cherry_pick(whence) || whence == FROM_REBASE_PICK) &&
1224 !renew_authorship) {
1225 author_message = "CHERRY_PICK_HEAD";
1226 author_message_buffer = read_commit_message(author_message);
1229 if (patch_interactive)
1232 if (also + only + all + interactive > 1)
1233 die(_("Only one of --include/--only/--all/--interactive/--patch can be used."));
1234 cleanup_mode = get_cleanup_mode(cleanup_arg, use_editor);
1236 handle_untracked_files_arg(s);
1238 if (all && argc > 0)
1239 die(_("paths '%s ...' with -a does not make sense"),
1242 if (status_format != STATUS_FORMAT_NONE)
1248 static int dry_run_commit(const char **argv, const char *prefix,
1249 const struct commit *current_head, struct wt_status *s)
1252 const char *index_file;
1254 index_file = prepare_index(argv, prefix, current_head, 1);
1255 committable = run_status(stdout, index_file, prefix, 0, s);
1256 rollback_index_files();
1258 return committable ? 0 : 1;
1261 define_list_config_array_extra(color_status_slots, {"added"});
1263 static int parse_status_slot(const char *slot)
1265 if (!strcasecmp(slot, "added"))
1266 return WT_STATUS_UPDATED;
1268 return LOOKUP_CONFIG(color_status_slots, slot);
1271 static int git_status_config(const char *k, const char *v, void *cb)
1273 struct wt_status *s = cb;
1274 const char *slot_name;
1276 if (starts_with(k, "column."))
1277 return git_column_config(k, v, "status", &s->colopts);
1278 if (!strcmp(k, "status.submodulesummary")) {
1280 s->submodule_summary = git_config_bool_or_int(k, v, &is_bool);
1281 if (is_bool && s->submodule_summary)
1282 s->submodule_summary = -1;
1285 if (!strcmp(k, "status.short")) {
1286 if (git_config_bool(k, v))
1287 status_deferred_config.status_format = STATUS_FORMAT_SHORT;
1289 status_deferred_config.status_format = STATUS_FORMAT_NONE;
1292 if (!strcmp(k, "status.branch")) {
1293 status_deferred_config.show_branch = git_config_bool(k, v);
1296 if (!strcmp(k, "status.aheadbehind")) {
1297 status_deferred_config.ahead_behind = git_config_bool(k, v);
1300 if (!strcmp(k, "status.showstash")) {
1301 s->show_stash = git_config_bool(k, v);
1304 if (!strcmp(k, "status.color") || !strcmp(k, "color.status")) {
1305 s->use_color = git_config_colorbool(k, v);
1308 if (!strcmp(k, "status.displaycommentprefix")) {
1309 s->display_comment_prefix = git_config_bool(k, v);
1312 if (skip_prefix(k, "status.color.", &slot_name) ||
1313 skip_prefix(k, "color.status.", &slot_name)) {
1314 int slot = parse_status_slot(slot_name);
1318 return config_error_nonbool(k);
1319 return color_parse(v, s->color_palette[slot]);
1321 if (!strcmp(k, "status.relativepaths")) {
1322 s->relative_paths = git_config_bool(k, v);
1325 if (!strcmp(k, "status.showuntrackedfiles")) {
1327 return config_error_nonbool(k);
1328 else if (!strcmp(v, "no"))
1329 s->show_untracked_files = SHOW_NO_UNTRACKED_FILES;
1330 else if (!strcmp(v, "normal"))
1331 s->show_untracked_files = SHOW_NORMAL_UNTRACKED_FILES;
1332 else if (!strcmp(v, "all"))
1333 s->show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
1335 return error(_("Invalid untracked files mode '%s'"), v);
1338 if (!strcmp(k, "diff.renamelimit")) {
1339 if (s->rename_limit == -1)
1340 s->rename_limit = git_config_int(k, v);
1343 if (!strcmp(k, "status.renamelimit")) {
1344 s->rename_limit = git_config_int(k, v);
1347 if (!strcmp(k, "diff.renames")) {
1348 if (s->detect_rename == -1)
1349 s->detect_rename = git_config_rename(k, v);
1352 if (!strcmp(k, "status.renames")) {
1353 s->detect_rename = git_config_rename(k, v);
1356 return git_diff_ui_config(k, v, NULL);
1359 int cmd_status(int argc, const char **argv, const char *prefix)
1361 static int no_renames = -1;
1362 static const char *rename_score_arg = (const char *)-1;
1363 static struct wt_status s;
1364 unsigned int progress_flag = 0;
1366 struct object_id oid;
1367 static struct option builtin_status_options[] = {
1368 OPT__VERBOSE(&verbose, N_("be verbose")),
1369 OPT_SET_INT('s', "short", &status_format,
1370 N_("show status concisely"), STATUS_FORMAT_SHORT),
1371 OPT_BOOL('b', "branch", &s.show_branch,
1372 N_("show branch information")),
1373 OPT_BOOL(0, "show-stash", &s.show_stash,
1374 N_("show stash information")),
1375 OPT_BOOL(0, "ahead-behind", &s.ahead_behind_flags,
1376 N_("compute full ahead/behind values")),
1377 OPT_CALLBACK_F(0, "porcelain", &status_format,
1378 N_("version"), N_("machine-readable output"),
1379 PARSE_OPT_OPTARG, opt_parse_porcelain),
1380 OPT_SET_INT(0, "long", &status_format,
1381 N_("show status in long format (default)"),
1382 STATUS_FORMAT_LONG),
1383 OPT_BOOL('z', "null", &s.null_termination,
1384 N_("terminate entries with NUL")),
1385 { OPTION_STRING, 'u', "untracked-files", &untracked_files_arg,
1387 N_("show untracked files, optional modes: all, normal, no. (Default: all)"),
1388 PARSE_OPT_OPTARG, NULL, (intptr_t)"all" },
1389 { OPTION_STRING, 0, "ignored", &ignored_arg,
1391 N_("show ignored files, optional modes: traditional, matching, no. (Default: traditional)"),
1392 PARSE_OPT_OPTARG, NULL, (intptr_t)"traditional" },
1393 { OPTION_STRING, 0, "ignore-submodules", &ignore_submodule_arg, N_("when"),
1394 N_("ignore changes to submodules, optional when: all, dirty, untracked. (Default: all)"),
1395 PARSE_OPT_OPTARG, NULL, (intptr_t)"all" },
1396 OPT_COLUMN(0, "column", &s.colopts, N_("list untracked files in columns")),
1397 OPT_BOOL(0, "no-renames", &no_renames, N_("do not detect renames")),
1398 OPT_CALLBACK_F('M', "find-renames", &rename_score_arg,
1399 N_("n"), N_("detect renames, optionally set similarity index"),
1400 PARSE_OPT_OPTARG | PARSE_OPT_NONEG, opt_parse_rename_score),
1404 if (argc == 2 && !strcmp(argv[1], "-h"))
1405 usage_with_options(builtin_status_usage, builtin_status_options);
1407 status_init_config(&s, git_status_config);
1408 argc = parse_options(argc, argv, prefix,
1409 builtin_status_options,
1410 builtin_status_usage, 0);
1411 finalize_colopts(&s.colopts, -1);
1412 finalize_deferred_config(&s);
1414 handle_untracked_files_arg(&s);
1415 handle_ignored_arg(&s);
1417 if (s.show_ignored_mode == SHOW_MATCHING_IGNORED &&
1418 s.show_untracked_files == SHOW_NO_UNTRACKED_FILES)
1419 die(_("Unsupported combination of ignored and untracked-files arguments"));
1421 parse_pathspec(&s.pathspec, 0,
1422 PATHSPEC_PREFER_FULL,
1425 if (status_format != STATUS_FORMAT_PORCELAIN &&
1426 status_format != STATUS_FORMAT_PORCELAIN_V2)
1427 progress_flag = REFRESH_PROGRESS;
1428 repo_read_index(the_repository);
1429 refresh_index(&the_index,
1430 REFRESH_QUIET|REFRESH_UNMERGED|progress_flag,
1431 &s.pathspec, NULL, NULL);
1433 if (use_optional_locks())
1434 fd = hold_locked_index(&index_lock, 0);
1438 s.is_initial = get_oid(s.reference, &oid) ? 1 : 0;
1440 oidcpy(&s.oid_commit, &oid);
1442 s.ignore_submodule_arg = ignore_submodule_arg;
1443 s.status_format = status_format;
1444 s.verbose = verbose;
1445 if (no_renames != -1)
1446 s.detect_rename = !no_renames;
1447 if ((intptr_t)rename_score_arg != -1) {
1448 if (s.detect_rename < DIFF_DETECT_RENAME)
1449 s.detect_rename = DIFF_DETECT_RENAME;
1450 if (rename_score_arg)
1451 s.rename_score = parse_rename_score(&rename_score_arg);
1454 wt_status_collect(&s);
1457 repo_update_index_if_able(the_repository, &index_lock);
1459 if (s.relative_paths)
1462 wt_status_print(&s);
1463 wt_status_collect_free_buffers(&s);
1468 static int git_commit_config(const char *k, const char *v, void *cb)
1470 struct wt_status *s = cb;
1473 if (!strcmp(k, "commit.template"))
1474 return git_config_pathname(&template_file, k, v);
1475 if (!strcmp(k, "commit.status")) {
1476 include_status = git_config_bool(k, v);
1479 if (!strcmp(k, "commit.cleanup"))
1480 return git_config_string(&cleanup_arg, k, v);
1481 if (!strcmp(k, "commit.gpgsign")) {
1482 sign_commit = git_config_bool(k, v) ? "" : NULL;
1485 if (!strcmp(k, "commit.verbose")) {
1487 config_commit_verbose = git_config_bool_or_int(k, v, &is_bool);
1491 status = git_gpg_config(k, v, NULL);
1494 return git_status_config(k, v, s);
1497 int cmd_commit(int argc, const char **argv, const char *prefix)
1499 static struct wt_status s;
1500 static struct option builtin_commit_options[] = {
1501 OPT__QUIET(&quiet, N_("suppress summary after successful commit")),
1502 OPT__VERBOSE(&verbose, N_("show diff in commit message template")),
1504 OPT_GROUP(N_("Commit message options")),
1505 OPT_FILENAME('F', "file", &logfile, N_("read message from file")),
1506 OPT_STRING(0, "author", &force_author, N_("author"), N_("override author for commit")),
1507 OPT_STRING(0, "date", &force_date, N_("date"), N_("override date for commit")),
1508 OPT_CALLBACK('m', "message", &message, N_("message"), N_("commit message"), opt_parse_m),
1509 OPT_STRING('c', "reedit-message", &edit_message, N_("commit"), N_("reuse and edit message from specified commit")),
1510 OPT_STRING('C', "reuse-message", &use_message, N_("commit"), N_("reuse message from specified commit")),
1511 OPT_STRING(0, "fixup", &fixup_message, N_("commit"), N_("use autosquash formatted message to fixup specified commit")),
1512 OPT_STRING(0, "squash", &squash_message, N_("commit"), N_("use autosquash formatted message to squash specified commit")),
1513 OPT_BOOL(0, "reset-author", &renew_authorship, N_("the commit is authored by me now (used with -C/-c/--amend)")),
1514 OPT_BOOL('s', "signoff", &signoff, N_("add a Signed-off-by trailer")),
1515 OPT_FILENAME('t', "template", &template_file, N_("use specified template file")),
1516 OPT_BOOL('e', "edit", &edit_flag, N_("force edit of commit")),
1517 OPT_CLEANUP(&cleanup_arg),
1518 OPT_BOOL(0, "status", &include_status, N_("include status in commit message template")),
1519 { OPTION_STRING, 'S', "gpg-sign", &sign_commit, N_("key-id"),
1520 N_("GPG sign commit"), PARSE_OPT_OPTARG, NULL, (intptr_t) "" },
1521 /* end commit message options */
1523 OPT_GROUP(N_("Commit contents options")),
1524 OPT_BOOL('a', "all", &all, N_("commit all changed files")),
1525 OPT_BOOL('i', "include", &also, N_("add specified files to index for commit")),
1526 OPT_BOOL(0, "interactive", &interactive, N_("interactively add files")),
1527 OPT_BOOL('p', "patch", &patch_interactive, N_("interactively add changes")),
1528 OPT_BOOL('o', "only", &only, N_("commit only specified files")),
1529 OPT_BOOL('n', "no-verify", &no_verify, N_("bypass pre-commit and commit-msg hooks")),
1530 OPT_BOOL(0, "dry-run", &dry_run, N_("show what would be committed")),
1531 OPT_SET_INT(0, "short", &status_format, N_("show status concisely"),
1532 STATUS_FORMAT_SHORT),
1533 OPT_BOOL(0, "branch", &s.show_branch, N_("show branch information")),
1534 OPT_BOOL(0, "ahead-behind", &s.ahead_behind_flags,
1535 N_("compute full ahead/behind values")),
1536 OPT_SET_INT(0, "porcelain", &status_format,
1537 N_("machine-readable output"), STATUS_FORMAT_PORCELAIN),
1538 OPT_SET_INT(0, "long", &status_format,
1539 N_("show status in long format (default)"),
1540 STATUS_FORMAT_LONG),
1541 OPT_BOOL('z', "null", &s.null_termination,
1542 N_("terminate entries with NUL")),
1543 OPT_BOOL(0, "amend", &amend, N_("amend previous commit")),
1544 OPT_BOOL(0, "no-post-rewrite", &no_post_rewrite, N_("bypass post-rewrite hook")),
1545 { 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" },
1546 OPT_PATHSPEC_FROM_FILE(&pathspec_from_file),
1547 OPT_PATHSPEC_FILE_NUL(&pathspec_file_nul),
1548 /* end commit contents options */
1550 OPT_HIDDEN_BOOL(0, "allow-empty", &allow_empty,
1551 N_("ok to record an empty change")),
1552 OPT_HIDDEN_BOOL(0, "allow-empty-message", &allow_empty_message,
1553 N_("ok to record a change with an empty message")),
1558 struct strbuf sb = STRBUF_INIT;
1559 struct strbuf author_ident = STRBUF_INIT;
1560 const char *index_file, *reflog_msg;
1561 struct object_id oid;
1562 struct commit_list *parents = NULL;
1563 struct stat statbuf;
1564 struct commit *current_head = NULL;
1565 struct commit_extra_header *extra = NULL;
1566 struct strbuf err = STRBUF_INIT;
1568 if (argc == 2 && !strcmp(argv[1], "-h"))
1569 usage_with_options(builtin_commit_usage, builtin_commit_options);
1571 status_init_config(&s, git_commit_config);
1572 s.commit_template = 1;
1573 status_format = STATUS_FORMAT_NONE; /* Ignore status.short */
1576 if (get_oid("HEAD", &oid))
1577 current_head = NULL;
1579 current_head = lookup_commit_or_die(&oid, "HEAD");
1580 if (parse_commit(current_head))
1581 die(_("could not parse HEAD commit"));
1583 verbose = -1; /* unspecified */
1584 argc = parse_and_validate_options(argc, argv, builtin_commit_options,
1585 builtin_commit_usage,
1586 prefix, current_head, &s);
1588 verbose = (config_commit_verbose < 0) ? 0 : config_commit_verbose;
1591 return dry_run_commit(argv, prefix, current_head, &s);
1592 index_file = prepare_index(argv, prefix, current_head, 0);
1594 /* Set up everything for writing the commit object. This includes
1595 running hooks, writing the trees, and interacting with the user. */
1596 if (!prepare_to_commit(index_file, prefix,
1597 current_head, &s, &author_ident)) {
1598 rollback_index_files();
1602 /* Determine parents */
1603 reflog_msg = getenv("GIT_REFLOG_ACTION");
1604 if (!current_head) {
1606 reflog_msg = "commit (initial)";
1609 reflog_msg = "commit (amend)";
1610 parents = copy_commit_list(current_head->parents);
1611 } else if (whence == FROM_MERGE) {
1612 struct strbuf m = STRBUF_INIT;
1614 int allow_fast_forward = 1;
1615 struct commit_list **pptr = &parents;
1618 reflog_msg = "commit (merge)";
1619 pptr = commit_list_append(current_head, pptr);
1620 fp = xfopen(git_path_merge_head(the_repository), "r");
1621 while (strbuf_getline_lf(&m, fp) != EOF) {
1622 struct commit *parent;
1624 parent = get_merge_parent(m.buf);
1626 die(_("Corrupt MERGE_HEAD file (%s)"), m.buf);
1627 pptr = commit_list_append(parent, pptr);
1631 if (!stat(git_path_merge_mode(the_repository), &statbuf)) {
1632 if (strbuf_read_file(&sb, git_path_merge_mode(the_repository), 0) < 0)
1633 die_errno(_("could not read MERGE_MODE"));
1634 if (!strcmp(sb.buf, "no-ff"))
1635 allow_fast_forward = 0;
1637 if (allow_fast_forward)
1638 reduce_heads_replace(&parents);
1641 reflog_msg = is_from_cherry_pick(whence)
1642 ? "commit (cherry-pick)"
1643 : is_from_rebase(whence)
1646 commit_list_insert(current_head, &parents);
1649 /* Finally, get the commit message */
1651 if (strbuf_read_file(&sb, git_path_commit_editmsg(), 0) < 0) {
1652 int saved_errno = errno;
1653 rollback_index_files();
1654 die(_("could not read commit message: %s"), strerror(saved_errno));
1657 cleanup_message(&sb, cleanup_mode, verbose);
1659 if (message_is_empty(&sb, cleanup_mode) && !allow_empty_message) {
1660 rollback_index_files();
1661 fprintf(stderr, _("Aborting commit due to empty commit message.\n"));
1664 if (template_untouched(&sb, template_file, cleanup_mode) && !allow_empty_message) {
1665 rollback_index_files();
1666 fprintf(stderr, _("Aborting commit; you did not edit the message.\n"));
1671 const char *exclude_gpgsig[3] = { "gpgsig", "gpgsig-sha256", NULL };
1672 extra = read_commit_extra_headers(current_head, exclude_gpgsig);
1674 struct commit_extra_header **tail = &extra;
1675 append_merge_tag_headers(parents, &tail);
1678 if (commit_tree_extended(sb.buf, sb.len, &active_cache_tree->oid,
1679 parents, &oid, author_ident.buf, NULL,
1680 sign_commit, extra)) {
1681 rollback_index_files();
1682 die(_("failed to write commit object"));
1684 strbuf_release(&author_ident);
1685 free_commit_extra_headers(extra);
1687 if (update_head_with_reflog(current_head, &oid, reflog_msg, &sb,
1689 rollback_index_files();
1693 sequencer_post_commit_cleanup(the_repository, 0);
1694 unlink(git_path_merge_head(the_repository));
1695 unlink(git_path_merge_msg(the_repository));
1696 unlink(git_path_merge_mode(the_repository));
1697 unlink(git_path_squash_msg(the_repository));
1699 if (commit_index_files())
1700 die(_("repository has been updated, but unable to write\n"
1701 "new_index file. Check that disk is not full and quota is\n"
1702 "not exceeded, and then \"git restore --staged :/\" to recover."));
1704 git_test_write_commit_graph_or_die();
1706 repo_rerere(the_repository, 0);
1707 run_auto_maintenance(quiet);
1708 run_commit_hook(use_editor, get_index_file(), "post-commit", NULL);
1709 if (amend && !no_post_rewrite) {
1710 commit_post_rewrite(the_repository, current_head, &oid);
1713 unsigned int flags = 0;
1716 flags |= SUMMARY_INITIAL_COMMIT;
1717 if (author_date_is_interesting())
1718 flags |= SUMMARY_SHOW_AUTHOR_DATE;
1719 print_commit_summary(the_repository, prefix,
1723 apply_autostash(git_path_merge_autostash(the_repository));