Refactor cache_tree_update idiom from commit
[git/mingw.git] / builtin / commit.c
blob4f782a33f1dde5c82d7da5f1051083a743e00ddd
1 /*
2 * Builtin "git commit"
4 * Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>
5 * Based on git-commit.sh by Junio C Hamano and Linus Torvalds
6 */
8 #include "cache.h"
9 #include "cache-tree.h"
10 #include "color.h"
11 #include "dir.h"
12 #include "builtin.h"
13 #include "diff.h"
14 #include "diffcore.h"
15 #include "commit.h"
16 #include "revision.h"
17 #include "wt-status.h"
18 #include "run-command.h"
19 #include "refs.h"
20 #include "log-tree.h"
21 #include "strbuf.h"
22 #include "utf8.h"
23 #include "parse-options.h"
24 #include "string-list.h"
25 #include "rerere.h"
26 #include "unpack-trees.h"
27 #include "quote.h"
28 #include "submodule.h"
30 static const char * const builtin_commit_usage[] = {
31 "git commit [options] [--] <filepattern>...",
32 NULL
35 static const char * const builtin_status_usage[] = {
36 "git status [options] [--] <filepattern>...",
37 NULL
40 static const char implicit_ident_advice[] =
41 N_("Your name and email address were configured automatically based\n"
42 "on your username and hostname. Please check that they are accurate.\n"
43 "You can suppress this message by setting them explicitly:\n"
44 "\n"
45 " git config --global user.name \"Your Name\"\n"
46 " git config --global user.email you@example.com\n"
47 "\n"
48 "After doing this, you may fix the identity used for this commit with:\n"
49 "\n"
50 " git commit --amend --reset-author\n");
52 static const char empty_amend_advice[] =
53 N_("You asked to amend the most recent commit, but doing so would make\n"
54 "it empty. You can repeat your command with --allow-empty, or you can\n"
55 "remove the commit entirely with \"git reset HEAD^\".\n");
57 static const char empty_cherry_pick_advice[] =
58 N_("The previous cherry-pick is now empty, possibly due to conflict resolution.\n"
59 "If you wish to commit it anyway, use:\n"
60 "\n"
61 " git commit --allow-empty\n"
62 "\n"
63 "Otherwise, please use 'git reset'\n");
65 static const char *use_message_buffer;
66 static const char commit_editmsg[] = "COMMIT_EDITMSG";
67 static struct lock_file index_lock; /* real index */
68 static struct lock_file false_lock; /* used only for partial commits */
69 static enum {
70 COMMIT_AS_IS = 1,
71 COMMIT_NORMAL,
72 COMMIT_PARTIAL
73 } commit_style;
75 static const char *logfile, *force_author;
76 static const char *template_file;
78 * The _message variables are commit names from which to take
79 * the commit message and/or authorship.
81 static const char *author_message, *author_message_buffer;
82 static char *edit_message, *use_message;
83 static char *fixup_message, *squash_message;
84 static int all, edit_flag, also, interactive, patch_interactive, only, amend, signoff;
85 static int quiet, verbose, no_verify, allow_empty, dry_run, renew_authorship;
86 static int no_post_rewrite, allow_empty_message;
87 static char *untracked_files_arg, *force_date, *ignore_submodule_arg;
89 * The default commit message cleanup mode will remove the lines
90 * beginning with # (shell comments) and leading and trailing
91 * whitespaces (empty lines or containing only whitespaces)
92 * if editor is used, and only the whitespaces if the message
93 * is specified explicitly.
95 static enum {
96 CLEANUP_SPACE,
97 CLEANUP_NONE,
98 CLEANUP_ALL
99 } cleanup_mode;
100 static char *cleanup_arg;
102 static enum commit_whence whence;
103 static int use_editor = 1, include_status = 1;
104 static int show_ignored_in_status;
105 static const char *only_include_assumed;
106 static struct strbuf message;
108 static int null_termination;
109 static enum {
110 STATUS_FORMAT_LONG,
111 STATUS_FORMAT_SHORT,
112 STATUS_FORMAT_PORCELAIN
113 } status_format = STATUS_FORMAT_LONG;
114 static int status_show_branch;
116 static int opt_parse_m(const struct option *opt, const char *arg, int unset)
118 struct strbuf *buf = opt->value;
119 if (unset)
120 strbuf_setlen(buf, 0);
121 else {
122 strbuf_addstr(buf, arg);
123 strbuf_addstr(buf, "\n\n");
125 return 0;
128 static struct option builtin_commit_options[] = {
129 OPT__QUIET(&quiet, "suppress summary after successful commit"),
130 OPT__VERBOSE(&verbose, "show diff in commit message template"),
132 OPT_GROUP("Commit message options"),
133 OPT_FILENAME('F', "file", &logfile, "read message from file"),
134 OPT_STRING(0, "author", &force_author, "author", "override author for commit"),
135 OPT_STRING(0, "date", &force_date, "date", "override date for commit"),
136 OPT_CALLBACK('m', "message", &message, "message", "commit message", opt_parse_m),
137 OPT_STRING('c', "reedit-message", &edit_message, "commit", "reuse and edit message from specified commit"),
138 OPT_STRING('C', "reuse-message", &use_message, "commit", "reuse message from specified commit"),
139 OPT_STRING(0, "fixup", &fixup_message, "commit", "use autosquash formatted message to fixup specified commit"),
140 OPT_STRING(0, "squash", &squash_message, "commit", "use autosquash formatted message to squash specified commit"),
141 OPT_BOOLEAN(0, "reset-author", &renew_authorship, "the commit is authored by me now (used with -C-c/--amend)"),
142 OPT_BOOLEAN('s', "signoff", &signoff, "add Signed-off-by:"),
143 OPT_FILENAME('t', "template", &template_file, "use specified template file"),
144 OPT_BOOLEAN('e', "edit", &edit_flag, "force edit of commit"),
145 OPT_STRING(0, "cleanup", &cleanup_arg, "default", "how to strip spaces and #comments from message"),
146 OPT_BOOLEAN(0, "status", &include_status, "include status in commit message template"),
147 /* end commit message options */
149 OPT_GROUP("Commit contents options"),
150 OPT_BOOLEAN('a', "all", &all, "commit all changed files"),
151 OPT_BOOLEAN('i', "include", &also, "add specified files to index for commit"),
152 OPT_BOOLEAN(0, "interactive", &interactive, "interactively add files"),
153 OPT_BOOLEAN('p', "patch", &patch_interactive, "interactively add changes"),
154 OPT_BOOLEAN('o', "only", &only, "commit only specified files"),
155 OPT_BOOLEAN('n', "no-verify", &no_verify, "bypass pre-commit hook"),
156 OPT_BOOLEAN(0, "dry-run", &dry_run, "show what would be committed"),
157 OPT_SET_INT(0, "short", &status_format, "show status concisely",
158 STATUS_FORMAT_SHORT),
159 OPT_BOOLEAN(0, "branch", &status_show_branch, "show branch information"),
160 OPT_SET_INT(0, "porcelain", &status_format,
161 "machine-readable output", STATUS_FORMAT_PORCELAIN),
162 OPT_BOOLEAN('z', "null", &null_termination,
163 "terminate entries with NUL"),
164 OPT_BOOLEAN(0, "amend", &amend, "amend previous commit"),
165 OPT_BOOLEAN(0, "no-post-rewrite", &no_post_rewrite, "bypass post-rewrite hook"),
166 { OPTION_STRING, 'u', "untracked-files", &untracked_files_arg, "mode", "show untracked files, optional modes: all, normal, no. (Default: all)", PARSE_OPT_OPTARG, NULL, (intptr_t)"all" },
167 /* end commit contents options */
169 { OPTION_BOOLEAN, 0, "allow-empty", &allow_empty, NULL,
170 "ok to record an empty change",
171 PARSE_OPT_NOARG | PARSE_OPT_HIDDEN },
172 { OPTION_BOOLEAN, 0, "allow-empty-message", &allow_empty_message, NULL,
173 "ok to record a change with an empty message",
174 PARSE_OPT_NOARG | PARSE_OPT_HIDDEN },
176 OPT_END()
179 static void determine_whence(struct wt_status *s)
181 if (file_exists(git_path("MERGE_HEAD")))
182 whence = FROM_MERGE;
183 else if (file_exists(git_path("CHERRY_PICK_HEAD")))
184 whence = FROM_CHERRY_PICK;
185 else
186 whence = FROM_COMMIT;
187 if (s)
188 s->whence = whence;
191 static const char *whence_s(void)
193 char *s = "";
195 switch (whence) {
196 case FROM_COMMIT:
197 break;
198 case FROM_MERGE:
199 s = "merge";
200 break;
201 case FROM_CHERRY_PICK:
202 s = "cherry-pick";
203 break;
206 return s;
209 static void rollback_index_files(void)
211 switch (commit_style) {
212 case COMMIT_AS_IS:
213 break; /* nothing to do */
214 case COMMIT_NORMAL:
215 rollback_lock_file(&index_lock);
216 break;
217 case COMMIT_PARTIAL:
218 rollback_lock_file(&index_lock);
219 rollback_lock_file(&false_lock);
220 break;
224 static int commit_index_files(void)
226 int err = 0;
228 switch (commit_style) {
229 case COMMIT_AS_IS:
230 break; /* nothing to do */
231 case COMMIT_NORMAL:
232 err = commit_lock_file(&index_lock);
233 break;
234 case COMMIT_PARTIAL:
235 err = commit_lock_file(&index_lock);
236 rollback_lock_file(&false_lock);
237 break;
240 return err;
244 * Take a union of paths in the index and the named tree (typically, "HEAD"),
245 * and return the paths that match the given pattern in list.
247 static int list_paths(struct string_list *list, const char *with_tree,
248 const char *prefix, const char **pattern)
250 int i;
251 char *m;
253 for (i = 0; pattern[i]; i++)
255 m = xcalloc(1, i);
257 if (with_tree) {
258 char *max_prefix = common_prefix(pattern);
259 overlay_tree_on_cache(with_tree, max_prefix ? max_prefix : prefix);
260 free(max_prefix);
263 for (i = 0; i < active_nr; i++) {
264 struct cache_entry *ce = active_cache[i];
265 struct string_list_item *item;
267 if (ce->ce_flags & CE_UPDATE)
268 continue;
269 if (!match_pathspec(pattern, ce->name, ce_namelen(ce), 0, m))
270 continue;
271 item = string_list_insert(list, ce->name);
272 if (ce_skip_worktree(ce))
273 item->util = item; /* better a valid pointer than a fake one */
276 return report_path_error(m, pattern, prefix);
279 static void add_remove_files(struct string_list *list)
281 int i;
282 for (i = 0; i < list->nr; i++) {
283 struct stat st;
284 struct string_list_item *p = &(list->items[i]);
286 /* p->util is skip-worktree */
287 if (p->util)
288 continue;
290 if (!lstat(p->string, &st)) {
291 if (add_to_cache(p->string, &st, 0))
292 die(_("updating files failed"));
293 } else
294 remove_file_from_cache(p->string);
298 static void create_base_index(const struct commit *current_head)
300 struct tree *tree;
301 struct unpack_trees_options opts;
302 struct tree_desc t;
304 if (!current_head) {
305 discard_cache();
306 return;
309 memset(&opts, 0, sizeof(opts));
310 opts.head_idx = 1;
311 opts.index_only = 1;
312 opts.merge = 1;
313 opts.src_index = &the_index;
314 opts.dst_index = &the_index;
316 opts.fn = oneway_merge;
317 tree = parse_tree_indirect(current_head->object.sha1);
318 if (!tree)
319 die(_("failed to unpack HEAD tree object"));
320 parse_tree(tree);
321 init_tree_desc(&t, tree->buffer, tree->size);
322 if (unpack_trees(1, &t, &opts))
323 exit(128); /* We've already reported the error, finish dying */
326 static void refresh_cache_or_die(int refresh_flags)
329 * refresh_flags contains REFRESH_QUIET, so the only errors
330 * are for unmerged entries.
332 if (refresh_cache(refresh_flags | REFRESH_IN_PORCELAIN))
333 die_resolve_conflict("commit");
336 static char *prepare_index(int argc, const char **argv, const char *prefix,
337 const struct commit *current_head, int is_status)
339 int fd;
340 struct string_list partial;
341 const char **pathspec = NULL;
342 char *old_index_env = NULL;
343 int refresh_flags = REFRESH_QUIET;
345 if (is_status)
346 refresh_flags |= REFRESH_UNMERGED;
348 if (*argv)
349 pathspec = get_pathspec(prefix, argv);
351 if (read_cache_preload(pathspec) < 0)
352 die(_("index file corrupt"));
354 if (interactive) {
355 fd = hold_locked_index(&index_lock, 1);
357 refresh_cache_or_die(refresh_flags);
359 if (write_cache(fd, active_cache, active_nr) ||
360 close_lock_file(&index_lock))
361 die(_("unable to create temporary index"));
363 old_index_env = getenv(INDEX_ENVIRONMENT);
364 setenv(INDEX_ENVIRONMENT, index_lock.filename, 1);
366 if (interactive_add(argc, argv, prefix, patch_interactive) != 0)
367 die(_("interactive add failed"));
369 if (old_index_env && *old_index_env)
370 setenv(INDEX_ENVIRONMENT, old_index_env, 1);
371 else
372 unsetenv(INDEX_ENVIRONMENT);
374 discard_cache();
375 read_cache_from(index_lock.filename);
377 commit_style = COMMIT_NORMAL;
378 return index_lock.filename;
382 * Non partial, non as-is commit.
384 * (1) get the real index;
385 * (2) update the_index as necessary;
386 * (3) write the_index out to the real index (still locked);
387 * (4) return the name of the locked index file.
389 * The caller should run hooks on the locked real index, and
390 * (A) if all goes well, commit the real index;
391 * (B) on failure, rollback the real index.
393 if (all || (also && pathspec && *pathspec)) {
394 fd = hold_locked_index(&index_lock, 1);
395 add_files_to_cache(also ? prefix : NULL, pathspec, 0);
396 refresh_cache_or_die(refresh_flags);
397 if (write_cache(fd, active_cache, active_nr) ||
398 close_lock_file(&index_lock))
399 die(_("unable to write new_index file"));
400 commit_style = COMMIT_NORMAL;
401 return index_lock.filename;
405 * As-is commit.
407 * (1) return the name of the real index file.
409 * The caller should run hooks on the real index,
410 * and create commit from the_index.
411 * We still need to refresh the index here.
413 if (!pathspec || !*pathspec) {
414 fd = hold_locked_index(&index_lock, 1);
415 refresh_cache_or_die(refresh_flags);
416 if (active_cache_changed) {
417 if (write_cache(fd, active_cache, active_nr) ||
418 commit_locked_index(&index_lock))
419 die(_("unable to write new_index file"));
420 } else {
421 rollback_lock_file(&index_lock);
423 commit_style = COMMIT_AS_IS;
424 return get_index_file();
428 * A partial commit.
430 * (0) find the set of affected paths;
431 * (1) get lock on the real index file;
432 * (2) update the_index with the given paths;
433 * (3) write the_index out to the real index (still locked);
434 * (4) get lock on the false index file;
435 * (5) reset the_index from HEAD;
436 * (6) update the_index the same way as (2);
437 * (7) write the_index out to the false index file;
438 * (8) return the name of the false index file (still locked);
440 * The caller should run hooks on the locked false index, and
441 * create commit from it. Then
442 * (A) if all goes well, commit the real index;
443 * (B) on failure, rollback the real index;
444 * In either case, rollback the false index.
446 commit_style = COMMIT_PARTIAL;
448 if (whence != FROM_COMMIT)
449 die(_("cannot do a partial commit during a %s."), whence_s());
451 memset(&partial, 0, sizeof(partial));
452 partial.strdup_strings = 1;
453 if (list_paths(&partial, !current_head ? NULL : "HEAD", prefix, pathspec))
454 exit(1);
456 discard_cache();
457 if (read_cache() < 0)
458 die(_("cannot read the index"));
460 fd = hold_locked_index(&index_lock, 1);
461 add_remove_files(&partial);
462 refresh_cache(REFRESH_QUIET);
463 if (write_cache(fd, active_cache, active_nr) ||
464 close_lock_file(&index_lock))
465 die(_("unable to write new_index file"));
467 fd = hold_lock_file_for_update(&false_lock,
468 git_path("next-index-%"PRIuMAX,
469 (uintmax_t) getpid()),
470 LOCK_DIE_ON_ERROR);
472 create_base_index(current_head);
473 add_remove_files(&partial);
474 refresh_cache(REFRESH_QUIET);
476 if (write_cache(fd, active_cache, active_nr) ||
477 close_lock_file(&false_lock))
478 die(_("unable to write temporary index file"));
480 discard_cache();
481 read_cache_from(false_lock.filename);
483 return false_lock.filename;
486 static int run_status(FILE *fp, const char *index_file, const char *prefix, int nowarn,
487 struct wt_status *s)
489 unsigned char sha1[20];
491 if (s->relative_paths)
492 s->prefix = prefix;
494 if (amend) {
495 s->amend = 1;
496 s->reference = "HEAD^1";
498 s->verbose = verbose;
499 s->index_file = index_file;
500 s->fp = fp;
501 s->nowarn = nowarn;
502 s->is_initial = get_sha1(s->reference, sha1) ? 1 : 0;
504 wt_status_collect(s);
506 switch (status_format) {
507 case STATUS_FORMAT_SHORT:
508 wt_shortstatus_print(s, null_termination, status_show_branch);
509 break;
510 case STATUS_FORMAT_PORCELAIN:
511 wt_porcelain_print(s, null_termination);
512 break;
513 case STATUS_FORMAT_LONG:
514 wt_status_print(s);
515 break;
518 return s->commitable;
521 static int is_a_merge(const struct commit *current_head)
523 return !!(current_head->parents && current_head->parents->next);
526 static const char sign_off_header[] = "Signed-off-by: ";
528 static void determine_author_info(struct strbuf *author_ident)
530 char *name, *email, *date;
532 name = getenv("GIT_AUTHOR_NAME");
533 email = getenv("GIT_AUTHOR_EMAIL");
534 date = getenv("GIT_AUTHOR_DATE");
536 if (author_message) {
537 const char *a, *lb, *rb, *eol;
539 a = strstr(author_message_buffer, "\nauthor ");
540 if (!a)
541 die(_("invalid commit: %s"), author_message);
543 lb = strchrnul(a + strlen("\nauthor "), '<');
544 rb = strchrnul(lb, '>');
545 eol = strchrnul(rb, '\n');
546 if (!*lb || !*rb || !*eol)
547 die(_("invalid commit: %s"), author_message);
549 if (lb == a + strlen("\nauthor "))
550 /* \nauthor <foo@example.com> */
551 name = xcalloc(1, 1);
552 else
553 name = xmemdupz(a + strlen("\nauthor "),
554 (lb - strlen(" ") -
555 (a + strlen("\nauthor "))));
556 email = xmemdupz(lb + strlen("<"), rb - (lb + strlen("<")));
557 date = xmemdupz(rb + strlen("> "), eol - (rb + strlen("> ")));
560 if (force_author) {
561 const char *lb = strstr(force_author, " <");
562 const char *rb = strchr(force_author, '>');
564 if (!lb || !rb)
565 die(_("malformed --author parameter"));
566 name = xstrndup(force_author, lb - force_author);
567 email = xstrndup(lb + 2, rb - (lb + 2));
570 if (force_date)
571 date = force_date;
572 strbuf_addstr(author_ident, fmt_ident(name, email, date,
573 IDENT_ERROR_ON_NO_NAME));
576 static int ends_rfc2822_footer(struct strbuf *sb)
578 int ch;
579 int hit = 0;
580 int i, j, k;
581 int len = sb->len;
582 int first = 1;
583 const char *buf = sb->buf;
585 for (i = len - 1; i > 0; i--) {
586 if (hit && buf[i] == '\n')
587 break;
588 hit = (buf[i] == '\n');
591 while (i < len - 1 && buf[i] == '\n')
592 i++;
594 for (; i < len; i = k) {
595 for (k = i; k < len && buf[k] != '\n'; k++)
596 ; /* do nothing */
597 k++;
599 if ((buf[k] == ' ' || buf[k] == '\t') && !first)
600 continue;
602 first = 0;
604 for (j = 0; i + j < len; j++) {
605 ch = buf[i + j];
606 if (ch == ':')
607 break;
608 if (isalnum(ch) ||
609 (ch == '-'))
610 continue;
611 return 0;
614 return 1;
617 static char *cut_ident_timestamp_part(char *string)
619 char *ket = strrchr(string, '>');
620 if (!ket || ket[1] != ' ')
621 die(_("Malformed ident string: '%s'"), string);
622 *++ket = '\0';
623 return ket;
626 static int prepare_to_commit(const char *index_file, const char *prefix,
627 struct commit *current_head,
628 struct wt_status *s,
629 struct strbuf *author_ident)
631 struct stat statbuf;
632 struct strbuf committer_ident = STRBUF_INIT;
633 int commitable, saved_color_setting;
634 struct strbuf sb = STRBUF_INIT;
635 char *buffer;
636 const char *hook_arg1 = NULL;
637 const char *hook_arg2 = NULL;
638 int ident_shown = 0;
639 int clean_message_contents = (cleanup_mode != CLEANUP_NONE);
641 if (!no_verify && run_hook(index_file, "pre-commit", NULL))
642 return 0;
644 if (squash_message) {
646 * Insert the proper subject line before other commit
647 * message options add their content.
649 if (use_message && !strcmp(use_message, squash_message))
650 strbuf_addstr(&sb, "squash! ");
651 else {
652 struct pretty_print_context ctx = {0};
653 struct commit *c;
654 c = lookup_commit_reference_by_name(squash_message);
655 if (!c)
656 die(_("could not lookup commit %s"), squash_message);
657 ctx.output_encoding = get_commit_output_encoding();
658 format_commit_message(c, "squash! %s\n\n", &sb,
659 &ctx);
663 if (message.len) {
664 strbuf_addbuf(&sb, &message);
665 hook_arg1 = "message";
666 } else if (logfile && !strcmp(logfile, "-")) {
667 if (isatty(0))
668 fprintf(stderr, _("(reading log message from standard input)\n"));
669 if (strbuf_read(&sb, 0, 0) < 0)
670 die_errno(_("could not read log from standard input"));
671 hook_arg1 = "message";
672 } else if (logfile) {
673 if (strbuf_read_file(&sb, logfile, 0) < 0)
674 die_errno(_("could not read log file '%s'"),
675 logfile);
676 hook_arg1 = "message";
677 } else if (use_message) {
678 buffer = strstr(use_message_buffer, "\n\n");
679 if (!buffer || buffer[2] == '\0')
680 die(_("commit has empty message"));
681 strbuf_add(&sb, buffer + 2, strlen(buffer + 2));
682 hook_arg1 = "commit";
683 hook_arg2 = use_message;
684 } else if (fixup_message) {
685 struct pretty_print_context ctx = {0};
686 struct commit *commit;
687 commit = lookup_commit_reference_by_name(fixup_message);
688 if (!commit)
689 die(_("could not lookup commit %s"), fixup_message);
690 ctx.output_encoding = get_commit_output_encoding();
691 format_commit_message(commit, "fixup! %s\n\n",
692 &sb, &ctx);
693 hook_arg1 = "message";
694 } else if (!stat(git_path("MERGE_MSG"), &statbuf)) {
695 if (strbuf_read_file(&sb, git_path("MERGE_MSG"), 0) < 0)
696 die_errno(_("could not read MERGE_MSG"));
697 hook_arg1 = "merge";
698 } else if (!stat(git_path("SQUASH_MSG"), &statbuf)) {
699 if (strbuf_read_file(&sb, git_path("SQUASH_MSG"), 0) < 0)
700 die_errno(_("could not read SQUASH_MSG"));
701 hook_arg1 = "squash";
702 } else if (template_file) {
703 if (strbuf_read_file(&sb, template_file, 0) < 0)
704 die_errno(_("could not read '%s'"), template_file);
705 hook_arg1 = "template";
706 clean_message_contents = 0;
710 * The remaining cases don't modify the template message, but
711 * just set the argument(s) to the prepare-commit-msg hook.
713 else if (whence == FROM_MERGE)
714 hook_arg1 = "merge";
715 else if (whence == FROM_CHERRY_PICK) {
716 hook_arg1 = "commit";
717 hook_arg2 = "CHERRY_PICK_HEAD";
720 if (squash_message) {
722 * If squash_commit was used for the commit subject,
723 * then we're possibly hijacking other commit log options.
724 * Reset the hook args to tell the real story.
726 hook_arg1 = "message";
727 hook_arg2 = "";
730 s->fp = fopen(git_path(commit_editmsg), "w");
731 if (s->fp == NULL)
732 die_errno(_("could not open '%s'"), git_path(commit_editmsg));
734 if (clean_message_contents)
735 stripspace(&sb, 0);
737 if (signoff) {
738 struct strbuf sob = STRBUF_INIT;
739 int i;
741 strbuf_addstr(&sob, sign_off_header);
742 strbuf_addstr(&sob, fmt_name(getenv("GIT_COMMITTER_NAME"),
743 getenv("GIT_COMMITTER_EMAIL")));
744 strbuf_addch(&sob, '\n');
745 for (i = sb.len - 1; i > 0 && sb.buf[i - 1] != '\n'; i--)
746 ; /* do nothing */
747 if (prefixcmp(sb.buf + i, sob.buf)) {
748 if (!i || !ends_rfc2822_footer(&sb))
749 strbuf_addch(&sb, '\n');
750 strbuf_addbuf(&sb, &sob);
752 strbuf_release(&sob);
755 if (fwrite(sb.buf, 1, sb.len, s->fp) < sb.len)
756 die_errno(_("could not write commit template"));
758 strbuf_release(&sb);
760 /* This checks and barfs if author is badly specified */
761 determine_author_info(author_ident);
763 /* This checks if committer ident is explicitly given */
764 strbuf_addstr(&committer_ident, git_committer_info(0));
765 if (use_editor && include_status) {
766 char *ai_tmp, *ci_tmp;
767 if (whence != FROM_COMMIT)
768 status_printf_ln(s, GIT_COLOR_NORMAL,
769 _("\n"
770 "It looks like you may be committing a %s.\n"
771 "If this is not correct, please remove the file\n"
772 " %s\n"
773 "and try again.\n"
774 ""),
775 whence_s(),
776 git_path(whence == FROM_MERGE
777 ? "MERGE_HEAD"
778 : "CHERRY_PICK_HEAD"));
780 fprintf(s->fp, "\n");
781 status_printf(s, GIT_COLOR_NORMAL,
782 _("Please enter the commit message for your changes."));
783 if (cleanup_mode == CLEANUP_ALL)
784 status_printf_more(s, GIT_COLOR_NORMAL,
785 _(" Lines starting\n"
786 "with '#' will be ignored, and an empty"
787 " message aborts the commit.\n"));
788 else /* CLEANUP_SPACE, that is. */
789 status_printf_more(s, GIT_COLOR_NORMAL,
790 _(" Lines starting\n"
791 "with '#' will be kept; you may remove them"
792 " yourself if you want to.\n"
793 "An empty message aborts the commit.\n"));
794 if (only_include_assumed)
795 status_printf_ln(s, GIT_COLOR_NORMAL,
796 "%s", only_include_assumed);
798 ai_tmp = cut_ident_timestamp_part(author_ident->buf);
799 ci_tmp = cut_ident_timestamp_part(committer_ident.buf);
800 if (strcmp(author_ident->buf, committer_ident.buf))
801 status_printf_ln(s, GIT_COLOR_NORMAL,
802 _("%s"
803 "Author: %s"),
804 ident_shown++ ? "" : "\n",
805 author_ident->buf);
807 if (!user_ident_sufficiently_given())
808 status_printf_ln(s, GIT_COLOR_NORMAL,
809 _("%s"
810 "Committer: %s"),
811 ident_shown++ ? "" : "\n",
812 committer_ident.buf);
814 if (ident_shown)
815 status_printf_ln(s, GIT_COLOR_NORMAL, "");
817 saved_color_setting = s->use_color;
818 s->use_color = 0;
819 commitable = run_status(s->fp, index_file, prefix, 1, s);
820 s->use_color = saved_color_setting;
822 *ai_tmp = ' ';
823 *ci_tmp = ' ';
824 } else {
825 unsigned char sha1[20];
826 const char *parent = "HEAD";
828 if (!active_nr && read_cache() < 0)
829 die(_("Cannot read index"));
831 if (amend)
832 parent = "HEAD^1";
834 if (get_sha1(parent, sha1))
835 commitable = !!active_nr;
836 else
837 commitable = index_differs_from(parent, 0);
839 strbuf_release(&committer_ident);
841 fclose(s->fp);
844 * Reject an attempt to record a non-merge empty commit without
845 * explicit --allow-empty. In the cherry-pick case, it may be
846 * empty due to conflict resolution, which the user should okay.
848 if (!commitable && whence != FROM_MERGE && !allow_empty &&
849 !(amend && is_a_merge(current_head))) {
850 run_status(stdout, index_file, prefix, 0, s);
851 if (amend)
852 fputs(_(empty_amend_advice), stderr);
853 else if (whence == FROM_CHERRY_PICK)
854 fputs(_(empty_cherry_pick_advice), stderr);
855 return 0;
859 * Re-read the index as pre-commit hook could have updated it,
860 * and write it out as a tree. We must do this before we invoke
861 * the editor and after we invoke run_status above.
863 discard_cache();
864 read_cache_from(index_file);
865 if (update_main_cache_tree(0)) {
866 error(_("Error building trees"));
867 return 0;
870 if (run_hook(index_file, "prepare-commit-msg",
871 git_path(commit_editmsg), hook_arg1, hook_arg2, NULL))
872 return 0;
874 if (use_editor) {
875 char index[PATH_MAX];
876 const char *env[2] = { NULL };
877 env[0] = index;
878 snprintf(index, sizeof(index), "GIT_INDEX_FILE=%s", index_file);
879 if (launch_editor(git_path(commit_editmsg), NULL, env)) {
880 fprintf(stderr,
881 _("Please supply the message using either -m or -F option.\n"));
882 exit(1);
886 if (!no_verify &&
887 run_hook(index_file, "commit-msg", git_path(commit_editmsg), NULL)) {
888 return 0;
891 return 1;
895 * Find out if the message in the strbuf contains only whitespace and
896 * Signed-off-by lines.
898 static int message_is_empty(struct strbuf *sb)
900 struct strbuf tmpl = STRBUF_INIT;
901 const char *nl;
902 int eol, i, start = 0;
904 if (cleanup_mode == CLEANUP_NONE && sb->len)
905 return 0;
907 /* See if the template is just a prefix of the message. */
908 if (template_file && strbuf_read_file(&tmpl, template_file, 0) > 0) {
909 stripspace(&tmpl, cleanup_mode == CLEANUP_ALL);
910 if (start + tmpl.len <= sb->len &&
911 memcmp(tmpl.buf, sb->buf + start, tmpl.len) == 0)
912 start += tmpl.len;
914 strbuf_release(&tmpl);
916 /* Check if the rest is just whitespace and Signed-of-by's. */
917 for (i = start; i < sb->len; i++) {
918 nl = memchr(sb->buf + i, '\n', sb->len - i);
919 if (nl)
920 eol = nl - sb->buf;
921 else
922 eol = sb->len;
924 if (strlen(sign_off_header) <= eol - i &&
925 !prefixcmp(sb->buf + i, sign_off_header)) {
926 i = eol;
927 continue;
929 while (i < eol)
930 if (!isspace(sb->buf[i++]))
931 return 0;
934 return 1;
937 static const char *find_author_by_nickname(const char *name)
939 struct rev_info revs;
940 struct commit *commit;
941 struct strbuf buf = STRBUF_INIT;
942 const char *av[20];
943 int ac = 0;
945 init_revisions(&revs, NULL);
946 strbuf_addf(&buf, "--author=%s", name);
947 av[++ac] = "--all";
948 av[++ac] = "-i";
949 av[++ac] = buf.buf;
950 av[++ac] = NULL;
951 setup_revisions(ac, av, &revs, NULL);
952 prepare_revision_walk(&revs);
953 commit = get_revision(&revs);
954 if (commit) {
955 struct pretty_print_context ctx = {0};
956 ctx.date_mode = DATE_NORMAL;
957 strbuf_release(&buf);
958 format_commit_message(commit, "%an <%ae>", &buf, &ctx);
959 return strbuf_detach(&buf, NULL);
961 die(_("No existing author found with '%s'"), name);
965 static void handle_untracked_files_arg(struct wt_status *s)
967 if (!untracked_files_arg)
968 ; /* default already initialized */
969 else if (!strcmp(untracked_files_arg, "no"))
970 s->show_untracked_files = SHOW_NO_UNTRACKED_FILES;
971 else if (!strcmp(untracked_files_arg, "normal"))
972 s->show_untracked_files = SHOW_NORMAL_UNTRACKED_FILES;
973 else if (!strcmp(untracked_files_arg, "all"))
974 s->show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
975 else
976 die(_("Invalid untracked files mode '%s'"), untracked_files_arg);
979 static const char *read_commit_message(const char *name)
981 const char *out_enc, *out;
982 struct commit *commit;
984 commit = lookup_commit_reference_by_name(name);
985 if (!commit)
986 die(_("could not lookup commit %s"), name);
987 out_enc = get_commit_output_encoding();
988 out = logmsg_reencode(commit, out_enc);
991 * If we failed to reencode the buffer, just copy it
992 * byte for byte so the user can try to fix it up.
993 * This also handles the case where input and output
994 * encodings are identical.
996 if (out == NULL)
997 out = xstrdup(commit->buffer);
998 return out;
1001 static int parse_and_validate_options(int argc, const char *argv[],
1002 const char * const usage[],
1003 const char *prefix,
1004 struct commit *current_head,
1005 struct wt_status *s)
1007 int f = 0;
1009 argc = parse_options(argc, argv, prefix, builtin_commit_options, usage,
1012 if (force_author && !strchr(force_author, '>'))
1013 force_author = find_author_by_nickname(force_author);
1015 if (force_author && renew_authorship)
1016 die(_("Using both --reset-author and --author does not make sense"));
1018 if (logfile || message.len || use_message || fixup_message)
1019 use_editor = 0;
1020 if (edit_flag)
1021 use_editor = 1;
1022 if (!use_editor)
1023 setenv("GIT_EDITOR", ":", 1);
1025 /* Sanity check options */
1026 if (amend && !current_head)
1027 die(_("You have nothing to amend."));
1028 if (amend && whence != FROM_COMMIT)
1029 die(_("You are in the middle of a %s -- cannot amend."), whence_s());
1030 if (fixup_message && squash_message)
1031 die(_("Options --squash and --fixup cannot be used together"));
1032 if (use_message)
1033 f++;
1034 if (edit_message)
1035 f++;
1036 if (fixup_message)
1037 f++;
1038 if (logfile)
1039 f++;
1040 if (f > 1)
1041 die(_("Only one of -c/-C/-F/--fixup can be used."));
1042 if (message.len && f > 0)
1043 die((_("Option -m cannot be combined with -c/-C/-F/--fixup.")));
1044 if (edit_message)
1045 use_message = edit_message;
1046 if (amend && !use_message && !fixup_message)
1047 use_message = "HEAD";
1048 if (!use_message && whence != FROM_CHERRY_PICK && renew_authorship)
1049 die(_("--reset-author can be used only with -C, -c or --amend."));
1050 if (use_message) {
1051 use_message_buffer = read_commit_message(use_message);
1052 if (!renew_authorship) {
1053 author_message = use_message;
1054 author_message_buffer = use_message_buffer;
1057 if (whence == FROM_CHERRY_PICK && !renew_authorship) {
1058 author_message = "CHERRY_PICK_HEAD";
1059 author_message_buffer = read_commit_message(author_message);
1062 if (patch_interactive)
1063 interactive = 1;
1065 if (!!also + !!only + !!all + !!interactive > 1)
1066 die(_("Only one of --include/--only/--all/--interactive/--patch can be used."));
1067 if (argc == 0 && (also || (only && !amend)))
1068 die(_("No paths with --include/--only does not make sense."));
1069 if (argc == 0 && only && amend)
1070 only_include_assumed = _("Clever... amending the last one with dirty index.");
1071 if (argc > 0 && !also && !only)
1072 only_include_assumed = _("Explicit paths specified without -i nor -o; assuming --only paths...");
1073 if (!cleanup_arg || !strcmp(cleanup_arg, "default"))
1074 cleanup_mode = use_editor ? CLEANUP_ALL : CLEANUP_SPACE;
1075 else if (!strcmp(cleanup_arg, "verbatim"))
1076 cleanup_mode = CLEANUP_NONE;
1077 else if (!strcmp(cleanup_arg, "whitespace"))
1078 cleanup_mode = CLEANUP_SPACE;
1079 else if (!strcmp(cleanup_arg, "strip"))
1080 cleanup_mode = CLEANUP_ALL;
1081 else
1082 die(_("Invalid cleanup mode %s"), cleanup_arg);
1084 handle_untracked_files_arg(s);
1086 if (all && argc > 0)
1087 die(_("Paths with -a does not make sense."));
1089 if (null_termination && status_format == STATUS_FORMAT_LONG)
1090 status_format = STATUS_FORMAT_PORCELAIN;
1091 if (status_format != STATUS_FORMAT_LONG)
1092 dry_run = 1;
1094 return argc;
1097 static int dry_run_commit(int argc, const char **argv, const char *prefix,
1098 const struct commit *current_head, struct wt_status *s)
1100 int commitable;
1101 const char *index_file;
1103 index_file = prepare_index(argc, argv, prefix, current_head, 1);
1104 commitable = run_status(stdout, index_file, prefix, 0, s);
1105 rollback_index_files();
1107 return commitable ? 0 : 1;
1110 static int parse_status_slot(const char *var, int offset)
1112 if (!strcasecmp(var+offset, "header"))
1113 return WT_STATUS_HEADER;
1114 if (!strcasecmp(var+offset, "branch"))
1115 return WT_STATUS_ONBRANCH;
1116 if (!strcasecmp(var+offset, "updated")
1117 || !strcasecmp(var+offset, "added"))
1118 return WT_STATUS_UPDATED;
1119 if (!strcasecmp(var+offset, "changed"))
1120 return WT_STATUS_CHANGED;
1121 if (!strcasecmp(var+offset, "untracked"))
1122 return WT_STATUS_UNTRACKED;
1123 if (!strcasecmp(var+offset, "nobranch"))
1124 return WT_STATUS_NOBRANCH;
1125 if (!strcasecmp(var+offset, "unmerged"))
1126 return WT_STATUS_UNMERGED;
1127 return -1;
1130 static int git_status_config(const char *k, const char *v, void *cb)
1132 struct wt_status *s = cb;
1134 if (!strcmp(k, "status.submodulesummary")) {
1135 int is_bool;
1136 s->submodule_summary = git_config_bool_or_int(k, v, &is_bool);
1137 if (is_bool && s->submodule_summary)
1138 s->submodule_summary = -1;
1139 return 0;
1141 if (!strcmp(k, "status.color") || !strcmp(k, "color.status")) {
1142 s->use_color = git_config_colorbool(k, v);
1143 return 0;
1145 if (!prefixcmp(k, "status.color.") || !prefixcmp(k, "color.status.")) {
1146 int slot = parse_status_slot(k, 13);
1147 if (slot < 0)
1148 return 0;
1149 if (!v)
1150 return config_error_nonbool(k);
1151 color_parse(v, k, s->color_palette[slot]);
1152 return 0;
1154 if (!strcmp(k, "status.relativepaths")) {
1155 s->relative_paths = git_config_bool(k, v);
1156 return 0;
1158 if (!strcmp(k, "status.showuntrackedfiles")) {
1159 if (!v)
1160 return config_error_nonbool(k);
1161 else if (!strcmp(v, "no"))
1162 s->show_untracked_files = SHOW_NO_UNTRACKED_FILES;
1163 else if (!strcmp(v, "normal"))
1164 s->show_untracked_files = SHOW_NORMAL_UNTRACKED_FILES;
1165 else if (!strcmp(v, "all"))
1166 s->show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
1167 else
1168 return error(_("Invalid untracked files mode '%s'"), v);
1169 return 0;
1171 return git_diff_ui_config(k, v, NULL);
1174 int cmd_status(int argc, const char **argv, const char *prefix)
1176 struct wt_status s;
1177 int fd;
1178 unsigned char sha1[20];
1179 static struct option builtin_status_options[] = {
1180 OPT__VERBOSE(&verbose, "be verbose"),
1181 OPT_SET_INT('s', "short", &status_format,
1182 "show status concisely", STATUS_FORMAT_SHORT),
1183 OPT_BOOLEAN('b', "branch", &status_show_branch,
1184 "show branch information"),
1185 OPT_SET_INT(0, "porcelain", &status_format,
1186 "machine-readable output",
1187 STATUS_FORMAT_PORCELAIN),
1188 OPT_BOOLEAN('z', "null", &null_termination,
1189 "terminate entries with NUL"),
1190 { OPTION_STRING, 'u', "untracked-files", &untracked_files_arg,
1191 "mode",
1192 "show untracked files, optional modes: all, normal, no. (Default: all)",
1193 PARSE_OPT_OPTARG, NULL, (intptr_t)"all" },
1194 OPT_BOOLEAN(0, "ignored", &show_ignored_in_status,
1195 "show ignored files"),
1196 { OPTION_STRING, 0, "ignore-submodules", &ignore_submodule_arg, "when",
1197 "ignore changes to submodules, optional when: all, dirty, untracked. (Default: all)",
1198 PARSE_OPT_OPTARG, NULL, (intptr_t)"all" },
1199 OPT_END(),
1202 if (argc == 2 && !strcmp(argv[1], "-h"))
1203 usage_with_options(builtin_status_usage, builtin_status_options);
1205 wt_status_prepare(&s);
1206 gitmodules_config();
1207 git_config(git_status_config, &s);
1208 determine_whence(&s);
1209 argc = parse_options(argc, argv, prefix,
1210 builtin_status_options,
1211 builtin_status_usage, 0);
1213 if (null_termination && status_format == STATUS_FORMAT_LONG)
1214 status_format = STATUS_FORMAT_PORCELAIN;
1216 handle_untracked_files_arg(&s);
1217 if (show_ignored_in_status)
1218 s.show_ignored_files = 1;
1219 if (*argv)
1220 s.pathspec = get_pathspec(prefix, argv);
1222 read_cache_preload(s.pathspec);
1223 refresh_index(&the_index, REFRESH_QUIET|REFRESH_UNMERGED, s.pathspec, NULL, NULL);
1225 fd = hold_locked_index(&index_lock, 0);
1226 if (0 <= fd)
1227 update_index_if_able(&the_index, &index_lock);
1229 s.is_initial = get_sha1(s.reference, sha1) ? 1 : 0;
1230 s.ignore_submodule_arg = ignore_submodule_arg;
1231 wt_status_collect(&s);
1233 if (s.relative_paths)
1234 s.prefix = prefix;
1236 switch (status_format) {
1237 case STATUS_FORMAT_SHORT:
1238 wt_shortstatus_print(&s, null_termination, status_show_branch);
1239 break;
1240 case STATUS_FORMAT_PORCELAIN:
1241 wt_porcelain_print(&s, null_termination);
1242 break;
1243 case STATUS_FORMAT_LONG:
1244 s.verbose = verbose;
1245 s.ignore_submodule_arg = ignore_submodule_arg;
1246 wt_status_print(&s);
1247 break;
1249 return 0;
1252 static void print_summary(const char *prefix, const unsigned char *sha1,
1253 int initial_commit)
1255 struct rev_info rev;
1256 struct commit *commit;
1257 struct strbuf format = STRBUF_INIT;
1258 unsigned char junk_sha1[20];
1259 const char *head = resolve_ref("HEAD", junk_sha1, 0, NULL);
1260 struct pretty_print_context pctx = {0};
1261 struct strbuf author_ident = STRBUF_INIT;
1262 struct strbuf committer_ident = STRBUF_INIT;
1264 commit = lookup_commit(sha1);
1265 if (!commit)
1266 die(_("couldn't look up newly created commit"));
1267 if (!commit || parse_commit(commit))
1268 die(_("could not parse newly created commit"));
1270 strbuf_addstr(&format, "format:%h] %s");
1272 format_commit_message(commit, "%an <%ae>", &author_ident, &pctx);
1273 format_commit_message(commit, "%cn <%ce>", &committer_ident, &pctx);
1274 if (strbuf_cmp(&author_ident, &committer_ident)) {
1275 strbuf_addstr(&format, "\n Author: ");
1276 strbuf_addbuf_percentquote(&format, &author_ident);
1278 if (!user_ident_sufficiently_given()) {
1279 strbuf_addstr(&format, "\n Committer: ");
1280 strbuf_addbuf_percentquote(&format, &committer_ident);
1281 if (advice_implicit_identity) {
1282 strbuf_addch(&format, '\n');
1283 strbuf_addstr(&format, _(implicit_ident_advice));
1286 strbuf_release(&author_ident);
1287 strbuf_release(&committer_ident);
1289 init_revisions(&rev, prefix);
1290 setup_revisions(0, NULL, &rev, NULL);
1292 rev.diff = 1;
1293 rev.diffopt.output_format =
1294 DIFF_FORMAT_SHORTSTAT | DIFF_FORMAT_SUMMARY;
1296 rev.verbose_header = 1;
1297 rev.show_root_diff = 1;
1298 get_commit_format(format.buf, &rev);
1299 rev.always_show_header = 0;
1300 rev.diffopt.detect_rename = 1;
1301 rev.diffopt.break_opt = 0;
1302 diff_setup_done(&rev.diffopt);
1304 printf("[%s%s ",
1305 !prefixcmp(head, "refs/heads/") ?
1306 head + 11 :
1307 !strcmp(head, "HEAD") ?
1308 _("detached HEAD") :
1309 head,
1310 initial_commit ? _(" (root-commit)") : "");
1312 if (!log_tree_commit(&rev, commit)) {
1313 rev.always_show_header = 1;
1314 rev.use_terminator = 1;
1315 log_tree_commit(&rev, commit);
1318 strbuf_release(&format);
1321 static int git_commit_config(const char *k, const char *v, void *cb)
1323 struct wt_status *s = cb;
1325 if (!strcmp(k, "commit.template"))
1326 return git_config_pathname(&template_file, k, v);
1327 if (!strcmp(k, "commit.status")) {
1328 include_status = git_config_bool(k, v);
1329 return 0;
1332 return git_status_config(k, v, s);
1335 static const char post_rewrite_hook[] = "hooks/post-rewrite";
1337 static int run_rewrite_hook(const unsigned char *oldsha1,
1338 const unsigned char *newsha1)
1340 /* oldsha1 SP newsha1 LF NUL */
1341 static char buf[2*40 + 3];
1342 struct child_process proc;
1343 const char *argv[3];
1344 int code;
1345 size_t n;
1347 if (access(git_path(post_rewrite_hook), X_OK) < 0)
1348 return 0;
1350 argv[0] = git_path(post_rewrite_hook);
1351 argv[1] = "amend";
1352 argv[2] = NULL;
1354 memset(&proc, 0, sizeof(proc));
1355 proc.argv = argv;
1356 proc.in = -1;
1357 proc.stdout_to_stderr = 1;
1359 code = start_command(&proc);
1360 if (code)
1361 return code;
1362 n = snprintf(buf, sizeof(buf), "%s %s\n",
1363 sha1_to_hex(oldsha1), sha1_to_hex(newsha1));
1364 write_in_full(proc.in, buf, n);
1365 close(proc.in);
1366 return finish_command(&proc);
1369 int cmd_commit(int argc, const char **argv, const char *prefix)
1371 struct strbuf sb = STRBUF_INIT;
1372 struct strbuf author_ident = STRBUF_INIT;
1373 const char *index_file, *reflog_msg;
1374 char *nl, *p;
1375 unsigned char sha1[20];
1376 struct ref_lock *ref_lock;
1377 struct commit_list *parents = NULL, **pptr = &parents;
1378 struct stat statbuf;
1379 int allow_fast_forward = 1;
1380 struct wt_status s;
1381 struct commit *current_head = NULL;
1383 if (argc == 2 && !strcmp(argv[1], "-h"))
1384 usage_with_options(builtin_commit_usage, builtin_commit_options);
1386 wt_status_prepare(&s);
1387 git_config(git_commit_config, &s);
1388 determine_whence(&s);
1390 if (get_sha1("HEAD", sha1))
1391 current_head = NULL;
1392 else {
1393 current_head = lookup_commit_or_die(sha1, "HEAD");
1394 if (!current_head || parse_commit(current_head))
1395 die(_("could not parse HEAD commit"));
1397 argc = parse_and_validate_options(argc, argv, builtin_commit_usage,
1398 prefix, current_head, &s);
1399 if (dry_run)
1400 return dry_run_commit(argc, argv, prefix, current_head, &s);
1401 index_file = prepare_index(argc, argv, prefix, current_head, 0);
1403 /* Set up everything for writing the commit object. This includes
1404 running hooks, writing the trees, and interacting with the user. */
1405 if (!prepare_to_commit(index_file, prefix,
1406 current_head, &s, &author_ident)) {
1407 rollback_index_files();
1408 return 1;
1411 /* Determine parents */
1412 reflog_msg = getenv("GIT_REFLOG_ACTION");
1413 if (!current_head) {
1414 if (!reflog_msg)
1415 reflog_msg = "commit (initial)";
1416 } else if (amend) {
1417 struct commit_list *c;
1419 if (!reflog_msg)
1420 reflog_msg = "commit (amend)";
1421 for (c = current_head->parents; c; c = c->next)
1422 pptr = &commit_list_insert(c->item, pptr)->next;
1423 } else if (whence == FROM_MERGE) {
1424 struct strbuf m = STRBUF_INIT;
1425 struct commit *commit;
1426 FILE *fp;
1428 if (!reflog_msg)
1429 reflog_msg = "commit (merge)";
1430 pptr = &commit_list_insert(current_head, pptr)->next;
1431 fp = fopen(git_path("MERGE_HEAD"), "r");
1432 if (fp == NULL)
1433 die_errno(_("could not open '%s' for reading"),
1434 git_path("MERGE_HEAD"));
1435 while (strbuf_getline(&m, fp, '\n') != EOF) {
1436 unsigned char sha1[20];
1437 if (get_sha1_hex(m.buf, sha1) < 0)
1438 die(_("Corrupt MERGE_HEAD file (%s)"), m.buf);
1439 commit = lookup_commit_or_die(sha1, "MERGE_HEAD");
1440 pptr = &commit_list_insert(commit, pptr)->next;
1442 fclose(fp);
1443 strbuf_release(&m);
1444 if (!stat(git_path("MERGE_MODE"), &statbuf)) {
1445 if (strbuf_read_file(&sb, git_path("MERGE_MODE"), 0) < 0)
1446 die_errno(_("could not read MERGE_MODE"));
1447 if (!strcmp(sb.buf, "no-ff"))
1448 allow_fast_forward = 0;
1450 if (allow_fast_forward)
1451 parents = reduce_heads(parents);
1452 } else {
1453 if (!reflog_msg)
1454 reflog_msg = (whence == FROM_CHERRY_PICK)
1455 ? "commit (cherry-pick)"
1456 : "commit";
1457 pptr = &commit_list_insert(current_head, pptr)->next;
1460 /* Finally, get the commit message */
1461 strbuf_reset(&sb);
1462 if (strbuf_read_file(&sb, git_path(commit_editmsg), 0) < 0) {
1463 int saved_errno = errno;
1464 rollback_index_files();
1465 die(_("could not read commit message: %s"), strerror(saved_errno));
1468 /* Truncate the message just before the diff, if any. */
1469 if (verbose) {
1470 p = strstr(sb.buf, "\ndiff --git ");
1471 if (p != NULL)
1472 strbuf_setlen(&sb, p - sb.buf + 1);
1475 if (cleanup_mode != CLEANUP_NONE)
1476 stripspace(&sb, cleanup_mode == CLEANUP_ALL);
1477 if (message_is_empty(&sb) && !allow_empty_message) {
1478 rollback_index_files();
1479 fprintf(stderr, _("Aborting commit due to empty commit message.\n"));
1480 exit(1);
1483 if (commit_tree(sb.buf, active_cache_tree->sha1, parents, sha1,
1484 author_ident.buf)) {
1485 rollback_index_files();
1486 die(_("failed to write commit object"));
1488 strbuf_release(&author_ident);
1490 ref_lock = lock_any_ref_for_update("HEAD",
1491 !current_head
1492 ? NULL
1493 : current_head->object.sha1,
1496 nl = strchr(sb.buf, '\n');
1497 if (nl)
1498 strbuf_setlen(&sb, nl + 1 - sb.buf);
1499 else
1500 strbuf_addch(&sb, '\n');
1501 strbuf_insert(&sb, 0, reflog_msg, strlen(reflog_msg));
1502 strbuf_insert(&sb, strlen(reflog_msg), ": ", 2);
1504 if (!ref_lock) {
1505 rollback_index_files();
1506 die(_("cannot lock HEAD ref"));
1508 if (write_ref_sha1(ref_lock, sha1, sb.buf) < 0) {
1509 rollback_index_files();
1510 die(_("cannot update HEAD ref"));
1513 unlink(git_path("CHERRY_PICK_HEAD"));
1514 unlink(git_path("REVERT_HEAD"));
1515 unlink(git_path("MERGE_HEAD"));
1516 unlink(git_path("MERGE_MSG"));
1517 unlink(git_path("MERGE_MODE"));
1518 unlink(git_path("SQUASH_MSG"));
1520 if (commit_index_files())
1521 die (_("Repository has been updated, but unable to write\n"
1522 "new_index file. Check that disk is not full or quota is\n"
1523 "not exceeded, and then \"git reset HEAD\" to recover."));
1525 rerere(0);
1526 run_hook(get_index_file(), "post-commit", NULL);
1527 if (amend && !no_post_rewrite) {
1528 struct notes_rewrite_cfg *cfg;
1529 cfg = init_copy_notes_for_rewrite("amend");
1530 if (cfg) {
1531 /* we are amending, so current_head is not NULL */
1532 copy_note_for_rewrite(cfg, current_head->object.sha1, sha1);
1533 finish_copy_notes_for_rewrite(cfg);
1535 run_rewrite_hook(current_head->object.sha1, sha1);
1537 if (!quiet)
1538 print_summary(prefix, sha1, !current_head);
1540 return 0;