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