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