]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/commit.c
Merge branch 'jk/maint-do-not-feed-stdin-to-tests'
[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"
9#include "cache-tree.h"
6b2f2d98 10#include "color.h"
2888605c 11#include "dir.h"
f5bbc322
KH
12#include "builtin.h"
13#include "diff.h"
14#include "diffcore.h"
15#include "commit.h"
16#include "revision.h"
17#include "wt-status.h"
18#include "run-command.h"
19#include "refs.h"
20#include "log-tree.h"
21#include "strbuf.h"
22#include "utf8.h"
23#include "parse-options.h"
c455c87c 24#include "string-list.h"
5b2fd956 25#include "rerere.h"
fa9dcf80 26#include "unpack-trees.h"
76e2f7ce 27#include "quote.h"
302ad7a9 28#include "submodule.h"
f5bbc322
KH
29
30static const char * const builtin_commit_usage[] = {
1b1dd23f 31 "git commit [options] [--] <filepattern>...",
f5bbc322
KH
32 NULL
33};
34
2f02b25f 35static const char * const builtin_status_usage[] = {
1b1dd23f 36 "git status [options] [--] <filepattern>...",
2f02b25f
SB
37 NULL
38};
39
49ff9a7a 40static const char implicit_ident_advice[] =
fc88e316 41N_("Your name and email address were configured automatically based\n"
49ff9a7a
JK
42"on your username and hostname. Please check that they are accurate.\n"
43"You can suppress this message by setting them explicitly:\n"
44"\n"
8bb45b25 45" git config --global user.name \"Your Name\"\n"
49ff9a7a
JK
46" git config --global user.email you@example.com\n"
47"\n"
3f142468 48"After doing this, you may fix the identity used for this commit with:\n"
49ff9a7a 49"\n"
fc88e316 50" git commit --amend --reset-author\n");
49ff9a7a 51
f197ed2f 52static const char empty_amend_advice[] =
fc88e316 53N_("You asked to amend the most recent commit, but doing so would make\n"
f197ed2f 54"it empty. You can repeat your command with --allow-empty, or you can\n"
fc88e316 55"remove the commit entirely with \"git reset HEAD^\".\n");
f197ed2f 56
37f7a857 57static const char empty_cherry_pick_advice[] =
6c80cd29 58N_("The previous cherry-pick is now empty, possibly due to conflict resolution.\n"
37f7a857
JS
59"If you wish to commit it anyway, use:\n"
60"\n"
61" git commit --allow-empty\n"
62"\n"
6c80cd29 63"Otherwise, please use 'git reset'\n");
37f7a857 64
37f7a857 65static const char *use_message_buffer;
f5bbc322 66static const char commit_editmsg[] = "COMMIT_EDITMSG";
2888605c
JH
67static struct lock_file index_lock; /* real index */
68static struct lock_file false_lock; /* used only for partial commits */
69static enum {
70 COMMIT_AS_IS = 1,
71 COMMIT_NORMAL,
4b05548f 72 COMMIT_PARTIAL
2888605c 73} commit_style;
f5bbc322 74
dbd0f5c7 75static const char *logfile, *force_author;
984c6e7e 76static const char *template_file;
37f7a857
JS
77/*
78 * The _message variables are commit names from which to take
79 * the commit message and/or authorship.
80 */
81static const char *author_message, *author_message_buffer;
f5bbc322 82static char *edit_message, *use_message;
89ac1223 83static char *fixup_message, *squash_message;
ca1ba201
JH
84static int all, also, interactive, patch_interactive, only, amend, signoff;
85static int edit_flag = -1; /* unspecified */
c51f6cee 86static int quiet, verbose, no_verify, allow_empty, dry_run, renew_authorship;
c9b5fde7 87static int no_post_rewrite, allow_empty_message;
46a958b3 88static char *untracked_files_arg, *force_date, *ignore_submodule_arg;
5f065737
AR
89/*
90 * The default commit message cleanup mode will remove the lines
91 * beginning with # (shell comments) and leading and trailing
92 * whitespaces (empty lines or containing only whitespaces)
93 * if editor is used, and only the whitespaces if the message
94 * is specified explicitly.
95 */
96static enum {
97 CLEANUP_SPACE,
98 CLEANUP_NONE,
4b05548f 99 CLEANUP_ALL
5f065737
AR
100} cleanup_mode;
101static char *cleanup_arg;
f5bbc322 102
37f7a857 103static enum commit_whence whence;
06bb643b 104static int use_editor = 1, include_status = 1;
2381e39e 105static int show_ignored_in_status;
3b6aeb3c
JS
106static const char *only_include_assumed;
107static struct strbuf message;
f9568530 108
7c9f7038
JK
109static int null_termination;
110static enum {
111 STATUS_FORMAT_LONG,
112 STATUS_FORMAT_SHORT,
4b05548f 113 STATUS_FORMAT_PORCELAIN
7c9f7038 114} status_format = STATUS_FORMAT_LONG;
05a59a08 115static int status_show_branch;
7c9f7038 116
f9568530
JS
117static int opt_parse_m(const struct option *opt, const char *arg, int unset)
118{
119 struct strbuf *buf = opt->value;
120 if (unset)
121 strbuf_setlen(buf, 0);
122 else {
123 strbuf_addstr(buf, arg);
3b6aeb3c 124 strbuf_addstr(buf, "\n\n");
f9568530
JS
125 }
126 return 0;
127}
f5bbc322
KH
128
129static struct option builtin_commit_options[] = {
8c839683
JN
130 OPT__QUIET(&quiet, "suppress summary after successful commit"),
131 OPT__VERBOSE(&verbose, "show diff in commit message template"),
f5bbc322 132
e97ca7f4 133 OPT_GROUP("Commit message options"),
726c4e3d 134 OPT_FILENAME('F', "file", &logfile, "read message from file"),
23c6a803
MG
135 OPT_STRING(0, "author", &force_author, "author", "override author for commit"),
136 OPT_STRING(0, "date", &force_date, "date", "override date for commit"),
137 OPT_CALLBACK('m', "message", &message, "message", "commit message", opt_parse_m),
138 OPT_STRING('c', "reedit-message", &edit_message, "commit", "reuse and edit message from specified commit"),
139 OPT_STRING('C', "reuse-message", &use_message, "commit", "reuse message from specified commit"),
140 OPT_STRING(0, "fixup", &fixup_message, "commit", "use autosquash formatted message to fixup specified commit"),
141 OPT_STRING(0, "squash", &squash_message, "commit", "use autosquash formatted message to squash specified commit"),
f1f509cc 142 OPT_BOOLEAN(0, "reset-author", &renew_authorship, "the commit is authored by me now (used with -C/-c/--amend)"),
362b0dd5 143 OPT_BOOLEAN('s', "signoff", &signoff, "add Signed-off-by:"),
df217ed6 144 OPT_FILENAME('t', "template", &template_file, "use specified template file"),
ca1ba201 145 OPT_BOOL('e', "edit", &edit_flag, "force edit of commit"),
e97ca7f4 146 OPT_STRING(0, "cleanup", &cleanup_arg, "default", "how to strip spaces and #comments from message"),
bed575e4 147 OPT_BOOLEAN(0, "status", &include_status, "include status in commit message template"),
e97ca7f4 148 /* end commit message options */
f5bbc322
KH
149
150 OPT_GROUP("Commit contents options"),
151 OPT_BOOLEAN('a', "all", &all, "commit all changed files"),
152 OPT_BOOLEAN('i', "include", &also, "add specified files to index for commit"),
153 OPT_BOOLEAN(0, "interactive", &interactive, "interactively add files"),
b4bd4668 154 OPT_BOOLEAN('p', "patch", &patch_interactive, "interactively add changes"),
d4ba07ca 155 OPT_BOOLEAN('o', "only", &only, "commit only specified files"),
f5bbc322 156 OPT_BOOLEAN('n', "no-verify", &no_verify, "bypass pre-commit hook"),
3a5d13a3 157 OPT_BOOLEAN(0, "dry-run", &dry_run, "show what would be committed"),
7c9f7038
JK
158 OPT_SET_INT(0, "short", &status_format, "show status concisely",
159 STATUS_FORMAT_SHORT),
05a59a08 160 OPT_BOOLEAN(0, "branch", &status_show_branch, "show branch information"),
7c9f7038 161 OPT_SET_INT(0, "porcelain", &status_format,
ba9d7fe1 162 "machine-readable output", STATUS_FORMAT_PORCELAIN),
7c9f7038
JK
163 OPT_BOOLEAN('z', "null", &null_termination,
164 "terminate entries with NUL"),
f5bbc322 165 OPT_BOOLEAN(0, "amend", &amend, "amend previous commit"),
6f6bee3b 166 OPT_BOOLEAN(0, "no-post-rewrite", &no_post_rewrite, "bypass post-rewrite hook"),
8547090c 167 { OPTION_STRING, 'u', "untracked-files", &untracked_files_arg, "mode", "show untracked files, optional modes: all, normal, no. (Default: all)", PARSE_OPT_OPTARG, NULL, (intptr_t)"all" },
e97ca7f4 168 /* end commit contents options */
f5bbc322 169
c9b5fde7
ÆAB
170 { OPTION_BOOLEAN, 0, "allow-empty", &allow_empty, NULL,
171 "ok to record an empty change",
172 PARSE_OPT_NOARG | PARSE_OPT_HIDDEN },
173 { OPTION_BOOLEAN, 0, "allow-empty-message", &allow_empty_message, NULL,
174 "ok to record a change with an empty message",
175 PARSE_OPT_NOARG | PARSE_OPT_HIDDEN },
176
f5bbc322
KH
177 OPT_END()
178};
179
37f7a857
JS
180static void determine_whence(struct wt_status *s)
181{
182 if (file_exists(git_path("MERGE_HEAD")))
183 whence = FROM_MERGE;
184 else if (file_exists(git_path("CHERRY_PICK_HEAD")))
185 whence = FROM_CHERRY_PICK;
186 else
187 whence = FROM_COMMIT;
188 if (s)
189 s->whence = whence;
190}
191
192static const char *whence_s(void)
193{
194 char *s = "";
195
196 switch (whence) {
197 case FROM_COMMIT:
198 break;
199 case FROM_MERGE:
200 s = "merge";
201 break;
202 case FROM_CHERRY_PICK:
203 s = "cherry-pick";
204 break;
205 }
206
207 return s;
208}
209
2888605c
JH
210static void rollback_index_files(void)
211{
212 switch (commit_style) {
213 case COMMIT_AS_IS:
214 break; /* nothing to do */
215 case COMMIT_NORMAL:
216 rollback_lock_file(&index_lock);
217 break;
218 case COMMIT_PARTIAL:
219 rollback_lock_file(&index_lock);
220 rollback_lock_file(&false_lock);
221 break;
222 }
223}
224
5a9dd399 225static int commit_index_files(void)
2888605c 226{
5a9dd399
BC
227 int err = 0;
228
2888605c
JH
229 switch (commit_style) {
230 case COMMIT_AS_IS:
231 break; /* nothing to do */
232 case COMMIT_NORMAL:
5a9dd399 233 err = commit_lock_file(&index_lock);
2888605c
JH
234 break;
235 case COMMIT_PARTIAL:
5a9dd399 236 err = commit_lock_file(&index_lock);
2888605c
JH
237 rollback_lock_file(&false_lock);
238 break;
239 }
5a9dd399
BC
240
241 return err;
2888605c
JH
242}
243
244/*
245 * Take a union of paths in the index and the named tree (typically, "HEAD"),
246 * and return the paths that match the given pattern in list.
247 */
c455c87c 248static int list_paths(struct string_list *list, const char *with_tree,
2888605c
JH
249 const char *prefix, const char **pattern)
250{
251 int i;
252 char *m;
253
254 for (i = 0; pattern[i]; i++)
255 ;
256 m = xcalloc(1, i);
257
8894d535 258 if (with_tree) {
f950eb95 259 char *max_prefix = common_prefix(pattern);
5879f568
CB
260 overlay_tree_on_cache(with_tree, max_prefix ? max_prefix : prefix);
261 free(max_prefix);
8894d535 262 }
2888605c
JH
263
264 for (i = 0; i < active_nr; i++) {
265 struct cache_entry *ce = active_cache[i];
7fce6e3c
NTND
266 struct string_list_item *item;
267
7a51ed66 268 if (ce->ce_flags & CE_UPDATE)
e87e22d0 269 continue;
0b50922a 270 if (!match_pathspec(pattern, ce->name, ce_namelen(ce), 0, m))
2888605c 271 continue;
78a395d3 272 item = string_list_insert(list, ce->name);
7fce6e3c
NTND
273 if (ce_skip_worktree(ce))
274 item->util = item; /* better a valid pointer than a fake one */
2888605c
JH
275 }
276
0f64bfa9 277 return report_path_error(m, pattern, prefix);
2888605c
JH
278}
279
c455c87c 280static void add_remove_files(struct string_list *list)
2888605c
JH
281{
282 int i;
283 for (i = 0; i < list->nr; i++) {
d177cab0 284 struct stat st;
c455c87c 285 struct string_list_item *p = &(list->items[i]);
d177cab0 286
7fce6e3c
NTND
287 /* p->util is skip-worktree */
288 if (p->util)
b4d1690d 289 continue;
d177cab0 290
c455c87c
JS
291 if (!lstat(p->string, &st)) {
292 if (add_to_cache(p->string, &st, 0))
8a6179bc 293 die(_("updating files failed"));
960b8ad1 294 } else
c455c87c 295 remove_file_from_cache(p->string);
2888605c
JH
296 }
297}
298
06bb643b 299static void create_base_index(const struct commit *current_head)
fa9dcf80
LT
300{
301 struct tree *tree;
302 struct unpack_trees_options opts;
303 struct tree_desc t;
304
06bb643b 305 if (!current_head) {
fa9dcf80
LT
306 discard_cache();
307 return;
308 }
309
310 memset(&opts, 0, sizeof(opts));
311 opts.head_idx = 1;
312 opts.index_only = 1;
313 opts.merge = 1;
34110cd4
LT
314 opts.src_index = &the_index;
315 opts.dst_index = &the_index;
fa9dcf80
LT
316
317 opts.fn = oneway_merge;
06bb643b 318 tree = parse_tree_indirect(current_head->object.sha1);
fa9dcf80 319 if (!tree)
8a6179bc 320 die(_("failed to unpack HEAD tree object"));
fa9dcf80
LT
321 parse_tree(tree);
322 init_tree_desc(&t, tree->buffer, tree->size);
203a2fe1
DB
323 if (unpack_trees(1, &t, &opts))
324 exit(128); /* We've already reported the error, finish dying */
fa9dcf80
LT
325}
326
d38a30df
MM
327static void refresh_cache_or_die(int refresh_flags)
328{
329 /*
330 * refresh_flags contains REFRESH_QUIET, so the only errors
331 * are for unmerged entries.
332 */
333 if (refresh_cache(refresh_flags | REFRESH_IN_PORCELAIN))
334 die_resolve_conflict("commit");
335}
336
06bb643b
JH
337static char *prepare_index(int argc, const char **argv, const char *prefix,
338 const struct commit *current_head, int is_status)
f5bbc322
KH
339{
340 int fd;
c455c87c 341 struct string_list partial;
2888605c 342 const char **pathspec = NULL;
1020d087 343 char *old_index_env = NULL;
50b7e70f 344 int refresh_flags = REFRESH_QUIET;
f5bbc322 345
50b7e70f
JH
346 if (is_status)
347 refresh_flags |= REFRESH_UNMERGED;
f5bbc322 348
f64fe7b4
JH
349 if (*argv)
350 pathspec = get_pathspec(prefix, argv);
2888605c 351
671c9b7e 352 if (read_cache_preload(pathspec) < 0)
8a6179bc 353 die(_("index file corrupt"));
671c9b7e 354
1020d087
CI
355 if (interactive) {
356 fd = hold_locked_index(&index_lock, 1);
357
358 refresh_cache_or_die(refresh_flags);
359
360 if (write_cache(fd, active_cache, active_nr) ||
361 close_lock_file(&index_lock))
362 die(_("unable to create temporary index"));
363
364 old_index_env = getenv(INDEX_ENVIRONMENT);
365 setenv(INDEX_ENVIRONMENT, index_lock.filename, 1);
366
b4bd4668 367 if (interactive_add(argc, argv, prefix, patch_interactive) != 0)
1020d087
CI
368 die(_("interactive add failed"));
369
370 if (old_index_env && *old_index_env)
371 setenv(INDEX_ENVIRONMENT, old_index_env, 1);
372 else
373 unsetenv(INDEX_ENVIRONMENT);
374
375 discard_cache();
376 read_cache_from(index_lock.filename);
377
378 commit_style = COMMIT_NORMAL;
379 return index_lock.filename;
380 }
381
2888605c
JH
382 /*
383 * Non partial, non as-is commit.
384 *
385 * (1) get the real index;
386 * (2) update the_index as necessary;
387 * (3) write the_index out to the real index (still locked);
388 * (4) return the name of the locked index file.
389 *
390 * The caller should run hooks on the locked real index, and
391 * (A) if all goes well, commit the real index;
392 * (B) on failure, rollback the real index.
393 */
394 if (all || (also && pathspec && *pathspec)) {
1f2362a9 395 fd = hold_locked_index(&index_lock, 1);
7ae02a30 396 add_files_to_cache(also ? prefix : NULL, pathspec, 0);
d38a30df 397 refresh_cache_or_die(refresh_flags);
11c8a74a 398 update_main_cache_tree(1);
4ed7cd3a
BC
399 if (write_cache(fd, active_cache, active_nr) ||
400 close_lock_file(&index_lock))
8a6179bc 401 die(_("unable to write new_index file"));
2888605c
JH
402 commit_style = COMMIT_NORMAL;
403 return index_lock.filename;
f5bbc322
KH
404 }
405
2888605c
JH
406 /*
407 * As-is commit.
408 *
409 * (1) return the name of the real index file.
410 *
73276235
MH
411 * The caller should run hooks on the real index,
412 * and create commit from the_index.
2888605c
JH
413 * We still need to refresh the index here.
414 */
415 if (!pathspec || !*pathspec) {
416 fd = hold_locked_index(&index_lock, 1);
d38a30df 417 refresh_cache_or_die(refresh_flags);
d5f5d0a9 418 if (active_cache_changed) {
11c8a74a 419 update_main_cache_tree(1);
d5f5d0a9
JH
420 if (write_cache(fd, active_cache, active_nr) ||
421 commit_locked_index(&index_lock))
8a6179bc 422 die(_("unable to write new_index file"));
d5f5d0a9
JH
423 } else {
424 rollback_lock_file(&index_lock);
425 }
2888605c 426 commit_style = COMMIT_AS_IS;
f5bbc322
KH
427 return get_index_file();
428 }
429
2888605c
JH
430 /*
431 * A partial commit.
432 *
433 * (0) find the set of affected paths;
434 * (1) get lock on the real index file;
435 * (2) update the_index with the given paths;
436 * (3) write the_index out to the real index (still locked);
437 * (4) get lock on the false index file;
438 * (5) reset the_index from HEAD;
439 * (6) update the_index the same way as (2);
440 * (7) write the_index out to the false index file;
441 * (8) return the name of the false index file (still locked);
442 *
443 * The caller should run hooks on the locked false index, and
444 * create commit from it. Then
445 * (A) if all goes well, commit the real index;
446 * (B) on failure, rollback the real index;
447 * In either case, rollback the false index.
448 */
449 commit_style = COMMIT_PARTIAL;
450
37f7a857 451 if (whence != FROM_COMMIT)
6c80cd29 452 die(_("cannot do a partial commit during a %s."), whence_s());
2888605c
JH
453
454 memset(&partial, 0, sizeof(partial));
c455c87c 455 partial.strdup_strings = 1;
06bb643b 456 if (list_paths(&partial, !current_head ? NULL : "HEAD", prefix, pathspec))
2888605c
JH
457 exit(1);
458
459 discard_cache();
460 if (read_cache() < 0)
8a6179bc 461 die(_("cannot read the index"));
2888605c
JH
462
463 fd = hold_locked_index(&index_lock, 1);
464 add_remove_files(&partial);
ef12b50d 465 refresh_cache(REFRESH_QUIET);
4ed7cd3a
BC
466 if (write_cache(fd, active_cache, active_nr) ||
467 close_lock_file(&index_lock))
8a6179bc 468 die(_("unable to write new_index file"));
f5bbc322 469
2888605c 470 fd = hold_lock_file_for_update(&false_lock,
a157400c
JH
471 git_path("next-index-%"PRIuMAX,
472 (uintmax_t) getpid()),
acd3b9ec 473 LOCK_DIE_ON_ERROR);
fa9dcf80 474
06bb643b 475 create_base_index(current_head);
2888605c 476 add_remove_files(&partial);
d37d3203 477 refresh_cache(REFRESH_QUIET);
f5bbc322 478
4ed7cd3a
BC
479 if (write_cache(fd, active_cache, active_nr) ||
480 close_lock_file(&false_lock))
8a6179bc 481 die(_("unable to write temporary index file"));
959ba670
JK
482
483 discard_cache();
484 read_cache_from(false_lock.filename);
485
2888605c 486 return false_lock.filename;
f5bbc322
KH
487}
488
d249b098
JH
489static int run_status(FILE *fp, const char *index_file, const char *prefix, int nowarn,
490 struct wt_status *s)
f5bbc322 491{
76e2f7ce
JH
492 unsigned char sha1[20];
493
d249b098
JH
494 if (s->relative_paths)
495 s->prefix = prefix;
f5bbc322
KH
496
497 if (amend) {
d249b098
JH
498 s->amend = 1;
499 s->reference = "HEAD^1";
f5bbc322 500 }
d249b098
JH
501 s->verbose = verbose;
502 s->index_file = index_file;
503 s->fp = fp;
504 s->nowarn = nowarn;
76e2f7ce 505 s->is_initial = get_sha1(s->reference, sha1) ? 1 : 0;
f5bbc322 506
76e2f7ce 507 wt_status_collect(s);
7c9f7038
JK
508
509 switch (status_format) {
510 case STATUS_FORMAT_SHORT:
05a59a08 511 wt_shortstatus_print(s, null_termination, status_show_branch);
7c9f7038
JK
512 break;
513 case STATUS_FORMAT_PORCELAIN:
4a7cc2fd 514 wt_porcelain_print(s, null_termination);
7c9f7038
JK
515 break;
516 case STATUS_FORMAT_LONG:
517 wt_status_print(s);
518 break;
519 }
f5bbc322 520
d249b098 521 return s->commitable;
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
f5bbc322
KH
529static const char sign_off_header[] = "Signed-off-by: ";
530
4c28e4ad 531static void determine_author_info(struct strbuf *author_ident)
a45d46ba
SB
532{
533 char *name, *email, *date;
534
535 name = getenv("GIT_AUTHOR_NAME");
536 email = getenv("GIT_AUTHOR_EMAIL");
537 date = getenv("GIT_AUTHOR_DATE");
538
37f7a857 539 if (author_message) {
a45d46ba
SB
540 const char *a, *lb, *rb, *eol;
541
37f7a857 542 a = strstr(author_message_buffer, "\nauthor ");
a45d46ba 543 if (!a)
6c80cd29 544 die(_("invalid commit: %s"), author_message);
a45d46ba 545
fb7749e4
JN
546 lb = strchrnul(a + strlen("\nauthor "), '<');
547 rb = strchrnul(lb, '>');
548 eol = strchrnul(rb, '\n');
549 if (!*lb || !*rb || !*eol)
6c80cd29 550 die(_("invalid commit: %s"), author_message);
a45d46ba 551
fb7749e4
JN
552 if (lb == a + strlen("\nauthor "))
553 /* \nauthor <foo@example.com> */
554 name = xcalloc(1, 1);
555 else
556 name = xmemdupz(a + strlen("\nauthor "),
557 (lb - strlen(" ") -
558 (a + strlen("\nauthor "))));
559 email = xmemdupz(lb + strlen("<"), rb - (lb + strlen("<")));
560 date = xmemdupz(rb + strlen("> "), eol - (rb + strlen("> ")));
a45d46ba
SB
561 }
562
563 if (force_author) {
564 const char *lb = strstr(force_author, " <");
565 const char *rb = strchr(force_author, '>');
566
567 if (!lb || !rb)
8a6179bc 568 die(_("malformed --author parameter"));
a45d46ba
SB
569 name = xstrndup(force_author, lb - force_author);
570 email = xstrndup(lb + 2, rb - (lb + 2));
571 }
572
02b47cd7
MV
573 if (force_date)
574 date = force_date;
4c28e4ad
JH
575 strbuf_addstr(author_ident, fmt_ident(name, email, date,
576 IDENT_ERROR_ON_NO_NAME));
a45d46ba
SB
577}
578
c1e01b0c
DB
579static int ends_rfc2822_footer(struct strbuf *sb)
580{
581 int ch;
582 int hit = 0;
583 int i, j, k;
584 int len = sb->len;
585 int first = 1;
586 const char *buf = sb->buf;
587
588 for (i = len - 1; i > 0; i--) {
589 if (hit && buf[i] == '\n')
590 break;
591 hit = (buf[i] == '\n');
592 }
593
594 while (i < len - 1 && buf[i] == '\n')
595 i++;
596
597 for (; i < len; i = k) {
598 for (k = i; k < len && buf[k] != '\n'; k++)
599 ; /* do nothing */
600 k++;
601
602 if ((buf[k] == ' ' || buf[k] == '\t') && !first)
603 continue;
604
605 first = 0;
606
607 for (j = 0; i + j < len; j++) {
608 ch = buf[i + j];
609 if (ch == ':')
610 break;
611 if (isalnum(ch) ||
612 (ch == '-'))
613 continue;
614 return 0;
615 }
616 }
617 return 1;
618}
619
4c28e4ad
JH
620static char *cut_ident_timestamp_part(char *string)
621{
622 char *ket = strrchr(string, '>');
623 if (!ket || ket[1] != ' ')
8a6179bc 624 die(_("Malformed ident string: '%s'"), string);
4c28e4ad
JH
625 *++ket = '\0';
626 return ket;
627}
628
d249b098 629static int prepare_to_commit(const char *index_file, const char *prefix,
06bb643b 630 struct commit *current_head,
4c28e4ad
JH
631 struct wt_status *s,
632 struct strbuf *author_ident)
f5bbc322
KH
633{
634 struct stat statbuf;
4c28e4ad 635 struct strbuf committer_ident = STRBUF_INIT;
bc5d248a 636 int commitable, saved_color_setting;
f285a2d7 637 struct strbuf sb = STRBUF_INIT;
f5bbc322 638 char *buffer;
8089c85b
PB
639 const char *hook_arg1 = NULL;
640 const char *hook_arg2 = NULL;
bb1ae3f6 641 int ident_shown = 0;
8b1ae678 642 int clean_message_contents = (cleanup_mode != CLEANUP_NONE);
f5bbc322 643
ec84bd00
PB
644 if (!no_verify && run_hook(index_file, "pre-commit", NULL))
645 return 0;
f5bbc322 646
89ac1223
PN
647 if (squash_message) {
648 /*
649 * Insert the proper subject line before other commit
650 * message options add their content.
651 */
652 if (use_message && !strcmp(use_message, squash_message))
653 strbuf_addstr(&sb, "squash! ");
654 else {
655 struct pretty_print_context ctx = {0};
656 struct commit *c;
657 c = lookup_commit_reference_by_name(squash_message);
658 if (!c)
8a6179bc 659 die(_("could not lookup commit %s"), squash_message);
89ac1223
PN
660 ctx.output_encoding = get_commit_output_encoding();
661 format_commit_message(c, "squash! %s\n\n", &sb,
662 &ctx);
663 }
664 }
665
f9568530
JS
666 if (message.len) {
667 strbuf_addbuf(&sb, &message);
8089c85b 668 hook_arg1 = "message";
f5bbc322
KH
669 } else if (logfile && !strcmp(logfile, "-")) {
670 if (isatty(0))
8a6179bc 671 fprintf(stderr, _("(reading log message from standard input)\n"));
f5bbc322 672 if (strbuf_read(&sb, 0, 0) < 0)
8a6179bc 673 die_errno(_("could not read log from standard input"));
8089c85b 674 hook_arg1 = "message";
f5bbc322
KH
675 } else if (logfile) {
676 if (strbuf_read_file(&sb, logfile, 0) < 0)
8a6179bc 677 die_errno(_("could not read log file '%s'"),
d824cbba 678 logfile);
8089c85b 679 hook_arg1 = "message";
f5bbc322
KH
680 } else if (use_message) {
681 buffer = strstr(use_message_buffer, "\n\n");
682 if (!buffer || buffer[2] == '\0')
8a6179bc 683 die(_("commit has empty message"));
f5bbc322 684 strbuf_add(&sb, buffer + 2, strlen(buffer + 2));
8089c85b
PB
685 hook_arg1 = "commit";
686 hook_arg2 = use_message;
d71b8ba7
PN
687 } else if (fixup_message) {
688 struct pretty_print_context ctx = {0};
689 struct commit *commit;
690 commit = lookup_commit_reference_by_name(fixup_message);
691 if (!commit)
8a6179bc 692 die(_("could not lookup commit %s"), fixup_message);
d71b8ba7
PN
693 ctx.output_encoding = get_commit_output_encoding();
694 format_commit_message(commit, "fixup! %s\n\n",
695 &sb, &ctx);
696 hook_arg1 = "message";
f5bbc322
KH
697 } else if (!stat(git_path("MERGE_MSG"), &statbuf)) {
698 if (strbuf_read_file(&sb, git_path("MERGE_MSG"), 0) < 0)
8a6179bc 699 die_errno(_("could not read MERGE_MSG"));
8089c85b 700 hook_arg1 = "merge";
f5bbc322
KH
701 } else if (!stat(git_path("SQUASH_MSG"), &statbuf)) {
702 if (strbuf_read_file(&sb, git_path("SQUASH_MSG"), 0) < 0)
8a6179bc 703 die_errno(_("could not read SQUASH_MSG"));
8089c85b 704 hook_arg1 = "squash";
2140b140 705 } else if (template_file) {
f5bbc322 706 if (strbuf_read_file(&sb, template_file, 0) < 0)
8a6179bc 707 die_errno(_("could not read '%s'"), template_file);
8089c85b 708 hook_arg1 = "template";
8b1ae678 709 clean_message_contents = 0;
f5bbc322
KH
710 }
711
8089c85b 712 /*
37f7a857
JS
713 * The remaining cases don't modify the template message, but
714 * just set the argument(s) to the prepare-commit-msg hook.
8089c85b 715 */
37f7a857 716 else if (whence == FROM_MERGE)
8089c85b 717 hook_arg1 = "merge";
37f7a857
JS
718 else if (whence == FROM_CHERRY_PICK) {
719 hook_arg1 = "commit";
720 hook_arg2 = "CHERRY_PICK_HEAD";
721 }
8089c85b 722
89ac1223
PN
723 if (squash_message) {
724 /*
725 * If squash_commit was used for the commit subject,
726 * then we're possibly hijacking other commit log options.
727 * Reset the hook args to tell the real story.
728 */
729 hook_arg1 = "message";
730 hook_arg2 = "";
731 }
732
37f3012f
JN
733 s->fp = fopen(git_path(commit_editmsg), "w");
734 if (s->fp == NULL)
8a6179bc 735 die_errno(_("could not open '%s'"), git_path(commit_editmsg));
f5bbc322 736
8b1ae678 737 if (clean_message_contents)
5f065737 738 stripspace(&sb, 0);
f5bbc322
KH
739
740 if (signoff) {
f285a2d7 741 struct strbuf sob = STRBUF_INIT;
13208572
JS
742 int i;
743
13208572 744 strbuf_addstr(&sob, sign_off_header);
d9ccfe77
JH
745 strbuf_addstr(&sob, fmt_name(getenv("GIT_COMMITTER_NAME"),
746 getenv("GIT_COMMITTER_EMAIL")));
13208572 747 strbuf_addch(&sob, '\n');
13208572
JS
748 for (i = sb.len - 1; i > 0 && sb.buf[i - 1] != '\n'; i--)
749 ; /* do nothing */
2150554b 750 if (prefixcmp(sb.buf + i, sob.buf)) {
e5138436 751 if (!i || !ends_rfc2822_footer(&sb))
2150554b 752 strbuf_addch(&sb, '\n');
13208572 753 strbuf_addbuf(&sb, &sob);
2150554b 754 }
13208572 755 strbuf_release(&sob);
f5bbc322
KH
756 }
757
37f3012f 758 if (fwrite(sb.buf, 1, sb.len, s->fp) < sb.len)
8a6179bc 759 die_errno(_("could not write commit template"));
13208572 760
f5bbc322
KH
761 strbuf_release(&sb);
762
4c28e4ad
JH
763 /* This checks and barfs if author is badly specified */
764 determine_author_info(author_ident);
e83dbe80 765
bb1ae3f6 766 /* This checks if committer ident is explicitly given */
4c28e4ad 767 strbuf_addstr(&committer_ident, git_committer_info(0));
bed575e4 768 if (use_editor && include_status) {
4c28e4ad 769 char *ai_tmp, *ci_tmp;
37f7a857 770 if (whence != FROM_COMMIT)
b926c0d1 771 status_printf_ln(s, GIT_COLOR_NORMAL,
fe8165cd 772 _("\n"
f4784b3e 773 "It looks like you may be committing a %s.\n"
b926c0d1
JN
774 "If this is not correct, please remove the file\n"
775 " %s\n"
776 "and try again.\n"
fe8165cd 777 ""),
37f7a857
JS
778 whence_s(),
779 git_path(whence == FROM_MERGE
780 ? "MERGE_HEAD"
781 : "CHERRY_PICK_HEAD"));
ec84bd00 782
b926c0d1
JN
783 fprintf(s->fp, "\n");
784 status_printf(s, GIT_COLOR_NORMAL,
0b430a17 785 _("Please enter the commit message for your changes."));
ec84bd00 786 if (cleanup_mode == CLEANUP_ALL)
b926c0d1 787 status_printf_more(s, GIT_COLOR_NORMAL,
0b430a17 788 _(" Lines starting\n"
b926c0d1 789 "with '#' will be ignored, and an empty"
0b430a17 790 " message aborts the commit.\n"));
ec84bd00 791 else /* CLEANUP_SPACE, that is. */
b926c0d1 792 status_printf_more(s, GIT_COLOR_NORMAL,
0b430a17 793 _(" Lines starting\n"
b926c0d1 794 "with '#' will be kept; you may remove them"
fdc7c811 795 " yourself if you want to.\n"
0b430a17 796 "An empty message aborts the commit.\n"));
ec84bd00 797 if (only_include_assumed)
b926c0d1
JN
798 status_printf_ln(s, GIT_COLOR_NORMAL,
799 "%s", only_include_assumed);
ec84bd00 800
4c28e4ad
JH
801 ai_tmp = cut_ident_timestamp_part(author_ident->buf);
802 ci_tmp = cut_ident_timestamp_part(committer_ident.buf);
803 if (strcmp(author_ident->buf, committer_ident.buf))
b926c0d1 804 status_printf_ln(s, GIT_COLOR_NORMAL,
fe8165cd
ÆAB
805 _("%s"
806 "Author: %s"),
b926c0d1 807 ident_shown++ ? "" : "\n",
4c28e4ad 808 author_ident->buf);
e83dbe80 809
5aeb3a3a 810 if (!user_ident_sufficiently_given())
b926c0d1 811 status_printf_ln(s, GIT_COLOR_NORMAL,
fe8165cd
ÆAB
812 _("%s"
813 "Committer: %s"),
b926c0d1 814 ident_shown++ ? "" : "\n",
4c28e4ad 815 committer_ident.buf);
bb1ae3f6
SB
816
817 if (ident_shown)
b926c0d1 818 status_printf_ln(s, GIT_COLOR_NORMAL, "");
bb1ae3f6 819
d249b098
JH
820 saved_color_setting = s->use_color;
821 s->use_color = 0;
37f3012f 822 commitable = run_status(s->fp, index_file, prefix, 1, s);
d249b098 823 s->use_color = saved_color_setting;
4c28e4ad
JH
824
825 *ai_tmp = ' ';
826 *ci_tmp = ' ';
ec84bd00 827 } else {
d616a239 828 unsigned char sha1[20];
fbcf1184 829 const char *parent = "HEAD";
7168624c 830
7168624c 831 if (!active_nr && read_cache() < 0)
8a6179bc 832 die(_("Cannot read index"));
7168624c 833
fbcf1184
JH
834 if (amend)
835 parent = "HEAD^1";
836
d616a239 837 if (get_sha1(parent, sha1))
ec84bd00 838 commitable = !!active_nr;
75f3ff2e
SB
839 else
840 commitable = index_differs_from(parent, 0);
ec84bd00 841 }
4c28e4ad 842 strbuf_release(&committer_ident);
d616a239 843
37f3012f 844 fclose(s->fp);
7168624c 845
37f7a857
JS
846 /*
847 * Reject an attempt to record a non-merge empty commit without
848 * explicit --allow-empty. In the cherry-pick case, it may be
849 * empty due to conflict resolution, which the user should okay.
850 */
851 if (!commitable && whence != FROM_MERGE && !allow_empty &&
06bb643b 852 !(amend && is_a_merge(current_head))) {
d249b098 853 run_status(stdout, index_file, prefix, 0, s);
f197ed2f 854 if (amend)
fc88e316 855 fputs(_(empty_amend_advice), stderr);
37f7a857 856 else if (whence == FROM_CHERRY_PICK)
6c80cd29 857 fputs(_(empty_cherry_pick_advice), stderr);
ec84bd00 858 return 0;
7168624c
AR
859 }
860
ec84bd00
PB
861 /*
862 * Re-read the index as pre-commit hook could have updated it,
863 * and write it out as a tree. We must do this before we invoke
864 * the editor and after we invoke run_status above.
865 */
866 discard_cache();
867 read_cache_from(index_file);
996277c5 868 if (update_main_cache_tree(0)) {
8a6179bc 869 error(_("Error building trees"));
ec84bd00 870 return 0;
7168624c 871 }
f5bbc322 872
8089c85b
PB
873 if (run_hook(index_file, "prepare-commit-msg",
874 git_path(commit_editmsg), hook_arg1, hook_arg2, NULL))
875 return 0;
f5bbc322 876
ec84bd00
PB
877 if (use_editor) {
878 char index[PATH_MAX];
66dbfd55
GV
879 const char *env[2] = { NULL };
880 env[0] = index;
ec84bd00 881 snprintf(index, sizeof(index), "GIT_INDEX_FILE=%s", index_file);
7198203a
SB
882 if (launch_editor(git_path(commit_editmsg), NULL, env)) {
883 fprintf(stderr,
8a6179bc 884 _("Please supply the message using either -m or -F option.\n"));
7198203a
SB
885 exit(1);
886 }
ec84bd00 887 }
f5bbc322 888
ec84bd00
PB
889 if (!no_verify &&
890 run_hook(index_file, "commit-msg", git_path(commit_editmsg), NULL)) {
891 return 0;
892 }
f5bbc322 893
ec84bd00 894 return 1;
f5bbc322
KH
895}
896
897/*
6bb6b034
MV
898 * Find out if the message in the strbuf contains only whitespace and
899 * Signed-off-by lines.
f5bbc322 900 */
6bb6b034 901static int message_is_empty(struct strbuf *sb)
f5bbc322 902{
f285a2d7 903 struct strbuf tmpl = STRBUF_INIT;
f5bbc322 904 const char *nl;
6bb6b034 905 int eol, i, start = 0;
f5bbc322 906
5f065737
AR
907 if (cleanup_mode == CLEANUP_NONE && sb->len)
908 return 0;
909
f5bbc322 910 /* See if the template is just a prefix of the message. */
f5bbc322 911 if (template_file && strbuf_read_file(&tmpl, template_file, 0) > 0) {
5f065737 912 stripspace(&tmpl, cleanup_mode == CLEANUP_ALL);
f5bbc322
KH
913 if (start + tmpl.len <= sb->len &&
914 memcmp(tmpl.buf, sb->buf + start, tmpl.len) == 0)
915 start += tmpl.len;
916 }
917 strbuf_release(&tmpl);
918
919 /* Check if the rest is just whitespace and Signed-of-by's. */
920 for (i = start; i < sb->len; i++) {
921 nl = memchr(sb->buf + i, '\n', sb->len - i);
922 if (nl)
923 eol = nl - sb->buf;
924 else
925 eol = sb->len;
926
927 if (strlen(sign_off_header) <= eol - i &&
928 !prefixcmp(sb->buf + i, sign_off_header)) {
929 i = eol;
930 continue;
931 }
932 while (i < eol)
933 if (!isspace(sb->buf[i++]))
934 return 0;
935 }
936
937 return 1;
938}
939
146ea068
JH
940static const char *find_author_by_nickname(const char *name)
941{
942 struct rev_info revs;
943 struct commit *commit;
944 struct strbuf buf = STRBUF_INIT;
945 const char *av[20];
946 int ac = 0;
947
948 init_revisions(&revs, NULL);
949 strbuf_addf(&buf, "--author=%s", name);
950 av[++ac] = "--all";
951 av[++ac] = "-i";
952 av[++ac] = buf.buf;
953 av[++ac] = NULL;
954 setup_revisions(ac, av, &revs, NULL);
955 prepare_revision_walk(&revs);
956 commit = get_revision(&revs);
957 if (commit) {
dd2e794a
TR
958 struct pretty_print_context ctx = {0};
959 ctx.date_mode = DATE_NORMAL;
146ea068 960 strbuf_release(&buf);
dd2e794a 961 format_commit_message(commit, "%an <%ae>", &buf, &ctx);
146ea068
JH
962 return strbuf_detach(&buf, NULL);
963 }
8a6179bc 964 die(_("No existing author found with '%s'"), name);
146ea068
JH
965}
966
76e2f7ce
JH
967
968static void handle_untracked_files_arg(struct wt_status *s)
969{
970 if (!untracked_files_arg)
971 ; /* default already initialized */
972 else if (!strcmp(untracked_files_arg, "no"))
973 s->show_untracked_files = SHOW_NO_UNTRACKED_FILES;
974 else if (!strcmp(untracked_files_arg, "normal"))
975 s->show_untracked_files = SHOW_NORMAL_UNTRACKED_FILES;
976 else if (!strcmp(untracked_files_arg, "all"))
977 s->show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
978 else
8a6179bc 979 die(_("Invalid untracked files mode '%s'"), untracked_files_arg);
76e2f7ce
JH
980}
981
37f7a857
JS
982static const char *read_commit_message(const char *name)
983{
984 const char *out_enc, *out;
985 struct commit *commit;
986
987 commit = lookup_commit_reference_by_name(name);
988 if (!commit)
6c80cd29 989 die(_("could not lookup commit %s"), name);
37f7a857
JS
990 out_enc = get_commit_output_encoding();
991 out = logmsg_reencode(commit, out_enc);
992
993 /*
994 * If we failed to reencode the buffer, just copy it
995 * byte for byte so the user can try to fix it up.
996 * This also handles the case where input and output
997 * encodings are identical.
998 */
999 if (out == NULL)
1000 out = xstrdup(commit->buffer);
1001 return out;
1002}
1003
2f02b25f 1004static int parse_and_validate_options(int argc, const char *argv[],
dbd0f5c7 1005 const char * const usage[],
d249b098 1006 const char *prefix,
06bb643b 1007 struct commit *current_head,
d249b098 1008 struct wt_status *s)
f5bbc322
KH
1009{
1010 int f = 0;
1011
37782920
SB
1012 argc = parse_options(argc, argv, prefix, builtin_commit_options, usage,
1013 0);
f5bbc322 1014
146ea068
JH
1015 if (force_author && !strchr(force_author, '>'))
1016 force_author = find_author_by_nickname(force_author);
1017
c51f6cee 1018 if (force_author && renew_authorship)
8a6179bc 1019 die(_("Using both --reset-author and --author does not make sense"));
c51f6cee 1020
d71b8ba7 1021 if (logfile || message.len || use_message || fixup_message)
4803466f 1022 use_editor = 0;
ca1ba201
JH
1023 if (0 <= edit_flag)
1024 use_editor = edit_flag;
406400ce
PB
1025 if (!use_editor)
1026 setenv("GIT_EDITOR", ":", 1);
f5bbc322 1027
f5bbc322 1028 /* Sanity check options */
06bb643b 1029 if (amend && !current_head)
8a6179bc 1030 die(_("You have nothing to amend."));
37f7a857 1031 if (amend && whence != FROM_COMMIT)
6c80cd29 1032 die(_("You are in the middle of a %s -- cannot amend."), whence_s());
89ac1223 1033 if (fixup_message && squash_message)
9c227655 1034 die(_("Options --squash and --fixup cannot be used together"));
f5bbc322
KH
1035 if (use_message)
1036 f++;
1037 if (edit_message)
1038 f++;
d71b8ba7
PN
1039 if (fixup_message)
1040 f++;
f5bbc322
KH
1041 if (logfile)
1042 f++;
1043 if (f > 1)
8a6179bc 1044 die(_("Only one of -c/-C/-F/--fixup can be used."));
f9568530 1045 if (message.len && f > 0)
8a6179bc 1046 die((_("Option -m cannot be combined with -c/-C/-F/--fixup.")));
f5bbc322
KH
1047 if (edit_message)
1048 use_message = edit_message;
d71b8ba7 1049 if (amend && !use_message && !fixup_message)
f5bbc322 1050 use_message = "HEAD";
37f7a857 1051 if (!use_message && whence != FROM_CHERRY_PICK && renew_authorship)
8a6179bc 1052 die(_("--reset-author can be used only with -C, -c or --amend."));
f5bbc322 1053 if (use_message) {
37f7a857
JS
1054 use_message_buffer = read_commit_message(use_message);
1055 if (!renew_authorship) {
1056 author_message = use_message;
1057 author_message_buffer = use_message_buffer;
1058 }
1059 }
1060 if (whence == FROM_CHERRY_PICK && !renew_authorship) {
1061 author_message = "CHERRY_PICK_HEAD";
1062 author_message_buffer = read_commit_message(author_message);
f5bbc322
KH
1063 }
1064
b4bd4668
CI
1065 if (patch_interactive)
1066 interactive = 1;
1067
f5bbc322 1068 if (!!also + !!only + !!all + !!interactive > 1)
b4bd4668 1069 die(_("Only one of --include/--only/--all/--interactive/--patch can be used."));
f5bbc322 1070 if (argc == 0 && (also || (only && !amend)))
8a6179bc 1071 die(_("No paths with --include/--only does not make sense."));
f5bbc322 1072 if (argc == 0 && only && amend)
8a6179bc 1073 only_include_assumed = _("Clever... amending the last one with dirty index.");
3c5283f8 1074 if (argc > 0 && !also && !only)
8a6179bc 1075 only_include_assumed = _("Explicit paths specified without -i nor -o; assuming --only paths...");
5f065737
AR
1076 if (!cleanup_arg || !strcmp(cleanup_arg, "default"))
1077 cleanup_mode = use_editor ? CLEANUP_ALL : CLEANUP_SPACE;
1078 else if (!strcmp(cleanup_arg, "verbatim"))
1079 cleanup_mode = CLEANUP_NONE;
1080 else if (!strcmp(cleanup_arg, "whitespace"))
1081 cleanup_mode = CLEANUP_SPACE;
1082 else if (!strcmp(cleanup_arg, "strip"))
1083 cleanup_mode = CLEANUP_ALL;
1084 else
8a6179bc 1085 die(_("Invalid cleanup mode %s"), cleanup_arg);
f5bbc322 1086
76e2f7ce 1087 handle_untracked_files_arg(s);
4bfee30a 1088
f5bbc322 1089 if (all && argc > 0)
8a6179bc 1090 die(_("Paths with -a does not make sense."));
f5bbc322 1091
7c9f7038
JK
1092 if (null_termination && status_format == STATUS_FORMAT_LONG)
1093 status_format = STATUS_FORMAT_PORCELAIN;
1094 if (status_format != STATUS_FORMAT_LONG)
1095 dry_run = 1;
1096
f5bbc322
KH
1097 return argc;
1098}
1099
d249b098 1100static int dry_run_commit(int argc, const char **argv, const char *prefix,
06bb643b 1101 const struct commit *current_head, struct wt_status *s)
f5bbc322 1102{
f5bbc322 1103 int commitable;
3a5d13a3 1104 const char *index_file;
f5bbc322 1105
06bb643b 1106 index_file = prepare_index(argc, argv, prefix, current_head, 1);
d249b098 1107 commitable = run_status(stdout, index_file, prefix, 0, s);
3a5d13a3 1108 rollback_index_files();
f5bbc322 1109
3a5d13a3
JH
1110 return commitable ? 0 : 1;
1111}
1112
f766b367
JH
1113static int parse_status_slot(const char *var, int offset)
1114{
1115 if (!strcasecmp(var+offset, "header"))
1116 return WT_STATUS_HEADER;
1d282327
AA
1117 if (!strcasecmp(var+offset, "branch"))
1118 return WT_STATUS_ONBRANCH;
f766b367
JH
1119 if (!strcasecmp(var+offset, "updated")
1120 || !strcasecmp(var+offset, "added"))
1121 return WT_STATUS_UPDATED;
1122 if (!strcasecmp(var+offset, "changed"))
1123 return WT_STATUS_CHANGED;
1124 if (!strcasecmp(var+offset, "untracked"))
1125 return WT_STATUS_UNTRACKED;
1126 if (!strcasecmp(var+offset, "nobranch"))
1127 return WT_STATUS_NOBRANCH;
1128 if (!strcasecmp(var+offset, "unmerged"))
1129 return WT_STATUS_UNMERGED;
8b8e8624 1130 return -1;
f766b367
JH
1131}
1132
1133static int git_status_config(const char *k, const char *v, void *cb)
1134{
1135 struct wt_status *s = cb;
1136
1137 if (!strcmp(k, "status.submodulesummary")) {
1138 int is_bool;
1139 s->submodule_summary = git_config_bool_or_int(k, v, &is_bool);
1140 if (is_bool && s->submodule_summary)
1141 s->submodule_summary = -1;
1142 return 0;
1143 }
1144 if (!strcmp(k, "status.color") || !strcmp(k, "color.status")) {
e269eb79 1145 s->use_color = git_config_colorbool(k, v);
f766b367
JH
1146 return 0;
1147 }
1148 if (!prefixcmp(k, "status.color.") || !prefixcmp(k, "color.status.")) {
1149 int slot = parse_status_slot(k, 13);
8b8e8624
JK
1150 if (slot < 0)
1151 return 0;
f766b367
JH
1152 if (!v)
1153 return config_error_nonbool(k);
1154 color_parse(v, k, s->color_palette[slot]);
1155 return 0;
1156 }
1157 if (!strcmp(k, "status.relativepaths")) {
1158 s->relative_paths = git_config_bool(k, v);
1159 return 0;
1160 }
1161 if (!strcmp(k, "status.showuntrackedfiles")) {
1162 if (!v)
1163 return config_error_nonbool(k);
1164 else if (!strcmp(v, "no"))
1165 s->show_untracked_files = SHOW_NO_UNTRACKED_FILES;
1166 else if (!strcmp(v, "normal"))
1167 s->show_untracked_files = SHOW_NORMAL_UNTRACKED_FILES;
1168 else if (!strcmp(v, "all"))
1169 s->show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
1170 else
8a6179bc 1171 return error(_("Invalid untracked files mode '%s'"), v);
f766b367
JH
1172 return 0;
1173 }
1174 return git_diff_ui_config(k, v, NULL);
1175}
1176
3a5d13a3
JH
1177int cmd_status(int argc, const char **argv, const char *prefix)
1178{
d249b098 1179 struct wt_status s;
4bb6644d 1180 int fd;
76e2f7ce 1181 unsigned char sha1[20];
9e4b7ab6 1182 static struct option builtin_status_options[] = {
fd03881a 1183 OPT__VERBOSE(&verbose, "be verbose"),
dd2be243
JK
1184 OPT_SET_INT('s', "short", &status_format,
1185 "show status concisely", STATUS_FORMAT_SHORT),
05a59a08
DKF
1186 OPT_BOOLEAN('b', "branch", &status_show_branch,
1187 "show branch information"),
6f157871 1188 OPT_SET_INT(0, "porcelain", &status_format,
ba9d7fe1 1189 "machine-readable output",
6f157871 1190 STATUS_FORMAT_PORCELAIN),
173e6c88
JH
1191 OPT_BOOLEAN('z', "null", &null_termination,
1192 "terminate entries with NUL"),
76e2f7ce
JH
1193 { OPTION_STRING, 'u', "untracked-files", &untracked_files_arg,
1194 "mode",
1195 "show untracked files, optional modes: all, normal, no. (Default: all)",
1196 PARSE_OPT_OPTARG, NULL, (intptr_t)"all" },
2381e39e
JH
1197 OPT_BOOLEAN(0, "ignored", &show_ignored_in_status,
1198 "show ignored files"),
46a958b3
JL
1199 { OPTION_STRING, 0, "ignore-submodules", &ignore_submodule_arg, "when",
1200 "ignore changes to submodules, optional when: all, dirty, untracked. (Default: all)",
1201 PARSE_OPT_OPTARG, NULL, (intptr_t)"all" },
76e2f7ce
JH
1202 OPT_END(),
1203 };
1204
5d3dd915
NTND
1205 if (argc == 2 && !strcmp(argv[1], "-h"))
1206 usage_with_options(builtin_status_usage, builtin_status_options);
1207
d249b098 1208 wt_status_prepare(&s);
302ad7a9 1209 gitmodules_config();
d249b098 1210 git_config(git_status_config, &s);
37f7a857 1211 determine_whence(&s);
76e2f7ce 1212 argc = parse_options(argc, argv, prefix,
9e4b7ab6
JH
1213 builtin_status_options,
1214 builtin_status_usage, 0);
000f97bd
BC
1215
1216 if (null_termination && status_format == STATUS_FORMAT_LONG)
1217 status_format = STATUS_FORMAT_PORCELAIN;
1218
76e2f7ce 1219 handle_untracked_files_arg(&s);
2381e39e
JH
1220 if (show_ignored_in_status)
1221 s.show_ignored_files = 1;
76e2f7ce
JH
1222 if (*argv)
1223 s.pathspec = get_pathspec(prefix, argv);
1224
149794dd 1225 read_cache_preload(s.pathspec);
688cd6d2 1226 refresh_index(&the_index, REFRESH_QUIET|REFRESH_UNMERGED, s.pathspec, NULL, NULL);
4bb6644d
MH
1227
1228 fd = hold_locked_index(&index_lock, 0);
ccdc4ec3
JH
1229 if (0 <= fd)
1230 update_index_if_able(&the_index, &index_lock);
4bb6644d 1231
76e2f7ce 1232 s.is_initial = get_sha1(s.reference, sha1) ? 1 : 0;
46a958b3 1233 s.ignore_submodule_arg = ignore_submodule_arg;
76e2f7ce
JH
1234 wt_status_collect(&s);
1235
8661768f
JK
1236 if (s.relative_paths)
1237 s.prefix = prefix;
38920dd6 1238
dd2be243
JK
1239 switch (status_format) {
1240 case STATUS_FORMAT_SHORT:
05a59a08 1241 wt_shortstatus_print(&s, null_termination, status_show_branch);
dd2be243 1242 break;
6f157871 1243 case STATUS_FORMAT_PORCELAIN:
4a7cc2fd 1244 wt_porcelain_print(&s, null_termination);
6f157871 1245 break;
dd2be243 1246 case STATUS_FORMAT_LONG:
173e6c88 1247 s.verbose = verbose;
46a958b3 1248 s.ignore_submodule_arg = ignore_submodule_arg;
173e6c88 1249 wt_status_print(&s);
dd2be243 1250 break;
173e6c88 1251 }
76e2f7ce 1252 return 0;
f5bbc322
KH
1253}
1254
06bb643b
JH
1255static void print_summary(const char *prefix, const unsigned char *sha1,
1256 int initial_commit)
f5bbc322
KH
1257{
1258 struct rev_info rev;
1259 struct commit *commit;
49ff9a7a 1260 struct strbuf format = STRBUF_INIT;
c85db254 1261 unsigned char junk_sha1[20];
d5a35c11 1262 const char *head;
49ff9a7a
JK
1263 struct pretty_print_context pctx = {0};
1264 struct strbuf author_ident = STRBUF_INIT;
1265 struct strbuf committer_ident = STRBUF_INIT;
f5bbc322
KH
1266
1267 commit = lookup_commit(sha1);
1268 if (!commit)
8a6179bc 1269 die(_("couldn't look up newly created commit"));
f5bbc322 1270 if (!commit || parse_commit(commit))
8a6179bc 1271 die(_("could not parse newly created commit"));
f5bbc322 1272
49ff9a7a
JK
1273 strbuf_addstr(&format, "format:%h] %s");
1274
1275 format_commit_message(commit, "%an <%ae>", &author_ident, &pctx);
1276 format_commit_message(commit, "%cn <%ce>", &committer_ident, &pctx);
1277 if (strbuf_cmp(&author_ident, &committer_ident)) {
1278 strbuf_addstr(&format, "\n Author: ");
1279 strbuf_addbuf_percentquote(&format, &author_ident);
1280 }
1a893064 1281 if (!user_ident_sufficiently_given()) {
49ff9a7a
JK
1282 strbuf_addstr(&format, "\n Committer: ");
1283 strbuf_addbuf_percentquote(&format, &committer_ident);
b706fcfe
JK
1284 if (advice_implicit_identity) {
1285 strbuf_addch(&format, '\n');
fc88e316 1286 strbuf_addstr(&format, _(implicit_ident_advice));
b706fcfe 1287 }
49ff9a7a
JK
1288 }
1289 strbuf_release(&author_ident);
1290 strbuf_release(&committer_ident);
1291
f5bbc322
KH
1292 init_revisions(&rev, prefix);
1293 setup_revisions(0, NULL, &rev, NULL);
1294
f5bbc322
KH
1295 rev.diff = 1;
1296 rev.diffopt.output_format =
1297 DIFF_FORMAT_SHORTSTAT | DIFF_FORMAT_SUMMARY;
1298
1299 rev.verbose_header = 1;
1300 rev.show_root_diff = 1;
49ff9a7a 1301 get_commit_format(format.buf, &rev);
bf82a150 1302 rev.always_show_header = 0;
3eb2a15e 1303 rev.diffopt.detect_rename = 1;
3eb2a15e 1304 rev.diffopt.break_opt = 0;
15964563 1305 diff_setup_done(&rev.diffopt);
f5bbc322 1306
8cad4744 1307 head = resolve_ref_unsafe("HEAD", junk_sha1, 0, NULL);
c5ee71fd 1308 printf("[%s%s ",
c85db254
JK
1309 !prefixcmp(head, "refs/heads/") ?
1310 head + 11 :
1311 !strcmp(head, "HEAD") ?
7f5673d7 1312 _("detached HEAD") :
c85db254 1313 head,
7f5673d7 1314 initial_commit ? _(" (root-commit)") : "");
f5bbc322 1315
bf82a150 1316 if (!log_tree_commit(&rev, commit)) {
a45e1a87
TRC
1317 rev.always_show_header = 1;
1318 rev.use_terminator = 1;
1319 log_tree_commit(&rev, commit);
bf82a150 1320 }
a45e1a87 1321
fc6f19fe 1322 strbuf_release(&format);
f5bbc322
KH
1323}
1324
186458b1 1325static int git_commit_config(const char *k, const char *v, void *cb)
f5bbc322 1326{
d249b098
JH
1327 struct wt_status *s = cb;
1328
984c6e7e 1329 if (!strcmp(k, "commit.template"))
395de250 1330 return git_config_pathname(&template_file, k, v);
bed575e4
JHI
1331 if (!strcmp(k, "commit.status")) {
1332 include_status = git_config_bool(k, v);
1333 return 0;
1334 }
f5bbc322 1335
d249b098 1336 return git_status_config(k, v, s);
f5bbc322
KH
1337}
1338
6f6bee3b
TR
1339static const char post_rewrite_hook[] = "hooks/post-rewrite";
1340
1341static int run_rewrite_hook(const unsigned char *oldsha1,
1342 const unsigned char *newsha1)
1343{
1344 /* oldsha1 SP newsha1 LF NUL */
1345 static char buf[2*40 + 3];
1346 struct child_process proc;
1347 const char *argv[3];
1348 int code;
1349 size_t n;
1350
1351 if (access(git_path(post_rewrite_hook), X_OK) < 0)
1352 return 0;
1353
1354 argv[0] = git_path(post_rewrite_hook);
1355 argv[1] = "amend";
1356 argv[2] = NULL;
1357
1358 memset(&proc, 0, sizeof(proc));
1359 proc.argv = argv;
1360 proc.in = -1;
1361 proc.stdout_to_stderr = 1;
1362
1363 code = start_command(&proc);
1364 if (code)
1365 return code;
1366 n = snprintf(buf, sizeof(buf), "%s %s\n",
1367 sha1_to_hex(oldsha1), sha1_to_hex(newsha1));
1368 write_in_full(proc.in, buf, n);
1369 close(proc.in);
1370 return finish_command(&proc);
1371}
1372
f5bbc322
KH
1373int cmd_commit(int argc, const char **argv, const char *prefix)
1374{
f285a2d7 1375 struct strbuf sb = STRBUF_INIT;
4c28e4ad 1376 struct strbuf author_ident = STRBUF_INIT;
f5bbc322 1377 const char *index_file, *reflog_msg;
99a12694 1378 char *nl, *p;
06bb643b 1379 unsigned char sha1[20];
f5bbc322 1380 struct ref_lock *ref_lock;
6bb6b034 1381 struct commit_list *parents = NULL, **pptr = &parents;
cf10f9fd
MV
1382 struct stat statbuf;
1383 int allow_fast_forward = 1;
d249b098 1384 struct wt_status s;
06bb643b 1385 struct commit *current_head = NULL;
ed7a42a0 1386 struct commit_extra_header *extra = NULL;
f5bbc322 1387
5d3dd915
NTND
1388 if (argc == 2 && !strcmp(argv[1], "-h"))
1389 usage_with_options(builtin_commit_usage, builtin_commit_options);
1390
d249b098
JH
1391 wt_status_prepare(&s);
1392 git_config(git_commit_config, &s);
37f7a857 1393 determine_whence(&s);
f5bbc322 1394
06bb643b
JH
1395 if (get_sha1("HEAD", sha1))
1396 current_head = NULL;
1397 else {
baf18fc2 1398 current_head = lookup_commit_or_die(sha1, "HEAD");
06bb643b
JH
1399 if (!current_head || parse_commit(current_head))
1400 die(_("could not parse HEAD commit"));
1401 }
d249b098 1402 argc = parse_and_validate_options(argc, argv, builtin_commit_usage,
06bb643b 1403 prefix, current_head, &s);
c9bfb953 1404 if (dry_run)
06bb643b 1405 return dry_run_commit(argc, argv, prefix, current_head, &s);
06bb643b 1406 index_file = prepare_index(argc, argv, prefix, current_head, 0);
f5bbc322 1407
ec84bd00
PB
1408 /* Set up everything for writing the commit object. This includes
1409 running hooks, writing the trees, and interacting with the user. */
06bb643b
JH
1410 if (!prepare_to_commit(index_file, prefix,
1411 current_head, &s, &author_ident)) {
2888605c 1412 rollback_index_files();
f5bbc322
KH
1413 return 1;
1414 }
1415
f5bbc322 1416 /* Determine parents */
643cb5f7 1417 reflog_msg = getenv("GIT_REFLOG_ACTION");
06bb643b 1418 if (!current_head) {
643cb5f7
CC
1419 if (!reflog_msg)
1420 reflog_msg = "commit (initial)";
f5bbc322
KH
1421 } else if (amend) {
1422 struct commit_list *c;
f5bbc322 1423
643cb5f7
CC
1424 if (!reflog_msg)
1425 reflog_msg = "commit (amend)";
06bb643b 1426 for (c = current_head->parents; c; c = c->next)
6bb6b034 1427 pptr = &commit_list_insert(c->item, pptr)->next;
37f7a857 1428 } else if (whence == FROM_MERGE) {
f285a2d7 1429 struct strbuf m = STRBUF_INIT;
f5bbc322
KH
1430 FILE *fp;
1431
643cb5f7
CC
1432 if (!reflog_msg)
1433 reflog_msg = "commit (merge)";
06bb643b 1434 pptr = &commit_list_insert(current_head, pptr)->next;
f5bbc322
KH
1435 fp = fopen(git_path("MERGE_HEAD"), "r");
1436 if (fp == NULL)
8a6179bc 1437 die_errno(_("could not open '%s' for reading"),
d824cbba 1438 git_path("MERGE_HEAD"));
7c3fd25d 1439 while (strbuf_getline(&m, fp, '\n') != EOF) {
5231c633
JH
1440 struct commit *parent;
1441
1442 parent = get_merge_parent(m.buf);
1443 if (!parent)
8a6179bc 1444 die(_("Corrupt MERGE_HEAD file (%s)"), m.buf);
5231c633 1445 pptr = &commit_list_insert(parent, pptr)->next;
7c3fd25d 1446 }
f5bbc322
KH
1447 fclose(fp);
1448 strbuf_release(&m);
cf10f9fd
MV
1449 if (!stat(git_path("MERGE_MODE"), &statbuf)) {
1450 if (strbuf_read_file(&sb, git_path("MERGE_MODE"), 0) < 0)
8a6179bc 1451 die_errno(_("could not read MERGE_MODE"));
cf10f9fd
MV
1452 if (!strcmp(sb.buf, "no-ff"))
1453 allow_fast_forward = 0;
1454 }
1455 if (allow_fast_forward)
1456 parents = reduce_heads(parents);
f5bbc322 1457 } else {
643cb5f7 1458 if (!reflog_msg)
37f7a857
JS
1459 reflog_msg = (whence == FROM_CHERRY_PICK)
1460 ? "commit (cherry-pick)"
1461 : "commit";
06bb643b 1462 pptr = &commit_list_insert(current_head, pptr)->next;
f5bbc322 1463 }
f5bbc322 1464
ec84bd00 1465 /* Finally, get the commit message */
cf10f9fd 1466 strbuf_reset(&sb);
740001a5 1467 if (strbuf_read_file(&sb, git_path(commit_editmsg), 0) < 0) {
0721c314 1468 int saved_errno = errno;
740001a5 1469 rollback_index_files();
8a6179bc 1470 die(_("could not read commit message: %s"), strerror(saved_errno));
740001a5 1471 }
99a12694
KH
1472
1473 /* Truncate the message just before the diff, if any. */
0b38227f
JK
1474 if (verbose) {
1475 p = strstr(sb.buf, "\ndiff --git ");
1476 if (p != NULL)
1477 strbuf_setlen(&sb, p - sb.buf + 1);
1478 }
99a12694 1479
5f065737
AR
1480 if (cleanup_mode != CLEANUP_NONE)
1481 stripspace(&sb, cleanup_mode == CLEANUP_ALL);
c9b5fde7 1482 if (message_is_empty(&sb) && !allow_empty_message) {
2888605c 1483 rollback_index_files();
8a6179bc 1484 fprintf(stderr, _("Aborting commit due to empty commit message.\n"));
fdc7c811 1485 exit(1);
2888605c 1486 }
f5bbc322 1487
0074d18d 1488 if (amend) {
ed7a42a0 1489 extra = read_commit_extra_headers(current_head);
0074d18d
JH
1490 } else {
1491 struct commit_extra_header **tail = &extra;
1492 append_merge_tag_headers(parents, &tail);
1493 }
ed7a42a0
JH
1494
1495 if (commit_tree_extended(sb.buf, active_cache_tree->sha1, parents, sha1,
1496 author_ident.buf, extra)) {
2888605c 1497 rollback_index_files();
8a6179bc 1498 die(_("failed to write commit object"));
2888605c 1499 }
4c28e4ad 1500 strbuf_release(&author_ident);
ed7a42a0 1501 free_commit_extra_headers(extra);
f5bbc322
KH
1502
1503 ref_lock = lock_any_ref_for_update("HEAD",
06bb643b
JH
1504 !current_head
1505 ? NULL
1506 : current_head->object.sha1,
f5bbc322
KH
1507 0);
1508
6bb6b034 1509 nl = strchr(sb.buf, '\n');
741707b1
JS
1510 if (nl)
1511 strbuf_setlen(&sb, nl + 1 - sb.buf);
1512 else
1513 strbuf_addch(&sb, '\n');
741707b1
JS
1514 strbuf_insert(&sb, 0, reflog_msg, strlen(reflog_msg));
1515 strbuf_insert(&sb, strlen(reflog_msg), ": ", 2);
f5bbc322 1516
2888605c
JH
1517 if (!ref_lock) {
1518 rollback_index_files();
8a6179bc 1519 die(_("cannot lock HEAD ref"));
2888605c 1520 }
06bb643b 1521 if (write_ref_sha1(ref_lock, sha1, sb.buf) < 0) {
2888605c 1522 rollback_index_files();
8a6179bc 1523 die(_("cannot update HEAD ref"));
2888605c 1524 }
f5bbc322 1525
d7e5c0cb 1526 unlink(git_path("CHERRY_PICK_HEAD"));
82433cdf 1527 unlink(git_path("REVERT_HEAD"));
f5bbc322
KH
1528 unlink(git_path("MERGE_HEAD"));
1529 unlink(git_path("MERGE_MSG"));
cf10f9fd 1530 unlink(git_path("MERGE_MODE"));
5a95b855 1531 unlink(git_path("SQUASH_MSG"));
f5bbc322 1532
5a9dd399 1533 if (commit_index_files())
8a6179bc 1534 die (_("Repository has been updated, but unable to write\n"
5a9dd399 1535 "new_index file. Check that disk is not full or quota is\n"
8a6179bc 1536 "not exceeded, and then \"git reset HEAD\" to recover."));
f5bbc322 1537
cb6020bb 1538 rerere(0);
2888605c 1539 run_hook(get_index_file(), "post-commit", NULL);
6f6bee3b 1540 if (amend && !no_post_rewrite) {
6360d343
TR
1541 struct notes_rewrite_cfg *cfg;
1542 cfg = init_copy_notes_for_rewrite("amend");
1543 if (cfg) {
06bb643b
JH
1544 /* we are amending, so current_head is not NULL */
1545 copy_note_for_rewrite(cfg, current_head->object.sha1, sha1);
6360d343
TR
1546 finish_copy_notes_for_rewrite(cfg);
1547 }
06bb643b 1548 run_rewrite_hook(current_head->object.sha1, sha1);
6f6bee3b 1549 }
f5bbc322 1550 if (!quiet)
06bb643b 1551 print_summary(prefix, sha1, !current_head);
f5bbc322
KH
1552
1553 return 0;
1554}