hooks: fix a TOCTOU in "did we run a hook?" heuristic
[git] / builtin / commit.c
1 /*
2  * Builtin "git commit"
3  *
4  * Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>
5  * Based on git-commit.sh by Junio C Hamano and Linus Torvalds
6  */
7
8 #define USE_THE_INDEX_COMPATIBILITY_MACROS
9 #include "cache.h"
10 #include "config.h"
11 #include "lockfile.h"
12 #include "cache-tree.h"
13 #include "color.h"
14 #include "dir.h"
15 #include "builtin.h"
16 #include "diff.h"
17 #include "diffcore.h"
18 #include "commit.h"
19 #include "revision.h"
20 #include "wt-status.h"
21 #include "run-command.h"
22 #include "hook.h"
23 #include "refs.h"
24 #include "log-tree.h"
25 #include "strbuf.h"
26 #include "utf8.h"
27 #include "parse-options.h"
28 #include "string-list.h"
29 #include "rerere.h"
30 #include "unpack-trees.h"
31 #include "quote.h"
32 #include "submodule.h"
33 #include "gpg-interface.h"
34 #include "column.h"
35 #include "sequencer.h"
36 #include "mailmap.h"
37 #include "help.h"
38 #include "commit-reach.h"
39 #include "commit-graph.h"
40
41 static const char * const builtin_commit_usage[] = {
42         N_("git commit [<options>] [--] <pathspec>..."),
43         NULL
44 };
45
46 static const char * const builtin_status_usage[] = {
47         N_("git status [<options>] [--] <pathspec>..."),
48         NULL
49 };
50
51 static const char empty_amend_advice[] =
52 N_("You asked to amend the most recent commit, but doing so would make\n"
53 "it empty. You can repeat your command with --allow-empty, or you can\n"
54 "remove the commit entirely with \"git reset HEAD^\".\n");
55
56 static const char empty_cherry_pick_advice[] =
57 N_("The previous cherry-pick is now empty, possibly due to conflict resolution.\n"
58 "If you wish to commit it anyway, use:\n"
59 "\n"
60 "    git commit --allow-empty\n"
61 "\n");
62
63 static const char empty_rebase_pick_advice[] =
64 N_("Otherwise, please use 'git rebase --skip'\n");
65
66 static const char empty_cherry_pick_advice_single[] =
67 N_("Otherwise, please use 'git cherry-pick --skip'\n");
68
69 static const char empty_cherry_pick_advice_multi[] =
70 N_("and then use:\n"
71 "\n"
72 "    git cherry-pick --continue\n"
73 "\n"
74 "to resume cherry-picking the remaining commits.\n"
75 "If you wish to skip this commit, use:\n"
76 "\n"
77 "    git cherry-pick --skip\n"
78 "\n");
79
80 static const char *color_status_slots[] = {
81         [WT_STATUS_HEADER]        = "header",
82         [WT_STATUS_UPDATED]       = "updated",
83         [WT_STATUS_CHANGED]       = "changed",
84         [WT_STATUS_UNTRACKED]     = "untracked",
85         [WT_STATUS_NOBRANCH]      = "noBranch",
86         [WT_STATUS_UNMERGED]      = "unmerged",
87         [WT_STATUS_LOCAL_BRANCH]  = "localBranch",
88         [WT_STATUS_REMOTE_BRANCH] = "remoteBranch",
89         [WT_STATUS_ONBRANCH]      = "branch",
90 };
91
92 static const char *use_message_buffer;
93 static struct lock_file index_lock; /* real index */
94 static struct lock_file false_lock; /* used only for partial commits */
95 static enum {
96         COMMIT_AS_IS = 1,
97         COMMIT_NORMAL,
98         COMMIT_PARTIAL
99 } commit_style;
100
101 static const char *logfile, *force_author;
102 static const char *template_file;
103 /*
104  * The _message variables are commit names from which to take
105  * the commit message and/or authorship.
106  */
107 static const char *author_message, *author_message_buffer;
108 static char *edit_message, *use_message;
109 static char *fixup_message, *fixup_commit, *squash_message;
110 static const char *fixup_prefix;
111 static int all, also, interactive, patch_interactive, only, amend, signoff;
112 static int edit_flag = -1; /* unspecified */
113 static int quiet, verbose, no_verify, allow_empty, dry_run, renew_authorship;
114 static int config_commit_verbose = -1; /* unspecified */
115 static int no_post_rewrite, allow_empty_message, pathspec_file_nul;
116 static char *untracked_files_arg, *force_date, *ignore_submodule_arg, *ignored_arg;
117 static char *sign_commit, *pathspec_from_file;
118 static struct strvec trailer_args = STRVEC_INIT;
119
120 /*
121  * The default commit message cleanup mode will remove the lines
122  * beginning with # (shell comments) and leading and trailing
123  * whitespaces (empty lines or containing only whitespaces)
124  * if editor is used, and only the whitespaces if the message
125  * is specified explicitly.
126  */
127 static enum commit_msg_cleanup_mode cleanup_mode;
128 static const char *cleanup_arg;
129
130 static enum commit_whence whence;
131 static int use_editor = 1, include_status = 1;
132 static int have_option_m;
133 static struct strbuf message = STRBUF_INIT;
134
135 static enum wt_status_format status_format = STATUS_FORMAT_UNSPECIFIED;
136
137 static int opt_pass_trailer(const struct option *opt, const char *arg, int unset)
138 {
139         BUG_ON_OPT_NEG(unset);
140
141         strvec_pushl(&trailer_args, "--trailer", arg, NULL);
142         return 0;
143 }
144
145 static int opt_parse_porcelain(const struct option *opt, const char *arg, int unset)
146 {
147         enum wt_status_format *value = (enum wt_status_format *)opt->value;
148         if (unset)
149                 *value = STATUS_FORMAT_NONE;
150         else if (!arg)
151                 *value = STATUS_FORMAT_PORCELAIN;
152         else if (!strcmp(arg, "v1") || !strcmp(arg, "1"))
153                 *value = STATUS_FORMAT_PORCELAIN;
154         else if (!strcmp(arg, "v2") || !strcmp(arg, "2"))
155                 *value = STATUS_FORMAT_PORCELAIN_V2;
156         else
157                 die("unsupported porcelain version '%s'", arg);
158
159         return 0;
160 }
161
162 static int opt_parse_m(const struct option *opt, const char *arg, int unset)
163 {
164         struct strbuf *buf = opt->value;
165         if (unset) {
166                 have_option_m = 0;
167                 strbuf_setlen(buf, 0);
168         } else {
169                 have_option_m = 1;
170                 if (buf->len)
171                         strbuf_addch(buf, '\n');
172                 strbuf_addstr(buf, arg);
173                 strbuf_complete_line(buf);
174         }
175         return 0;
176 }
177
178 static int opt_parse_rename_score(const struct option *opt, const char *arg, int unset)
179 {
180         const char **value = opt->value;
181
182         BUG_ON_OPT_NEG(unset);
183
184         if (arg != NULL && *arg == '=')
185                 arg = arg + 1;
186
187         *value = arg;
188         return 0;
189 }
190
191 static void determine_whence(struct wt_status *s)
192 {
193         if (file_exists(git_path_merge_head(the_repository)))
194                 whence = FROM_MERGE;
195         else if (!sequencer_determine_whence(the_repository, &whence))
196                 whence = FROM_COMMIT;
197         if (s)
198                 s->whence = whence;
199 }
200
201 static void status_init_config(struct wt_status *s, config_fn_t fn)
202 {
203         wt_status_prepare(the_repository, s);
204         init_diff_ui_defaults();
205         git_config(fn, s);
206         determine_whence(s);
207         s->hints = advice_status_hints; /* must come after git_config() */
208 }
209
210 static void rollback_index_files(void)
211 {
212         switch (commit_style) {
213         case COMMIT_AS_IS:
214                 break; /* nothing to do */
215         case COMMIT_NORMAL:
216                 rollback_lock_file(&index_lock);
217                 break;
218         case COMMIT_PARTIAL:
219                 rollback_lock_file(&index_lock);
220                 rollback_lock_file(&false_lock);
221                 break;
222         }
223 }
224
225 static int commit_index_files(void)
226 {
227         int err = 0;
228
229         switch (commit_style) {
230         case COMMIT_AS_IS:
231                 break; /* nothing to do */
232         case COMMIT_NORMAL:
233                 err = commit_lock_file(&index_lock);
234                 break;
235         case COMMIT_PARTIAL:
236                 err = commit_lock_file(&index_lock);
237                 rollback_lock_file(&false_lock);
238                 break;
239         }
240
241         return err;
242 }
243
244 /*
245  * Take a union of paths in the index and the named tree (typically, "HEAD"),
246  * and return the paths that match the given pattern in list.
247  */
248 static int list_paths(struct string_list *list, const char *with_tree,
249                       const struct pathspec *pattern)
250 {
251         int i, ret;
252         char *m;
253
254         if (!pattern->nr)
255                 return 0;
256
257         m = xcalloc(1, pattern->nr);
258
259         if (with_tree) {
260                 char *max_prefix = common_prefix(pattern);
261                 overlay_tree_on_index(&the_index, with_tree, max_prefix);
262                 free(max_prefix);
263         }
264
265         /* TODO: audit for interaction with sparse-index. */
266         ensure_full_index(&the_index);
267         for (i = 0; i < active_nr; i++) {
268                 const struct cache_entry *ce = active_cache[i];
269                 struct string_list_item *item;
270
271                 if (ce->ce_flags & CE_UPDATE)
272                         continue;
273                 if (!ce_path_match(&the_index, ce, pattern, m))
274                         continue;
275                 item = string_list_insert(list, ce->name);
276                 if (ce_skip_worktree(ce))
277                         item->util = item; /* better a valid pointer than a fake one */
278         }
279
280         ret = report_path_error(m, pattern);
281         free(m);
282         return ret;
283 }
284
285 static void add_remove_files(struct string_list *list)
286 {
287         int i;
288         for (i = 0; i < list->nr; i++) {
289                 struct stat st;
290                 struct string_list_item *p = &(list->items[i]);
291
292                 /* p->util is skip-worktree */
293                 if (p->util)
294                         continue;
295
296                 if (!lstat(p->string, &st)) {
297                         if (add_to_cache(p->string, &st, 0))
298                                 die(_("updating files failed"));
299                 } else
300                         remove_file_from_cache(p->string);
301         }
302 }
303
304 static void create_base_index(const struct commit *current_head)
305 {
306         struct tree *tree;
307         struct unpack_trees_options opts;
308         struct tree_desc t;
309
310         if (!current_head) {
311                 discard_cache();
312                 return;
313         }
314
315         memset(&opts, 0, sizeof(opts));
316         opts.head_idx = 1;
317         opts.index_only = 1;
318         opts.merge = 1;
319         opts.src_index = &the_index;
320         opts.dst_index = &the_index;
321
322         opts.fn = oneway_merge;
323         tree = parse_tree_indirect(&current_head->object.oid);
324         if (!tree)
325                 die(_("failed to unpack HEAD tree object"));
326         parse_tree(tree);
327         init_tree_desc(&t, tree->buffer, tree->size);
328         if (unpack_trees(1, &t, &opts))
329                 exit(128); /* We've already reported the error, finish dying */
330 }
331
332 static void refresh_cache_or_die(int refresh_flags)
333 {
334         /*
335          * refresh_flags contains REFRESH_QUIET, so the only errors
336          * are for unmerged entries.
337          */
338         if (refresh_cache(refresh_flags | REFRESH_IN_PORCELAIN))
339                 die_resolve_conflict("commit");
340 }
341
342 static const char *prepare_index(const char **argv, const char *prefix,
343                                  const struct commit *current_head, int is_status)
344 {
345         struct string_list partial = STRING_LIST_INIT_DUP;
346         struct pathspec pathspec;
347         int refresh_flags = REFRESH_QUIET;
348         const char *ret;
349
350         if (is_status)
351                 refresh_flags |= REFRESH_UNMERGED;
352         parse_pathspec(&pathspec, 0,
353                        PATHSPEC_PREFER_FULL,
354                        prefix, argv);
355
356         if (pathspec_from_file) {
357                 if (interactive)
358                         die(_("--pathspec-from-file is incompatible with --interactive/--patch"));
359
360                 if (all)
361                         die(_("--pathspec-from-file with -a does not make sense"));
362
363                 if (pathspec.nr)
364                         die(_("--pathspec-from-file is incompatible with pathspec arguments"));
365
366                 parse_pathspec_file(&pathspec, 0,
367                                     PATHSPEC_PREFER_FULL,
368                                     prefix, pathspec_from_file, pathspec_file_nul);
369         } else if (pathspec_file_nul) {
370                 die(_("--pathspec-file-nul requires --pathspec-from-file"));
371         }
372
373         if (!pathspec.nr && (also || (only && !allow_empty &&
374             (!amend || (fixup_message && strcmp(fixup_prefix, "amend"))))))
375                 die(_("No paths with --include/--only does not make sense."));
376
377         if (read_cache_preload(&pathspec) < 0)
378                 die(_("index file corrupt"));
379
380         if (interactive) {
381                 char *old_index_env = NULL, *old_repo_index_file;
382                 hold_locked_index(&index_lock, LOCK_DIE_ON_ERROR);
383
384                 refresh_cache_or_die(refresh_flags);
385
386                 if (write_locked_index(&the_index, &index_lock, 0))
387                         die(_("unable to create temporary index"));
388
389                 old_repo_index_file = the_repository->index_file;
390                 the_repository->index_file =
391                         (char *)get_lock_file_path(&index_lock);
392                 old_index_env = xstrdup_or_null(getenv(INDEX_ENVIRONMENT));
393                 setenv(INDEX_ENVIRONMENT, the_repository->index_file, 1);
394
395                 if (interactive_add(argv, prefix, patch_interactive) != 0)
396                         die(_("interactive add failed"));
397
398                 the_repository->index_file = old_repo_index_file;
399                 if (old_index_env && *old_index_env)
400                         setenv(INDEX_ENVIRONMENT, old_index_env, 1);
401                 else
402                         unsetenv(INDEX_ENVIRONMENT);
403                 FREE_AND_NULL(old_index_env);
404
405                 discard_cache();
406                 read_cache_from(get_lock_file_path(&index_lock));
407                 if (update_main_cache_tree(WRITE_TREE_SILENT) == 0) {
408                         if (reopen_lock_file(&index_lock) < 0)
409                                 die(_("unable to write index file"));
410                         if (write_locked_index(&the_index, &index_lock, 0))
411                                 die(_("unable to update temporary index"));
412                 } else
413                         warning(_("Failed to update main cache tree"));
414
415                 commit_style = COMMIT_NORMAL;
416                 ret = get_lock_file_path(&index_lock);
417                 goto out;
418         }
419
420         /*
421          * Non partial, non as-is commit.
422          *
423          * (1) get the real index;
424          * (2) update the_index as necessary;
425          * (3) write the_index out to the real index (still locked);
426          * (4) return the name of the locked index file.
427          *
428          * The caller should run hooks on the locked real index, and
429          * (A) if all goes well, commit the real index;
430          * (B) on failure, rollback the real index.
431          */
432         if (all || (also && pathspec.nr)) {
433                 hold_locked_index(&index_lock, LOCK_DIE_ON_ERROR);
434                 add_files_to_cache(also ? prefix : NULL, &pathspec, 0);
435                 refresh_cache_or_die(refresh_flags);
436                 update_main_cache_tree(WRITE_TREE_SILENT);
437                 if (write_locked_index(&the_index, &index_lock, 0))
438                         die(_("unable to write new_index file"));
439                 commit_style = COMMIT_NORMAL;
440                 ret = get_lock_file_path(&index_lock);
441                 goto out;
442         }
443
444         /*
445          * As-is commit.
446          *
447          * (1) return the name of the real index file.
448          *
449          * The caller should run hooks on the real index,
450          * and create commit from the_index.
451          * We still need to refresh the index here.
452          */
453         if (!only && !pathspec.nr) {
454                 hold_locked_index(&index_lock, LOCK_DIE_ON_ERROR);
455                 refresh_cache_or_die(refresh_flags);
456                 if (active_cache_changed
457                     || !cache_tree_fully_valid(active_cache_tree))
458                         update_main_cache_tree(WRITE_TREE_SILENT);
459                 if (write_locked_index(&the_index, &index_lock,
460                                        COMMIT_LOCK | SKIP_IF_UNCHANGED))
461                         die(_("unable to write new_index file"));
462                 commit_style = COMMIT_AS_IS;
463                 ret = get_index_file();
464                 goto out;
465         }
466
467         /*
468          * A partial commit.
469          *
470          * (0) find the set of affected paths;
471          * (1) get lock on the real index file;
472          * (2) update the_index with the given paths;
473          * (3) write the_index out to the real index (still locked);
474          * (4) get lock on the false index file;
475          * (5) reset the_index from HEAD;
476          * (6) update the_index the same way as (2);
477          * (7) write the_index out to the false index file;
478          * (8) return the name of the false index file (still locked);
479          *
480          * The caller should run hooks on the locked false index, and
481          * create commit from it.  Then
482          * (A) if all goes well, commit the real index;
483          * (B) on failure, rollback the real index;
484          * In either case, rollback the false index.
485          */
486         commit_style = COMMIT_PARTIAL;
487
488         if (whence != FROM_COMMIT) {
489                 if (whence == FROM_MERGE)
490                         die(_("cannot do a partial commit during a merge."));
491                 else if (is_from_cherry_pick(whence))
492                         die(_("cannot do a partial commit during a cherry-pick."));
493                 else if (is_from_rebase(whence))
494                         die(_("cannot do a partial commit during a rebase."));
495         }
496
497         if (list_paths(&partial, !current_head ? NULL : "HEAD", &pathspec))
498                 exit(1);
499
500         discard_cache();
501         if (read_cache() < 0)
502                 die(_("cannot read the index"));
503
504         hold_locked_index(&index_lock, LOCK_DIE_ON_ERROR);
505         add_remove_files(&partial);
506         refresh_cache(REFRESH_QUIET);
507         update_main_cache_tree(WRITE_TREE_SILENT);
508         if (write_locked_index(&the_index, &index_lock, 0))
509                 die(_("unable to write new_index file"));
510
511         hold_lock_file_for_update(&false_lock,
512                                   git_path("next-index-%"PRIuMAX,
513                                            (uintmax_t) getpid()),
514                                   LOCK_DIE_ON_ERROR);
515
516         create_base_index(current_head);
517         add_remove_files(&partial);
518         refresh_cache(REFRESH_QUIET);
519
520         if (write_locked_index(&the_index, &false_lock, 0))
521                 die(_("unable to write temporary index file"));
522
523         discard_cache();
524         ret = get_lock_file_path(&false_lock);
525         read_cache_from(ret);
526 out:
527         string_list_clear(&partial, 0);
528         clear_pathspec(&pathspec);
529         return ret;
530 }
531
532 static int run_status(FILE *fp, const char *index_file, const char *prefix, int nowarn,
533                       struct wt_status *s)
534 {
535         struct object_id oid;
536
537         if (s->relative_paths)
538                 s->prefix = prefix;
539
540         if (amend) {
541                 s->amend = 1;
542                 s->reference = "HEAD^1";
543         }
544         s->verbose = verbose;
545         s->index_file = index_file;
546         s->fp = fp;
547         s->nowarn = nowarn;
548         s->is_initial = get_oid(s->reference, &oid) ? 1 : 0;
549         if (!s->is_initial)
550                 oidcpy(&s->oid_commit, &oid);
551         s->status_format = status_format;
552         s->ignore_submodule_arg = ignore_submodule_arg;
553
554         wt_status_collect(s);
555         wt_status_print(s);
556         wt_status_collect_free_buffers(s);
557
558         return s->committable;
559 }
560
561 static int is_a_merge(const struct commit *current_head)
562 {
563         return !!(current_head->parents && current_head->parents->next);
564 }
565
566 static void assert_split_ident(struct ident_split *id, const struct strbuf *buf)
567 {
568         if (split_ident_line(id, buf->buf, buf->len) || !id->date_begin)
569                 BUG("unable to parse our own ident: %s", buf->buf);
570 }
571
572 static void export_one(const char *var, const char *s, const char *e, int hack)
573 {
574         struct strbuf buf = STRBUF_INIT;
575         if (hack)
576                 strbuf_addch(&buf, hack);
577         strbuf_add(&buf, s, e - s);
578         setenv(var, buf.buf, 1);
579         strbuf_release(&buf);
580 }
581
582 static int parse_force_date(const char *in, struct strbuf *out)
583 {
584         strbuf_addch(out, '@');
585
586         if (parse_date(in, out) < 0) {
587                 int errors = 0;
588                 unsigned long t = approxidate_careful(in, &errors);
589                 if (errors)
590                         return -1;
591                 strbuf_addf(out, "%lu", t);
592         }
593
594         return 0;
595 }
596
597 static void set_ident_var(char **buf, char *val)
598 {
599         free(*buf);
600         *buf = val;
601 }
602
603 static void determine_author_info(struct strbuf *author_ident)
604 {
605         char *name, *email, *date;
606         struct ident_split author;
607
608         name = xstrdup_or_null(getenv("GIT_AUTHOR_NAME"));
609         email = xstrdup_or_null(getenv("GIT_AUTHOR_EMAIL"));
610         date = xstrdup_or_null(getenv("GIT_AUTHOR_DATE"));
611
612         if (author_message) {
613                 struct ident_split ident;
614                 size_t len;
615                 const char *a;
616
617                 a = find_commit_header(author_message_buffer, "author", &len);
618                 if (!a)
619                         die(_("commit '%s' lacks author header"), author_message);
620                 if (split_ident_line(&ident, a, len) < 0)
621                         die(_("commit '%s' has malformed author line"), author_message);
622
623                 set_ident_var(&name, xmemdupz(ident.name_begin, ident.name_end - ident.name_begin));
624                 set_ident_var(&email, xmemdupz(ident.mail_begin, ident.mail_end - ident.mail_begin));
625
626                 if (ident.date_begin) {
627                         struct strbuf date_buf = STRBUF_INIT;
628                         strbuf_addch(&date_buf, '@');
629                         strbuf_add(&date_buf, ident.date_begin, ident.date_end - ident.date_begin);
630                         strbuf_addch(&date_buf, ' ');
631                         strbuf_add(&date_buf, ident.tz_begin, ident.tz_end - ident.tz_begin);
632                         set_ident_var(&date, strbuf_detach(&date_buf, NULL));
633                 }
634         }
635
636         if (force_author) {
637                 struct ident_split ident;
638
639                 if (split_ident_line(&ident, force_author, strlen(force_author)) < 0)
640                         die(_("malformed --author parameter"));
641                 set_ident_var(&name, xmemdupz(ident.name_begin, ident.name_end - ident.name_begin));
642                 set_ident_var(&email, xmemdupz(ident.mail_begin, ident.mail_end - ident.mail_begin));
643         }
644
645         if (force_date) {
646                 struct strbuf date_buf = STRBUF_INIT;
647                 if (parse_force_date(force_date, &date_buf))
648                         die(_("invalid date format: %s"), force_date);
649                 set_ident_var(&date, strbuf_detach(&date_buf, NULL));
650         }
651
652         strbuf_addstr(author_ident, fmt_ident(name, email, WANT_AUTHOR_IDENT, date,
653                                 IDENT_STRICT));
654         assert_split_ident(&author, author_ident);
655         export_one("GIT_AUTHOR_NAME", author.name_begin, author.name_end, 0);
656         export_one("GIT_AUTHOR_EMAIL", author.mail_begin, author.mail_end, 0);
657         export_one("GIT_AUTHOR_DATE", author.date_begin, author.tz_end, '@');
658         free(name);
659         free(email);
660         free(date);
661 }
662
663 static int author_date_is_interesting(void)
664 {
665         return author_message || force_date;
666 }
667
668 static void adjust_comment_line_char(const struct strbuf *sb)
669 {
670         char candidates[] = "#;@!$%^&|:";
671         char *candidate;
672         const char *p;
673
674         comment_line_char = candidates[0];
675         if (!memchr(sb->buf, comment_line_char, sb->len))
676                 return;
677
678         p = sb->buf;
679         candidate = strchr(candidates, *p);
680         if (candidate)
681                 *candidate = ' ';
682         for (p = sb->buf; *p; p++) {
683                 if ((p[0] == '\n' || p[0] == '\r') && p[1]) {
684                         candidate = strchr(candidates, p[1]);
685                         if (candidate)
686                                 *candidate = ' ';
687                 }
688         }
689
690         for (p = candidates; *p == ' '; p++)
691                 ;
692         if (!*p)
693                 die(_("unable to select a comment character that is not used\n"
694                       "in the current commit message"));
695         comment_line_char = *p;
696 }
697
698 static void prepare_amend_commit(struct commit *commit, struct strbuf *sb,
699                                 struct pretty_print_context *ctx)
700 {
701         const char *buffer, *subject, *fmt;
702
703         buffer = get_commit_buffer(commit, NULL);
704         find_commit_subject(buffer, &subject);
705         /*
706          * If we amend the 'amend!' commit then we don't want to
707          * duplicate the subject line.
708          */
709         fmt = starts_with(subject, "amend!") ? "%b" : "%B";
710         format_commit_message(commit, fmt, sb, ctx);
711         unuse_commit_buffer(commit, buffer);
712 }
713
714 static int prepare_to_commit(const char *index_file, const char *prefix,
715                              struct commit *current_head,
716                              struct wt_status *s,
717                              struct strbuf *author_ident)
718 {
719         struct stat statbuf;
720         struct strbuf committer_ident = STRBUF_INIT;
721         int committable;
722         struct strbuf sb = STRBUF_INIT;
723         const char *hook_arg1 = NULL;
724         const char *hook_arg2 = NULL;
725         int clean_message_contents = (cleanup_mode != COMMIT_MSG_CLEANUP_NONE);
726         int old_display_comment_prefix;
727         int merge_contains_scissors = 0;
728         int invoked_hook = 0;
729
730         /* This checks and barfs if author is badly specified */
731         determine_author_info(author_ident);
732
733         if (!no_verify && run_commit_hook(use_editor, index_file, &invoked_hook,
734                                           "pre-commit", NULL))
735                 return 0;
736
737         if (squash_message) {
738                 /*
739                  * Insert the proper subject line before other commit
740                  * message options add their content.
741                  */
742                 if (use_message && !strcmp(use_message, squash_message))
743                         strbuf_addstr(&sb, "squash! ");
744                 else {
745                         struct pretty_print_context ctx = {0};
746                         struct commit *c;
747                         c = lookup_commit_reference_by_name(squash_message);
748                         if (!c)
749                                 die(_("could not lookup commit %s"), squash_message);
750                         ctx.output_encoding = get_commit_output_encoding();
751                         format_commit_message(c, "squash! %s\n\n", &sb,
752                                               &ctx);
753                 }
754         }
755
756         if (have_option_m && !fixup_message) {
757                 strbuf_addbuf(&sb, &message);
758                 hook_arg1 = "message";
759         } else if (logfile && !strcmp(logfile, "-")) {
760                 if (isatty(0))
761                         fprintf(stderr, _("(reading log message from standard input)\n"));
762                 if (strbuf_read(&sb, 0, 0) < 0)
763                         die_errno(_("could not read log from standard input"));
764                 hook_arg1 = "message";
765         } else if (logfile) {
766                 if (strbuf_read_file(&sb, logfile, 0) < 0)
767                         die_errno(_("could not read log file '%s'"),
768                                   logfile);
769                 hook_arg1 = "message";
770         } else if (use_message) {
771                 char *buffer;
772                 buffer = strstr(use_message_buffer, "\n\n");
773                 if (buffer)
774                         strbuf_addstr(&sb, skip_blank_lines(buffer + 2));
775                 hook_arg1 = "commit";
776                 hook_arg2 = use_message;
777         } else if (fixup_message) {
778                 struct pretty_print_context ctx = {0};
779                 struct commit *commit;
780                 char *fmt;
781                 commit = lookup_commit_reference_by_name(fixup_commit);
782                 if (!commit)
783                         die(_("could not lookup commit %s"), fixup_commit);
784                 ctx.output_encoding = get_commit_output_encoding();
785                 fmt = xstrfmt("%s! %%s\n\n", fixup_prefix);
786                 format_commit_message(commit, fmt, &sb, &ctx);
787                 free(fmt);
788                 hook_arg1 = "message";
789
790                 /*
791                  * Only `-m` commit message option is checked here, as
792                  * it supports `--fixup` to append the commit message.
793                  *
794                  * The other commit message options `-c`/`-C`/`-F` are
795                  * incompatible with all the forms of `--fixup` and
796                  * have already errored out while parsing the `git commit`
797                  * options.
798                  */
799                 if (have_option_m && !strcmp(fixup_prefix, "fixup"))
800                         strbuf_addbuf(&sb, &message);
801
802                 if (!strcmp(fixup_prefix, "amend")) {
803                         if (have_option_m)
804                                 die(_("cannot combine -m with --fixup:%s"), fixup_message);
805                         prepare_amend_commit(commit, &sb, &ctx);
806                 }
807         } else if (!stat(git_path_merge_msg(the_repository), &statbuf)) {
808                 size_t merge_msg_start;
809
810                 /*
811                  * prepend SQUASH_MSG here if it exists and a
812                  * "merge --squash" was originally performed
813                  */
814                 if (!stat(git_path_squash_msg(the_repository), &statbuf)) {
815                         if (strbuf_read_file(&sb, git_path_squash_msg(the_repository), 0) < 0)
816                                 die_errno(_("could not read SQUASH_MSG"));
817                         hook_arg1 = "squash";
818                 } else
819                         hook_arg1 = "merge";
820
821                 merge_msg_start = sb.len;
822                 if (strbuf_read_file(&sb, git_path_merge_msg(the_repository), 0) < 0)
823                         die_errno(_("could not read MERGE_MSG"));
824
825                 if (cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS &&
826                     wt_status_locate_end(sb.buf + merge_msg_start,
827                                          sb.len - merge_msg_start) <
828                                 sb.len - merge_msg_start)
829                         merge_contains_scissors = 1;
830         } else if (!stat(git_path_squash_msg(the_repository), &statbuf)) {
831                 if (strbuf_read_file(&sb, git_path_squash_msg(the_repository), 0) < 0)
832                         die_errno(_("could not read SQUASH_MSG"));
833                 hook_arg1 = "squash";
834         } else if (template_file) {
835                 if (strbuf_read_file(&sb, template_file, 0) < 0)
836                         die_errno(_("could not read '%s'"), template_file);
837                 hook_arg1 = "template";
838                 clean_message_contents = 0;
839         }
840
841         /*
842          * The remaining cases don't modify the template message, but
843          * just set the argument(s) to the prepare-commit-msg hook.
844          */
845         else if (whence == FROM_MERGE)
846                 hook_arg1 = "merge";
847         else if (is_from_cherry_pick(whence) || whence == FROM_REBASE_PICK) {
848                 hook_arg1 = "commit";
849                 hook_arg2 = "CHERRY_PICK_HEAD";
850         }
851
852         if (squash_message) {
853                 /*
854                  * If squash_commit was used for the commit subject,
855                  * then we're possibly hijacking other commit log options.
856                  * Reset the hook args to tell the real story.
857                  */
858                 hook_arg1 = "message";
859                 hook_arg2 = "";
860         }
861
862         s->fp = fopen_for_writing(git_path_commit_editmsg());
863         if (s->fp == NULL)
864                 die_errno(_("could not open '%s'"), git_path_commit_editmsg());
865
866         /* Ignore status.displayCommentPrefix: we do need comments in COMMIT_EDITMSG. */
867         old_display_comment_prefix = s->display_comment_prefix;
868         s->display_comment_prefix = 1;
869
870         /*
871          * Most hints are counter-productive when the commit has
872          * already started.
873          */
874         s->hints = 0;
875
876         if (clean_message_contents)
877                 strbuf_stripspace(&sb, 0);
878
879         if (signoff)
880                 append_signoff(&sb, ignore_non_trailer(sb.buf, sb.len), 0);
881
882         if (fwrite(sb.buf, 1, sb.len, s->fp) < sb.len)
883                 die_errno(_("could not write commit template"));
884
885         if (auto_comment_line_char)
886                 adjust_comment_line_char(&sb);
887         strbuf_release(&sb);
888
889         /* This checks if committer ident is explicitly given */
890         strbuf_addstr(&committer_ident, git_committer_info(IDENT_STRICT));
891         if (use_editor && include_status) {
892                 int ident_shown = 0;
893                 int saved_color_setting;
894                 struct ident_split ci, ai;
895
896                 if (whence != FROM_COMMIT) {
897                         if (cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS &&
898                                 !merge_contains_scissors)
899                                 wt_status_add_cut_line(s->fp);
900                         status_printf_ln(
901                                 s, GIT_COLOR_NORMAL,
902                                 whence == FROM_MERGE ?
903                                               _("\n"
904                                           "It looks like you may be committing a merge.\n"
905                                           "If this is not correct, please run\n"
906                                           "     git update-ref -d MERGE_HEAD\n"
907                                           "and try again.\n") :
908                                               _("\n"
909                                           "It looks like you may be committing a cherry-pick.\n"
910                                           "If this is not correct, please run\n"
911                                           "     git update-ref -d CHERRY_PICK_HEAD\n"
912                                           "and try again.\n"));
913                 }
914
915                 fprintf(s->fp, "\n");
916                 if (cleanup_mode == COMMIT_MSG_CLEANUP_ALL)
917                         status_printf(s, GIT_COLOR_NORMAL,
918                                 _("Please enter the commit message for your changes."
919                                   " Lines starting\nwith '%c' will be ignored, and an empty"
920                                   " message aborts the commit.\n"), comment_line_char);
921                 else if (cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS) {
922                         if (whence == FROM_COMMIT && !merge_contains_scissors)
923                                 wt_status_add_cut_line(s->fp);
924                 } else /* COMMIT_MSG_CLEANUP_SPACE, that is. */
925                         status_printf(s, GIT_COLOR_NORMAL,
926                                 _("Please enter the commit message for your changes."
927                                   " Lines starting\n"
928                                   "with '%c' will be kept; you may remove them"
929                                   " yourself if you want to.\n"
930                                   "An empty message aborts the commit.\n"), comment_line_char);
931
932                 /*
933                  * These should never fail because they come from our own
934                  * fmt_ident. They may fail the sane_ident test, but we know
935                  * that the name and mail pointers will at least be valid,
936                  * which is enough for our tests and printing here.
937                  */
938                 assert_split_ident(&ai, author_ident);
939                 assert_split_ident(&ci, &committer_ident);
940
941                 if (ident_cmp(&ai, &ci))
942                         status_printf_ln(s, GIT_COLOR_NORMAL,
943                                 _("%s"
944                                 "Author:    %.*s <%.*s>"),
945                                 ident_shown++ ? "" : "\n",
946                                 (int)(ai.name_end - ai.name_begin), ai.name_begin,
947                                 (int)(ai.mail_end - ai.mail_begin), ai.mail_begin);
948
949                 if (author_date_is_interesting())
950                         status_printf_ln(s, GIT_COLOR_NORMAL,
951                                 _("%s"
952                                 "Date:      %s"),
953                                 ident_shown++ ? "" : "\n",
954                                 show_ident_date(&ai, DATE_MODE(NORMAL)));
955
956                 if (!committer_ident_sufficiently_given())
957                         status_printf_ln(s, GIT_COLOR_NORMAL,
958                                 _("%s"
959                                 "Committer: %.*s <%.*s>"),
960                                 ident_shown++ ? "" : "\n",
961                                 (int)(ci.name_end - ci.name_begin), ci.name_begin,
962                                 (int)(ci.mail_end - ci.mail_begin), ci.mail_begin);
963
964                 status_printf_ln(s, GIT_COLOR_NORMAL, "%s", ""); /* Add new line for clarity */
965
966                 saved_color_setting = s->use_color;
967                 s->use_color = 0;
968                 committable = run_status(s->fp, index_file, prefix, 1, s);
969                 s->use_color = saved_color_setting;
970                 string_list_clear(&s->change, 1);
971         } else {
972                 struct object_id oid;
973                 const char *parent = "HEAD";
974
975                 if (!active_nr && read_cache() < 0)
976                         die(_("Cannot read index"));
977
978                 if (amend)
979                         parent = "HEAD^1";
980
981                 if (get_oid(parent, &oid)) {
982                         int i, ita_nr = 0;
983
984                         /* TODO: audit for interaction with sparse-index. */
985                         ensure_full_index(&the_index);
986                         for (i = 0; i < active_nr; i++)
987                                 if (ce_intent_to_add(active_cache[i]))
988                                         ita_nr++;
989                         committable = active_nr - ita_nr > 0;
990                 } else {
991                         /*
992                          * Unless the user did explicitly request a submodule
993                          * ignore mode by passing a command line option we do
994                          * not ignore any changed submodule SHA-1s when
995                          * comparing index and parent, no matter what is
996                          * configured. Otherwise we won't commit any
997                          * submodules which were manually staged, which would
998                          * be really confusing.
999                          */
1000                         struct diff_flags flags = DIFF_FLAGS_INIT;
1001                         flags.override_submodule_config = 1;
1002                         if (ignore_submodule_arg &&
1003                             !strcmp(ignore_submodule_arg, "all"))
1004                                 flags.ignore_submodules = 1;
1005                         committable = index_differs_from(the_repository,
1006                                                          parent, &flags, 1);
1007                 }
1008         }
1009         strbuf_release(&committer_ident);
1010
1011         fclose(s->fp);
1012
1013         if (trailer_args.nr) {
1014                 struct child_process run_trailer = CHILD_PROCESS_INIT;
1015
1016                 strvec_pushl(&run_trailer.args, "interpret-trailers",
1017                              "--in-place", git_path_commit_editmsg(), NULL);
1018                 strvec_pushv(&run_trailer.args, trailer_args.v);
1019                 run_trailer.git_cmd = 1;
1020                 if (run_command(&run_trailer))
1021                         die(_("unable to pass trailers to --trailers"));
1022                 strvec_clear(&trailer_args);
1023         }
1024
1025         /*
1026          * Reject an attempt to record a non-merge empty commit without
1027          * explicit --allow-empty. In the cherry-pick case, it may be
1028          * empty due to conflict resolution, which the user should okay.
1029          */
1030         if (!committable && whence != FROM_MERGE && !allow_empty &&
1031             !(amend && is_a_merge(current_head))) {
1032                 s->hints = advice_status_hints;
1033                 s->display_comment_prefix = old_display_comment_prefix;
1034                 run_status(stdout, index_file, prefix, 0, s);
1035                 if (amend)
1036                         fputs(_(empty_amend_advice), stderr);
1037                 else if (is_from_cherry_pick(whence) ||
1038                          whence == FROM_REBASE_PICK) {
1039                         fputs(_(empty_cherry_pick_advice), stderr);
1040                         if (whence == FROM_CHERRY_PICK_SINGLE)
1041                                 fputs(_(empty_cherry_pick_advice_single), stderr);
1042                         else if (whence == FROM_CHERRY_PICK_MULTI)
1043                                 fputs(_(empty_cherry_pick_advice_multi), stderr);
1044                         else
1045                                 fputs(_(empty_rebase_pick_advice), stderr);
1046                 }
1047                 return 0;
1048         }
1049
1050         if (!no_verify && invoked_hook) {
1051                 /*
1052                  * Re-read the index as the pre-commit-commit hook was invoked
1053                  * and could have updated it. We must do this before we invoke
1054                  * the editor and after we invoke run_status above.
1055                  */
1056                 discard_cache();
1057         }
1058         read_cache_from(index_file);
1059
1060         if (update_main_cache_tree(0)) {
1061                 error(_("Error building trees"));
1062                 return 0;
1063         }
1064
1065         if (run_commit_hook(use_editor, index_file, NULL, "prepare-commit-msg",
1066                             git_path_commit_editmsg(), hook_arg1, hook_arg2, NULL))
1067                 return 0;
1068
1069         if (use_editor) {
1070                 struct strvec env = STRVEC_INIT;
1071
1072                 strvec_pushf(&env, "GIT_INDEX_FILE=%s", index_file);
1073                 if (launch_editor(git_path_commit_editmsg(), NULL, env.v)) {
1074                         fprintf(stderr,
1075                         _("Please supply the message using either -m or -F option.\n"));
1076                         exit(1);
1077                 }
1078                 strvec_clear(&env);
1079         }
1080
1081         if (!no_verify &&
1082             run_commit_hook(use_editor, index_file, NULL, "commit-msg",
1083                             git_path_commit_editmsg(), NULL)) {
1084                 return 0;
1085         }
1086
1087         return 1;
1088 }
1089
1090 static const char *find_author_by_nickname(const char *name)
1091 {
1092         struct rev_info revs;
1093         struct commit *commit;
1094         struct strbuf buf = STRBUF_INIT;
1095         struct string_list mailmap = STRING_LIST_INIT_NODUP;
1096         const char *av[20];
1097         int ac = 0;
1098
1099         repo_init_revisions(the_repository, &revs, NULL);
1100         strbuf_addf(&buf, "--author=%s", name);
1101         av[++ac] = "--all";
1102         av[++ac] = "-i";
1103         av[++ac] = buf.buf;
1104         av[++ac] = NULL;
1105         setup_revisions(ac, av, &revs, NULL);
1106         revs.mailmap = &mailmap;
1107         read_mailmap(revs.mailmap);
1108
1109         if (prepare_revision_walk(&revs))
1110                 die(_("revision walk setup failed"));
1111         commit = get_revision(&revs);
1112         if (commit) {
1113                 struct pretty_print_context ctx = {0};
1114                 ctx.date_mode.type = DATE_NORMAL;
1115                 strbuf_release(&buf);
1116                 format_commit_message(commit, "%aN <%aE>", &buf, &ctx);
1117                 clear_mailmap(&mailmap);
1118                 return strbuf_detach(&buf, NULL);
1119         }
1120         die(_("--author '%s' is not 'Name <email>' and matches no existing author"), name);
1121 }
1122
1123 static void handle_ignored_arg(struct wt_status *s)
1124 {
1125         if (!ignored_arg)
1126                 ; /* default already initialized */
1127         else if (!strcmp(ignored_arg, "traditional"))
1128                 s->show_ignored_mode = SHOW_TRADITIONAL_IGNORED;
1129         else if (!strcmp(ignored_arg, "no"))
1130                 s->show_ignored_mode = SHOW_NO_IGNORED;
1131         else if (!strcmp(ignored_arg, "matching"))
1132                 s->show_ignored_mode = SHOW_MATCHING_IGNORED;
1133         else
1134                 die(_("Invalid ignored mode '%s'"), ignored_arg);
1135 }
1136
1137 static void handle_untracked_files_arg(struct wt_status *s)
1138 {
1139         if (!untracked_files_arg)
1140                 ; /* default already initialized */
1141         else if (!strcmp(untracked_files_arg, "no"))
1142                 s->show_untracked_files = SHOW_NO_UNTRACKED_FILES;
1143         else if (!strcmp(untracked_files_arg, "normal"))
1144                 s->show_untracked_files = SHOW_NORMAL_UNTRACKED_FILES;
1145         else if (!strcmp(untracked_files_arg, "all"))
1146                 s->show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
1147         /*
1148          * Please update $__git_untracked_file_modes in
1149          * git-completion.bash when you add new options
1150          */
1151         else
1152                 die(_("Invalid untracked files mode '%s'"), untracked_files_arg);
1153 }
1154
1155 static const char *read_commit_message(const char *name)
1156 {
1157         const char *out_enc;
1158         struct commit *commit;
1159
1160         commit = lookup_commit_reference_by_name(name);
1161         if (!commit)
1162                 die(_("could not lookup commit %s"), name);
1163         out_enc = get_commit_output_encoding();
1164         return logmsg_reencode(commit, NULL, out_enc);
1165 }
1166
1167 /*
1168  * Enumerate what needs to be propagated when --porcelain
1169  * is not in effect here.
1170  */
1171 static struct status_deferred_config {
1172         enum wt_status_format status_format;
1173         int show_branch;
1174         enum ahead_behind_flags ahead_behind;
1175 } status_deferred_config = {
1176         STATUS_FORMAT_UNSPECIFIED,
1177         -1, /* unspecified */
1178         AHEAD_BEHIND_UNSPECIFIED,
1179 };
1180
1181 static void finalize_deferred_config(struct wt_status *s)
1182 {
1183         int use_deferred_config = (status_format != STATUS_FORMAT_PORCELAIN &&
1184                                    status_format != STATUS_FORMAT_PORCELAIN_V2 &&
1185                                    !s->null_termination);
1186
1187         if (s->null_termination) {
1188                 if (status_format == STATUS_FORMAT_NONE ||
1189                     status_format == STATUS_FORMAT_UNSPECIFIED)
1190                         status_format = STATUS_FORMAT_PORCELAIN;
1191                 else if (status_format == STATUS_FORMAT_LONG)
1192                         die(_("--long and -z are incompatible"));
1193         }
1194
1195         if (use_deferred_config && status_format == STATUS_FORMAT_UNSPECIFIED)
1196                 status_format = status_deferred_config.status_format;
1197         if (status_format == STATUS_FORMAT_UNSPECIFIED)
1198                 status_format = STATUS_FORMAT_NONE;
1199
1200         if (use_deferred_config && s->show_branch < 0)
1201                 s->show_branch = status_deferred_config.show_branch;
1202         if (s->show_branch < 0)
1203                 s->show_branch = 0;
1204
1205         /*
1206          * If the user did not give a "--[no]-ahead-behind" command
1207          * line argument *AND* we will print in a human-readable format
1208          * (short, long etc.) then we inherit from the status.aheadbehind
1209          * config setting.  In all other cases (and porcelain V[12] formats
1210          * in particular), we inherit _FULL for backwards compatibility.
1211          */
1212         if (use_deferred_config &&
1213             s->ahead_behind_flags == AHEAD_BEHIND_UNSPECIFIED)
1214                 s->ahead_behind_flags = status_deferred_config.ahead_behind;
1215
1216         if (s->ahead_behind_flags == AHEAD_BEHIND_UNSPECIFIED)
1217                 s->ahead_behind_flags = AHEAD_BEHIND_FULL;
1218 }
1219
1220 static void check_fixup_reword_options(int argc, const char *argv[]) {
1221         if (whence != FROM_COMMIT) {
1222                 if (whence == FROM_MERGE)
1223                         die(_("You are in the middle of a merge -- cannot reword."));
1224                 else if (is_from_cherry_pick(whence))
1225                         die(_("You are in the middle of a cherry-pick -- cannot reword."));
1226         }
1227         if (argc)
1228                 die(_("cannot combine reword option of --fixup with path '%s'"), *argv);
1229         if (patch_interactive || interactive || all || also || only)
1230                 die(_("reword option of --fixup is mutually exclusive with --patch/--interactive/--all/--include/--only"));
1231 }
1232
1233 static int parse_and_validate_options(int argc, const char *argv[],
1234                                       const struct option *options,
1235                                       const char * const usage[],
1236                                       const char *prefix,
1237                                       struct commit *current_head,
1238                                       struct wt_status *s)
1239 {
1240         int f = 0;
1241
1242         argc = parse_options(argc, argv, prefix, options, usage, 0);
1243         finalize_deferred_config(s);
1244
1245         if (force_author && !strchr(force_author, '>'))
1246                 force_author = find_author_by_nickname(force_author);
1247
1248         if (force_author && renew_authorship)
1249                 die(_("Using both --reset-author and --author does not make sense"));
1250
1251         if (logfile || have_option_m || use_message)
1252                 use_editor = 0;
1253         if (0 <= edit_flag)
1254                 use_editor = edit_flag;
1255
1256         /* Sanity check options */
1257         if (amend && !current_head)
1258                 die(_("You have nothing to amend."));
1259         if (amend && whence != FROM_COMMIT) {
1260                 if (whence == FROM_MERGE)
1261                         die(_("You are in the middle of a merge -- cannot amend."));
1262                 else if (is_from_cherry_pick(whence))
1263                         die(_("You are in the middle of a cherry-pick -- cannot amend."));
1264                 else if (whence == FROM_REBASE_PICK)
1265                         die(_("You are in the middle of a rebase -- cannot amend."));
1266         }
1267         if (fixup_message && squash_message)
1268                 die(_("Options --squash and --fixup cannot be used together"));
1269         if (use_message)
1270                 f++;
1271         if (edit_message)
1272                 f++;
1273         if (fixup_message)
1274                 f++;
1275         if (logfile)
1276                 f++;
1277         if (f > 1)
1278                 die(_("Only one of -c/-C/-F/--fixup can be used."));
1279         if (have_option_m && (edit_message || use_message || logfile))
1280                 die((_("Option -m cannot be combined with -c/-C/-F.")));
1281         if (f || have_option_m)
1282                 template_file = NULL;
1283         if (edit_message)
1284                 use_message = edit_message;
1285         if (amend && !use_message && !fixup_message)
1286                 use_message = "HEAD";
1287         if (!use_message && !is_from_cherry_pick(whence) &&
1288             !is_from_rebase(whence) && renew_authorship)
1289                 die(_("--reset-author can be used only with -C, -c or --amend."));
1290         if (use_message) {
1291                 use_message_buffer = read_commit_message(use_message);
1292                 if (!renew_authorship) {
1293                         author_message = use_message;
1294                         author_message_buffer = use_message_buffer;
1295                 }
1296         }
1297         if ((is_from_cherry_pick(whence) || whence == FROM_REBASE_PICK) &&
1298             !renew_authorship) {
1299                 author_message = "CHERRY_PICK_HEAD";
1300                 author_message_buffer = read_commit_message(author_message);
1301         }
1302
1303         if (patch_interactive)
1304                 interactive = 1;
1305
1306         if (also + only + all + interactive > 1)
1307                 die(_("Only one of --include/--only/--all/--interactive/--patch can be used."));
1308
1309         if (fixup_message) {
1310                 /*
1311                  * We limit --fixup's suboptions to only alpha characters.
1312                  * If the first character after a run of alpha is colon,
1313                  * then the part before the colon may be a known suboption
1314                  * name like `amend` or `reword`, or a misspelt suboption
1315                  * name. In either case, we treat it as
1316                  * --fixup=<suboption>:<arg>.
1317                  *
1318                  * Otherwise, we are dealing with --fixup=<commit>.
1319                  */
1320                 char *p = fixup_message;
1321                 while (isalpha(*p))
1322                         p++;
1323                 if (p > fixup_message && *p == ':') {
1324                         *p = '\0';
1325                         fixup_commit = p + 1;
1326                         if (!strcmp("amend", fixup_message) ||
1327                             !strcmp("reword", fixup_message)) {
1328                                 fixup_prefix = "amend";
1329                                 allow_empty = 1;
1330                                 if (*fixup_message == 'r') {
1331                                         check_fixup_reword_options(argc, argv);
1332                                         only = 1;
1333                                 }
1334                         } else {
1335                                 die(_("unknown option: --fixup=%s:%s"), fixup_message, fixup_commit);
1336                         }
1337                 } else {
1338                         fixup_commit = fixup_message;
1339                         fixup_prefix = "fixup";
1340                         use_editor = 0;
1341                 }
1342         }
1343
1344         cleanup_mode = get_cleanup_mode(cleanup_arg, use_editor);
1345
1346         handle_untracked_files_arg(s);
1347
1348         if (all && argc > 0)
1349                 die(_("paths '%s ...' with -a does not make sense"),
1350                     argv[0]);
1351
1352         if (status_format != STATUS_FORMAT_NONE)
1353                 dry_run = 1;
1354
1355         return argc;
1356 }
1357
1358 static int dry_run_commit(const char **argv, const char *prefix,
1359                           const struct commit *current_head, struct wt_status *s)
1360 {
1361         int committable;
1362         const char *index_file;
1363
1364         index_file = prepare_index(argv, prefix, current_head, 1);
1365         committable = run_status(stdout, index_file, prefix, 0, s);
1366         rollback_index_files();
1367
1368         return committable ? 0 : 1;
1369 }
1370
1371 define_list_config_array_extra(color_status_slots, {"added"});
1372
1373 static int parse_status_slot(const char *slot)
1374 {
1375         if (!strcasecmp(slot, "added"))
1376                 return WT_STATUS_UPDATED;
1377
1378         return LOOKUP_CONFIG(color_status_slots, slot);
1379 }
1380
1381 static int git_status_config(const char *k, const char *v, void *cb)
1382 {
1383         struct wt_status *s = cb;
1384         const char *slot_name;
1385
1386         if (starts_with(k, "column."))
1387                 return git_column_config(k, v, "status", &s->colopts);
1388         if (!strcmp(k, "status.submodulesummary")) {
1389                 int is_bool;
1390                 s->submodule_summary = git_config_bool_or_int(k, v, &is_bool);
1391                 if (is_bool && s->submodule_summary)
1392                         s->submodule_summary = -1;
1393                 return 0;
1394         }
1395         if (!strcmp(k, "status.short")) {
1396                 if (git_config_bool(k, v))
1397                         status_deferred_config.status_format = STATUS_FORMAT_SHORT;
1398                 else
1399                         status_deferred_config.status_format = STATUS_FORMAT_NONE;
1400                 return 0;
1401         }
1402         if (!strcmp(k, "status.branch")) {
1403                 status_deferred_config.show_branch = git_config_bool(k, v);
1404                 return 0;
1405         }
1406         if (!strcmp(k, "status.aheadbehind")) {
1407                 status_deferred_config.ahead_behind = git_config_bool(k, v);
1408                 return 0;
1409         }
1410         if (!strcmp(k, "status.showstash")) {
1411                 s->show_stash = git_config_bool(k, v);
1412                 return 0;
1413         }
1414         if (!strcmp(k, "status.color") || !strcmp(k, "color.status")) {
1415                 s->use_color = git_config_colorbool(k, v);
1416                 return 0;
1417         }
1418         if (!strcmp(k, "status.displaycommentprefix")) {
1419                 s->display_comment_prefix = git_config_bool(k, v);
1420                 return 0;
1421         }
1422         if (skip_prefix(k, "status.color.", &slot_name) ||
1423             skip_prefix(k, "color.status.", &slot_name)) {
1424                 int slot = parse_status_slot(slot_name);
1425                 if (slot < 0)
1426                         return 0;
1427                 if (!v)
1428                         return config_error_nonbool(k);
1429                 return color_parse(v, s->color_palette[slot]);
1430         }
1431         if (!strcmp(k, "status.relativepaths")) {
1432                 s->relative_paths = git_config_bool(k, v);
1433                 return 0;
1434         }
1435         if (!strcmp(k, "status.showuntrackedfiles")) {
1436                 if (!v)
1437                         return config_error_nonbool(k);
1438                 else if (!strcmp(v, "no"))
1439                         s->show_untracked_files = SHOW_NO_UNTRACKED_FILES;
1440                 else if (!strcmp(v, "normal"))
1441                         s->show_untracked_files = SHOW_NORMAL_UNTRACKED_FILES;
1442                 else if (!strcmp(v, "all"))
1443                         s->show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
1444                 else
1445                         return error(_("Invalid untracked files mode '%s'"), v);
1446                 return 0;
1447         }
1448         if (!strcmp(k, "diff.renamelimit")) {
1449                 if (s->rename_limit == -1)
1450                         s->rename_limit = git_config_int(k, v);
1451                 return 0;
1452         }
1453         if (!strcmp(k, "status.renamelimit")) {
1454                 s->rename_limit = git_config_int(k, v);
1455                 return 0;
1456         }
1457         if (!strcmp(k, "diff.renames")) {
1458                 if (s->detect_rename == -1)
1459                         s->detect_rename = git_config_rename(k, v);
1460                 return 0;
1461         }
1462         if (!strcmp(k, "status.renames")) {
1463                 s->detect_rename = git_config_rename(k, v);
1464                 return 0;
1465         }
1466         return git_diff_ui_config(k, v, NULL);
1467 }
1468
1469 int cmd_status(int argc, const char **argv, const char *prefix)
1470 {
1471         static int no_renames = -1;
1472         static const char *rename_score_arg = (const char *)-1;
1473         static struct wt_status s;
1474         unsigned int progress_flag = 0;
1475         int fd;
1476         struct object_id oid;
1477         static struct option builtin_status_options[] = {
1478                 OPT__VERBOSE(&verbose, N_("be verbose")),
1479                 OPT_SET_INT('s', "short", &status_format,
1480                             N_("show status concisely"), STATUS_FORMAT_SHORT),
1481                 OPT_BOOL('b', "branch", &s.show_branch,
1482                          N_("show branch information")),
1483                 OPT_BOOL(0, "show-stash", &s.show_stash,
1484                          N_("show stash information")),
1485                 OPT_BOOL(0, "ahead-behind", &s.ahead_behind_flags,
1486                          N_("compute full ahead/behind values")),
1487                 OPT_CALLBACK_F(0, "porcelain", &status_format,
1488                   N_("version"), N_("machine-readable output"),
1489                   PARSE_OPT_OPTARG, opt_parse_porcelain),
1490                 OPT_SET_INT(0, "long", &status_format,
1491                             N_("show status in long format (default)"),
1492                             STATUS_FORMAT_LONG),
1493                 OPT_BOOL('z', "null", &s.null_termination,
1494                          N_("terminate entries with NUL")),
1495                 { OPTION_STRING, 'u', "untracked-files", &untracked_files_arg,
1496                   N_("mode"),
1497                   N_("show untracked files, optional modes: all, normal, no. (Default: all)"),
1498                   PARSE_OPT_OPTARG, NULL, (intptr_t)"all" },
1499                 { OPTION_STRING, 0, "ignored", &ignored_arg,
1500                   N_("mode"),
1501                   N_("show ignored files, optional modes: traditional, matching, no. (Default: traditional)"),
1502                   PARSE_OPT_OPTARG, NULL, (intptr_t)"traditional" },
1503                 { OPTION_STRING, 0, "ignore-submodules", &ignore_submodule_arg, N_("when"),
1504                   N_("ignore changes to submodules, optional when: all, dirty, untracked. (Default: all)"),
1505                   PARSE_OPT_OPTARG, NULL, (intptr_t)"all" },
1506                 OPT_COLUMN(0, "column", &s.colopts, N_("list untracked files in columns")),
1507                 OPT_BOOL(0, "no-renames", &no_renames, N_("do not detect renames")),
1508                 OPT_CALLBACK_F('M', "find-renames", &rename_score_arg,
1509                   N_("n"), N_("detect renames, optionally set similarity index"),
1510                   PARSE_OPT_OPTARG | PARSE_OPT_NONEG, opt_parse_rename_score),
1511                 OPT_END(),
1512         };
1513
1514         if (argc == 2 && !strcmp(argv[1], "-h"))
1515                 usage_with_options(builtin_status_usage, builtin_status_options);
1516
1517         status_init_config(&s, git_status_config);
1518         argc = parse_options(argc, argv, prefix,
1519                              builtin_status_options,
1520                              builtin_status_usage, 0);
1521         finalize_colopts(&s.colopts, -1);
1522         finalize_deferred_config(&s);
1523
1524         handle_untracked_files_arg(&s);
1525         handle_ignored_arg(&s);
1526
1527         if (s.show_ignored_mode == SHOW_MATCHING_IGNORED &&
1528             s.show_untracked_files == SHOW_NO_UNTRACKED_FILES)
1529                 die(_("Unsupported combination of ignored and untracked-files arguments"));
1530
1531         parse_pathspec(&s.pathspec, 0,
1532                        PATHSPEC_PREFER_FULL,
1533                        prefix, argv);
1534
1535         if (status_format != STATUS_FORMAT_PORCELAIN &&
1536             status_format != STATUS_FORMAT_PORCELAIN_V2)
1537                 progress_flag = REFRESH_PROGRESS;
1538         repo_read_index(the_repository);
1539         refresh_index(&the_index,
1540                       REFRESH_QUIET|REFRESH_UNMERGED|progress_flag,
1541                       &s.pathspec, NULL, NULL);
1542
1543         if (use_optional_locks())
1544                 fd = hold_locked_index(&index_lock, 0);
1545         else
1546                 fd = -1;
1547
1548         s.is_initial = get_oid(s.reference, &oid) ? 1 : 0;
1549         if (!s.is_initial)
1550                 oidcpy(&s.oid_commit, &oid);
1551
1552         s.ignore_submodule_arg = ignore_submodule_arg;
1553         s.status_format = status_format;
1554         s.verbose = verbose;
1555         if (no_renames != -1)
1556                 s.detect_rename = !no_renames;
1557         if ((intptr_t)rename_score_arg != -1) {
1558                 if (s.detect_rename < DIFF_DETECT_RENAME)
1559                         s.detect_rename = DIFF_DETECT_RENAME;
1560                 if (rename_score_arg)
1561                         s.rename_score = parse_rename_score(&rename_score_arg);
1562         }
1563
1564         wt_status_collect(&s);
1565
1566         if (0 <= fd)
1567                 repo_update_index_if_able(the_repository, &index_lock);
1568
1569         if (s.relative_paths)
1570                 s.prefix = prefix;
1571
1572         wt_status_print(&s);
1573         wt_status_collect_free_buffers(&s);
1574
1575         return 0;
1576 }
1577
1578 static int git_commit_config(const char *k, const char *v, void *cb)
1579 {
1580         struct wt_status *s = cb;
1581         int status;
1582
1583         if (!strcmp(k, "commit.template"))
1584                 return git_config_pathname(&template_file, k, v);
1585         if (!strcmp(k, "commit.status")) {
1586                 include_status = git_config_bool(k, v);
1587                 return 0;
1588         }
1589         if (!strcmp(k, "commit.cleanup"))
1590                 return git_config_string(&cleanup_arg, k, v);
1591         if (!strcmp(k, "commit.gpgsign")) {
1592                 sign_commit = git_config_bool(k, v) ? "" : NULL;
1593                 return 0;
1594         }
1595         if (!strcmp(k, "commit.verbose")) {
1596                 int is_bool;
1597                 config_commit_verbose = git_config_bool_or_int(k, v, &is_bool);
1598                 return 0;
1599         }
1600
1601         status = git_gpg_config(k, v, NULL);
1602         if (status)
1603                 return status;
1604         return git_status_config(k, v, s);
1605 }
1606
1607 int cmd_commit(int argc, const char **argv, const char *prefix)
1608 {
1609         static struct wt_status s;
1610         static struct option builtin_commit_options[] = {
1611                 OPT__QUIET(&quiet, N_("suppress summary after successful commit")),
1612                 OPT__VERBOSE(&verbose, N_("show diff in commit message template")),
1613
1614                 OPT_GROUP(N_("Commit message options")),
1615                 OPT_FILENAME('F', "file", &logfile, N_("read message from file")),
1616                 OPT_STRING(0, "author", &force_author, N_("author"), N_("override author for commit")),
1617                 OPT_STRING(0, "date", &force_date, N_("date"), N_("override date for commit")),
1618                 OPT_CALLBACK('m', "message", &message, N_("message"), N_("commit message"), opt_parse_m),
1619                 OPT_STRING('c', "reedit-message", &edit_message, N_("commit"), N_("reuse and edit message from specified commit")),
1620                 OPT_STRING('C', "reuse-message", &use_message, N_("commit"), N_("reuse message from specified commit")),
1621                 /*
1622                  * TRANSLATORS: Leave "[(amend|reword):]" as-is,
1623                  * and only translate <commit>.
1624                  */
1625                 OPT_STRING(0, "fixup", &fixup_message, N_("[(amend|reword):]commit"), N_("use autosquash formatted message to fixup or amend/reword specified commit")),
1626                 OPT_STRING(0, "squash", &squash_message, N_("commit"), N_("use autosquash formatted message to squash specified commit")),
1627                 OPT_BOOL(0, "reset-author", &renew_authorship, N_("the commit is authored by me now (used with -C/-c/--amend)")),
1628                 OPT_CALLBACK_F(0, "trailer", NULL, N_("trailer"), N_("add custom trailer(s)"), PARSE_OPT_NONEG, opt_pass_trailer),
1629                 OPT_BOOL('s', "signoff", &signoff, N_("add a Signed-off-by trailer")),
1630                 OPT_FILENAME('t', "template", &template_file, N_("use specified template file")),
1631                 OPT_BOOL('e', "edit", &edit_flag, N_("force edit of commit")),
1632                 OPT_CLEANUP(&cleanup_arg),
1633                 OPT_BOOL(0, "status", &include_status, N_("include status in commit message template")),
1634                 { OPTION_STRING, 'S', "gpg-sign", &sign_commit, N_("key-id"),
1635                   N_("GPG sign commit"), PARSE_OPT_OPTARG, NULL, (intptr_t) "" },
1636                 /* end commit message options */
1637
1638                 OPT_GROUP(N_("Commit contents options")),
1639                 OPT_BOOL('a', "all", &all, N_("commit all changed files")),
1640                 OPT_BOOL('i', "include", &also, N_("add specified files to index for commit")),
1641                 OPT_BOOL(0, "interactive", &interactive, N_("interactively add files")),
1642                 OPT_BOOL('p', "patch", &patch_interactive, N_("interactively add changes")),
1643                 OPT_BOOL('o', "only", &only, N_("commit only specified files")),
1644                 OPT_BOOL('n', "no-verify", &no_verify, N_("bypass pre-commit and commit-msg hooks")),
1645                 OPT_BOOL(0, "dry-run", &dry_run, N_("show what would be committed")),
1646                 OPT_SET_INT(0, "short", &status_format, N_("show status concisely"),
1647                             STATUS_FORMAT_SHORT),
1648                 OPT_BOOL(0, "branch", &s.show_branch, N_("show branch information")),
1649                 OPT_BOOL(0, "ahead-behind", &s.ahead_behind_flags,
1650                          N_("compute full ahead/behind values")),
1651                 OPT_SET_INT(0, "porcelain", &status_format,
1652                             N_("machine-readable output"), STATUS_FORMAT_PORCELAIN),
1653                 OPT_SET_INT(0, "long", &status_format,
1654                             N_("show status in long format (default)"),
1655                             STATUS_FORMAT_LONG),
1656                 OPT_BOOL('z', "null", &s.null_termination,
1657                          N_("terminate entries with NUL")),
1658                 OPT_BOOL(0, "amend", &amend, N_("amend previous commit")),
1659                 OPT_BOOL(0, "no-post-rewrite", &no_post_rewrite, N_("bypass post-rewrite hook")),
1660                 { 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" },
1661                 OPT_PATHSPEC_FROM_FILE(&pathspec_from_file),
1662                 OPT_PATHSPEC_FILE_NUL(&pathspec_file_nul),
1663                 /* end commit contents options */
1664
1665                 OPT_HIDDEN_BOOL(0, "allow-empty", &allow_empty,
1666                                 N_("ok to record an empty change")),
1667                 OPT_HIDDEN_BOOL(0, "allow-empty-message", &allow_empty_message,
1668                                 N_("ok to record a change with an empty message")),
1669
1670                 OPT_END()
1671         };
1672
1673         struct strbuf sb = STRBUF_INIT;
1674         struct strbuf author_ident = STRBUF_INIT;
1675         const char *index_file, *reflog_msg;
1676         struct object_id oid;
1677         struct commit_list *parents = NULL;
1678         struct stat statbuf;
1679         struct commit *current_head = NULL;
1680         struct commit_extra_header *extra = NULL;
1681         struct strbuf err = STRBUF_INIT;
1682
1683         if (argc == 2 && !strcmp(argv[1], "-h"))
1684                 usage_with_options(builtin_commit_usage, builtin_commit_options);
1685
1686         status_init_config(&s, git_commit_config);
1687         s.commit_template = 1;
1688         status_format = STATUS_FORMAT_NONE; /* Ignore status.short */
1689         s.colopts = 0;
1690
1691         if (get_oid("HEAD", &oid))
1692                 current_head = NULL;
1693         else {
1694                 current_head = lookup_commit_or_die(&oid, "HEAD");
1695                 if (parse_commit(current_head))
1696                         die(_("could not parse HEAD commit"));
1697         }
1698         verbose = -1; /* unspecified */
1699         argc = parse_and_validate_options(argc, argv, builtin_commit_options,
1700                                           builtin_commit_usage,
1701                                           prefix, current_head, &s);
1702         if (verbose == -1)
1703                 verbose = (config_commit_verbose < 0) ? 0 : config_commit_verbose;
1704
1705         if (dry_run)
1706                 return dry_run_commit(argv, prefix, current_head, &s);
1707         index_file = prepare_index(argv, prefix, current_head, 0);
1708
1709         /* Set up everything for writing the commit object.  This includes
1710            running hooks, writing the trees, and interacting with the user.  */
1711         if (!prepare_to_commit(index_file, prefix,
1712                                current_head, &s, &author_ident)) {
1713                 rollback_index_files();
1714                 return 1;
1715         }
1716
1717         /* Determine parents */
1718         reflog_msg = getenv("GIT_REFLOG_ACTION");
1719         if (!current_head) {
1720                 if (!reflog_msg)
1721                         reflog_msg = "commit (initial)";
1722         } else if (amend) {
1723                 if (!reflog_msg)
1724                         reflog_msg = "commit (amend)";
1725                 parents = copy_commit_list(current_head->parents);
1726         } else if (whence == FROM_MERGE) {
1727                 struct strbuf m = STRBUF_INIT;
1728                 FILE *fp;
1729                 int allow_fast_forward = 1;
1730                 struct commit_list **pptr = &parents;
1731
1732                 if (!reflog_msg)
1733                         reflog_msg = "commit (merge)";
1734                 pptr = commit_list_append(current_head, pptr);
1735                 fp = xfopen(git_path_merge_head(the_repository), "r");
1736                 while (strbuf_getline_lf(&m, fp) != EOF) {
1737                         struct commit *parent;
1738
1739                         parent = get_merge_parent(m.buf);
1740                         if (!parent)
1741                                 die(_("Corrupt MERGE_HEAD file (%s)"), m.buf);
1742                         pptr = commit_list_append(parent, pptr);
1743                 }
1744                 fclose(fp);
1745                 strbuf_release(&m);
1746                 if (!stat(git_path_merge_mode(the_repository), &statbuf)) {
1747                         if (strbuf_read_file(&sb, git_path_merge_mode(the_repository), 0) < 0)
1748                                 die_errno(_("could not read MERGE_MODE"));
1749                         if (!strcmp(sb.buf, "no-ff"))
1750                                 allow_fast_forward = 0;
1751                 }
1752                 if (allow_fast_forward)
1753                         reduce_heads_replace(&parents);
1754         } else {
1755                 if (!reflog_msg)
1756                         reflog_msg = is_from_cherry_pick(whence)
1757                                         ? "commit (cherry-pick)"
1758                                         : is_from_rebase(whence)
1759                                         ? "commit (rebase)"
1760                                         : "commit";
1761                 commit_list_insert(current_head, &parents);
1762         }
1763
1764         /* Finally, get the commit message */
1765         strbuf_reset(&sb);
1766         if (strbuf_read_file(&sb, git_path_commit_editmsg(), 0) < 0) {
1767                 int saved_errno = errno;
1768                 rollback_index_files();
1769                 die(_("could not read commit message: %s"), strerror(saved_errno));
1770         }
1771
1772         cleanup_message(&sb, cleanup_mode, verbose);
1773
1774         if (message_is_empty(&sb, cleanup_mode) && !allow_empty_message) {
1775                 rollback_index_files();
1776                 fprintf(stderr, _("Aborting commit due to empty commit message.\n"));
1777                 exit(1);
1778         }
1779         if (template_untouched(&sb, template_file, cleanup_mode) && !allow_empty_message) {
1780                 rollback_index_files();
1781                 fprintf(stderr, _("Aborting commit; you did not edit the message.\n"));
1782                 exit(1);
1783         }
1784
1785         if (fixup_message && starts_with(sb.buf, "amend! ") &&
1786             !allow_empty_message) {
1787                 struct strbuf body = STRBUF_INIT;
1788                 size_t len = commit_subject_length(sb.buf);
1789                 strbuf_addstr(&body, sb.buf + len);
1790                 if (message_is_empty(&body, cleanup_mode)) {
1791                         rollback_index_files();
1792                         fprintf(stderr, _("Aborting commit due to empty commit message body.\n"));
1793                         exit(1);
1794                 }
1795                 strbuf_release(&body);
1796         }
1797
1798         if (amend) {
1799                 const char *exclude_gpgsig[3] = { "gpgsig", "gpgsig-sha256", NULL };
1800                 extra = read_commit_extra_headers(current_head, exclude_gpgsig);
1801         } else {
1802                 struct commit_extra_header **tail = &extra;
1803                 append_merge_tag_headers(parents, &tail);
1804         }
1805
1806         if (commit_tree_extended(sb.buf, sb.len, &active_cache_tree->oid,
1807                                  parents, &oid, author_ident.buf, NULL,
1808                                  sign_commit, extra)) {
1809                 rollback_index_files();
1810                 die(_("failed to write commit object"));
1811         }
1812         strbuf_release(&author_ident);
1813         free_commit_extra_headers(extra);
1814
1815         if (update_head_with_reflog(current_head, &oid, reflog_msg, &sb,
1816                                     &err)) {
1817                 rollback_index_files();
1818                 die("%s", err.buf);
1819         }
1820
1821         sequencer_post_commit_cleanup(the_repository, 0);
1822         unlink(git_path_merge_head(the_repository));
1823         unlink(git_path_merge_msg(the_repository));
1824         unlink(git_path_merge_mode(the_repository));
1825         unlink(git_path_squash_msg(the_repository));
1826
1827         if (commit_index_files())
1828                 die(_("repository has been updated, but unable to write\n"
1829                       "new_index file. Check that disk is not full and quota is\n"
1830                       "not exceeded, and then \"git restore --staged :/\" to recover."));
1831
1832         git_test_write_commit_graph_or_die();
1833
1834         repo_rerere(the_repository, 0);
1835         run_auto_maintenance(quiet);
1836         run_commit_hook(use_editor, get_index_file(), NULL, "post-commit",
1837                         NULL);
1838         if (amend && !no_post_rewrite) {
1839                 commit_post_rewrite(the_repository, current_head, &oid);
1840         }
1841         if (!quiet) {
1842                 unsigned int flags = 0;
1843
1844                 if (!current_head)
1845                         flags |= SUMMARY_INITIAL_COMMIT;
1846                 if (author_date_is_interesting())
1847                         flags |= SUMMARY_SHOW_AUTHOR_DATE;
1848                 print_commit_summary(the_repository, prefix,
1849                                      &oid, flags);
1850         }
1851
1852         apply_autostash(git_path_merge_autostash(the_repository));
1853
1854         UNLEAK(err);
1855         UNLEAK(sb);
1856         return 0;
1857 }