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