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