]> git.ipfire.org Git - thirdparty/git.git/blame - builtin-commit.c
tests: add a testcase for "git submodule sync"
[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"
f5bbc322
KH
27
28static const char * const builtin_commit_usage[] = {
1b1dd23f 29 "git commit [options] [--] <filepattern>...",
f5bbc322
KH
30 NULL
31};
32
2f02b25f 33static const char * const builtin_status_usage[] = {
1b1dd23f 34 "git status [options] [--] <filepattern>...",
2f02b25f
SB
35 NULL
36};
37
f5bbc322
KH
38static unsigned char head_sha1[20], merge_head_sha1[20];
39static char *use_message_buffer;
40static const char commit_editmsg[] = "COMMIT_EDITMSG";
2888605c
JH
41static struct lock_file index_lock; /* real index */
42static struct lock_file false_lock; /* used only for partial commits */
43static enum {
44 COMMIT_AS_IS = 1,
45 COMMIT_NORMAL,
46 COMMIT_PARTIAL,
47} commit_style;
f5bbc322 48
dbd0f5c7 49static const char *logfile, *force_author;
984c6e7e 50static const char *template_file;
f5bbc322 51static char *edit_message, *use_message;
e83dbe80 52static char *author_name, *author_email, *author_date;
f5bbc322 53static int all, edit_flag, also, interactive, only, amend, signoff;
4bfee30a
MSO
54static int quiet, verbose, no_verify, allow_empty;
55static char *untracked_files_arg;
5f065737
AR
56/*
57 * The default commit message cleanup mode will remove the lines
58 * beginning with # (shell comments) and leading and trailing
59 * whitespaces (empty lines or containing only whitespaces)
60 * if editor is used, and only the whitespaces if the message
61 * is specified explicitly.
62 */
63static enum {
64 CLEANUP_SPACE,
65 CLEANUP_NONE,
66 CLEANUP_ALL,
67} cleanup_mode;
68static char *cleanup_arg;
f5bbc322 69
4803466f 70static int use_editor = 1, initial_commit, in_merge;
3b6aeb3c
JS
71static const char *only_include_assumed;
72static struct strbuf message;
f9568530
JS
73
74static int opt_parse_m(const struct option *opt, const char *arg, int unset)
75{
76 struct strbuf *buf = opt->value;
77 if (unset)
78 strbuf_setlen(buf, 0);
79 else {
80 strbuf_addstr(buf, arg);
3b6aeb3c 81 strbuf_addstr(buf, "\n\n");
f9568530
JS
82 }
83 return 0;
84}
f5bbc322
KH
85
86static struct option builtin_commit_options[] = {
87 OPT__QUIET(&quiet),
88 OPT__VERBOSE(&verbose),
89 OPT_GROUP("Commit message options"),
90
91 OPT_STRING('F', "file", &logfile, "FILE", "read log from file"),
92 OPT_STRING(0, "author", &force_author, "AUTHOR", "override author for commit"),
f9568530 93 OPT_CALLBACK('m', "message", &message, "MESSAGE", "specify commit message", opt_parse_m),
f5bbc322
KH
94 OPT_STRING('c', "reedit-message", &edit_message, "COMMIT", "reuse and edit message from specified commit "),
95 OPT_STRING('C', "reuse-message", &use_message, "COMMIT", "reuse message from specified commit"),
362b0dd5 96 OPT_BOOLEAN('s', "signoff", &signoff, "add Signed-off-by:"),
f5bbc322
KH
97 OPT_STRING('t', "template", &template_file, "FILE", "use specified template file"),
98 OPT_BOOLEAN('e', "edit", &edit_flag, "force edit of commit"),
99
100 OPT_GROUP("Commit contents options"),
101 OPT_BOOLEAN('a', "all", &all, "commit all changed files"),
102 OPT_BOOLEAN('i', "include", &also, "add specified files to index for commit"),
103 OPT_BOOLEAN(0, "interactive", &interactive, "interactively add files"),
d4ba07ca 104 OPT_BOOLEAN('o', "only", &only, "commit only specified files"),
f5bbc322
KH
105 OPT_BOOLEAN('n', "no-verify", &no_verify, "bypass pre-commit hook"),
106 OPT_BOOLEAN(0, "amend", &amend, "amend previous commit"),
6c2ce048 107 { 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" },
5241b6bf 108 OPT_BOOLEAN(0, "allow-empty", &allow_empty, "ok to record an empty change"),
5f065737 109 OPT_STRING(0, "cleanup", &cleanup_arg, "default", "how to strip spaces and #comments from message"),
f5bbc322
KH
110
111 OPT_END()
112};
113
2888605c
JH
114static void rollback_index_files(void)
115{
116 switch (commit_style) {
117 case COMMIT_AS_IS:
118 break; /* nothing to do */
119 case COMMIT_NORMAL:
120 rollback_lock_file(&index_lock);
121 break;
122 case COMMIT_PARTIAL:
123 rollback_lock_file(&index_lock);
124 rollback_lock_file(&false_lock);
125 break;
126 }
127}
128
5a9dd399 129static int commit_index_files(void)
2888605c 130{
5a9dd399
BC
131 int err = 0;
132
2888605c
JH
133 switch (commit_style) {
134 case COMMIT_AS_IS:
135 break; /* nothing to do */
136 case COMMIT_NORMAL:
5a9dd399 137 err = commit_lock_file(&index_lock);
2888605c
JH
138 break;
139 case COMMIT_PARTIAL:
5a9dd399 140 err = commit_lock_file(&index_lock);
2888605c
JH
141 rollback_lock_file(&false_lock);
142 break;
143 }
5a9dd399
BC
144
145 return err;
2888605c
JH
146}
147
148/*
149 * Take a union of paths in the index and the named tree (typically, "HEAD"),
150 * and return the paths that match the given pattern in list.
151 */
c455c87c 152static int list_paths(struct string_list *list, const char *with_tree,
2888605c
JH
153 const char *prefix, const char **pattern)
154{
155 int i;
156 char *m;
157
158 for (i = 0; pattern[i]; i++)
159 ;
160 m = xcalloc(1, i);
161
162 if (with_tree)
163 overlay_tree_on_cache(with_tree, prefix);
164
165 for (i = 0; i < active_nr; i++) {
166 struct cache_entry *ce = active_cache[i];
7a51ed66 167 if (ce->ce_flags & CE_UPDATE)
e87e22d0 168 continue;
2888605c
JH
169 if (!pathspec_match(pattern, m, ce->name, 0))
170 continue;
c455c87c 171 string_list_insert(ce->name, list);
2888605c
JH
172 }
173
174 return report_path_error(m, pattern, prefix ? strlen(prefix) : 0);
175}
176
c455c87c 177static void add_remove_files(struct string_list *list)
2888605c
JH
178{
179 int i;
180 for (i = 0; i < list->nr; i++) {
d177cab0 181 struct stat st;
c455c87c 182 struct string_list_item *p = &(list->items[i]);
d177cab0 183
c455c87c
JS
184 if (!lstat(p->string, &st)) {
185 if (add_to_cache(p->string, &st, 0))
960b8ad1
AR
186 die("updating files failed");
187 } else
c455c87c 188 remove_file_from_cache(p->string);
2888605c
JH
189 }
190}
191
fa9dcf80
LT
192static void create_base_index(void)
193{
194 struct tree *tree;
195 struct unpack_trees_options opts;
196 struct tree_desc t;
197
198 if (initial_commit) {
199 discard_cache();
200 return;
201 }
202
203 memset(&opts, 0, sizeof(opts));
204 opts.head_idx = 1;
205 opts.index_only = 1;
206 opts.merge = 1;
34110cd4
LT
207 opts.src_index = &the_index;
208 opts.dst_index = &the_index;
fa9dcf80
LT
209
210 opts.fn = oneway_merge;
211 tree = parse_tree_indirect(head_sha1);
212 if (!tree)
213 die("failed to unpack HEAD tree object");
214 parse_tree(tree);
215 init_tree_desc(&t, tree->buffer, tree->size);
203a2fe1
DB
216 if (unpack_trees(1, &t, &opts))
217 exit(128); /* We've already reported the error, finish dying */
fa9dcf80
LT
218}
219
f64fe7b4 220static char *prepare_index(int argc, const char **argv, const char *prefix)
f5bbc322
KH
221{
222 int fd;
c455c87c 223 struct string_list partial;
2888605c 224 const char **pathspec = NULL;
f5bbc322
KH
225
226 if (interactive) {
3f061887 227 interactive_add(argc, argv, prefix);
d5350fd2
GP
228 if (read_cache() < 0)
229 die("index file corrupt");
2888605c 230 commit_style = COMMIT_AS_IS;
f5bbc322
KH
231 return get_index_file();
232 }
233
f5bbc322
KH
234 if (read_cache() < 0)
235 die("index file corrupt");
236
f64fe7b4
JH
237 if (*argv)
238 pathspec = get_pathspec(prefix, argv);
2888605c
JH
239
240 /*
241 * Non partial, non as-is commit.
242 *
243 * (1) get the real index;
244 * (2) update the_index as necessary;
245 * (3) write the_index out to the real index (still locked);
246 * (4) return the name of the locked index file.
247 *
248 * The caller should run hooks on the locked real index, and
249 * (A) if all goes well, commit the real index;
250 * (B) on failure, rollback the real index.
251 */
252 if (all || (also && pathspec && *pathspec)) {
253 int fd = hold_locked_index(&index_lock, 1);
7ae02a30 254 add_files_to_cache(also ? prefix : NULL, pathspec, 0);
d37d3203 255 refresh_cache(REFRESH_QUIET);
4ed7cd3a
BC
256 if (write_cache(fd, active_cache, active_nr) ||
257 close_lock_file(&index_lock))
f5bbc322 258 die("unable to write new_index file");
2888605c
JH
259 commit_style = COMMIT_NORMAL;
260 return index_lock.filename;
f5bbc322
KH
261 }
262
2888605c
JH
263 /*
264 * As-is commit.
265 *
266 * (1) return the name of the real index file.
267 *
268 * The caller should run hooks on the real index, and run
269 * hooks on the real index, and create commit from the_index.
270 * We still need to refresh the index here.
271 */
272 if (!pathspec || !*pathspec) {
273 fd = hold_locked_index(&index_lock, 1);
274 refresh_cache(REFRESH_QUIET);
275 if (write_cache(fd, active_cache, active_nr) ||
4439751d 276 commit_locked_index(&index_lock))
2888605c
JH
277 die("unable to write new_index file");
278 commit_style = COMMIT_AS_IS;
f5bbc322
KH
279 return get_index_file();
280 }
281
2888605c
JH
282 /*
283 * A partial commit.
284 *
285 * (0) find the set of affected paths;
286 * (1) get lock on the real index file;
287 * (2) update the_index with the given paths;
288 * (3) write the_index out to the real index (still locked);
289 * (4) get lock on the false index file;
290 * (5) reset the_index from HEAD;
291 * (6) update the_index the same way as (2);
292 * (7) write the_index out to the false index file;
293 * (8) return the name of the false index file (still locked);
294 *
295 * The caller should run hooks on the locked false index, and
296 * create commit from it. Then
297 * (A) if all goes well, commit the real index;
298 * (B) on failure, rollback the real index;
299 * In either case, rollback the false index.
300 */
301 commit_style = COMMIT_PARTIAL;
302
303 if (file_exists(git_path("MERGE_HEAD")))
304 die("cannot do a partial commit during a merge.");
305
306 memset(&partial, 0, sizeof(partial));
c455c87c 307 partial.strdup_strings = 1;
2888605c
JH
308 if (list_paths(&partial, initial_commit ? NULL : "HEAD", prefix, pathspec))
309 exit(1);
310
311 discard_cache();
312 if (read_cache() < 0)
313 die("cannot read the index");
314
315 fd = hold_locked_index(&index_lock, 1);
316 add_remove_files(&partial);
ef12b50d 317 refresh_cache(REFRESH_QUIET);
4ed7cd3a
BC
318 if (write_cache(fd, active_cache, active_nr) ||
319 close_lock_file(&index_lock))
f5bbc322
KH
320 die("unable to write new_index file");
321
2888605c 322 fd = hold_lock_file_for_update(&false_lock,
85e72830 323 git_path("next-index-%"PRIuMAX, (uintmax_t) getpid()), 1);
fa9dcf80
LT
324
325 create_base_index();
2888605c 326 add_remove_files(&partial);
d37d3203 327 refresh_cache(REFRESH_QUIET);
f5bbc322 328
4ed7cd3a
BC
329 if (write_cache(fd, active_cache, active_nr) ||
330 close_lock_file(&false_lock))
2888605c 331 die("unable to write temporary index file");
959ba670
JK
332
333 discard_cache();
334 read_cache_from(false_lock.filename);
335
2888605c 336 return false_lock.filename;
f5bbc322
KH
337}
338
37d07f8f 339static int run_status(FILE *fp, const char *index_file, const char *prefix, int nowarn)
f5bbc322
KH
340{
341 struct wt_status s;
342
343 wt_status_prepare(&s);
46f721c8
JK
344 if (wt_status_relative_paths)
345 s.prefix = prefix;
f5bbc322
KH
346
347 if (amend) {
348 s.amend = 1;
349 s.reference = "HEAD^1";
350 }
351 s.verbose = verbose;
4bfee30a 352 s.untracked = (show_untracked_files == SHOW_ALL_UNTRACKED_FILES);
f5bbc322
KH
353 s.index_file = index_file;
354 s.fp = fp;
37d07f8f 355 s.nowarn = nowarn;
f5bbc322
KH
356
357 wt_status_print(&s);
358
359 return s.commitable;
360}
361
3473f303
PB
362static int run_hook(const char *index_file, const char *name, ...)
363{
364 struct child_process hook;
365 const char *argv[10], *env[2];
366 char index[PATH_MAX];
367 va_list args;
368 int i;
369
370 va_start(args, name);
371 argv[0] = git_path("hooks/%s", name);
372 i = 0;
373 do {
374 if (++i >= ARRAY_SIZE(argv))
375 die ("run_hook(): too many arguments");
376 argv[i] = va_arg(args, const char *);
377 } while (argv[i]);
378 va_end(args);
379
380 snprintf(index, sizeof(index), "GIT_INDEX_FILE=%s", index_file);
381 env[0] = index;
382 env[1] = NULL;
383
384 if (access(argv[0], X_OK) < 0)
385 return 0;
386
387 memset(&hook, 0, sizeof(hook));
388 hook.argv = argv;
389 hook.no_stdin = 1;
390 hook.stdout_to_stderr = 1;
391 hook.env = env;
392
393 return run_command(&hook);
394}
395
ec84bd00
PB
396static int is_a_merge(const unsigned char *sha1)
397{
398 struct commit *commit = lookup_commit(sha1);
399 if (!commit || parse_commit(commit))
400 die("could not parse HEAD commit");
401 return !!(commit->parents && commit->parents->next);
402}
403
f5bbc322
KH
404static const char sign_off_header[] = "Signed-off-by: ";
405
e83dbe80 406static void determine_author_info(void)
a45d46ba
SB
407{
408 char *name, *email, *date;
409
410 name = getenv("GIT_AUTHOR_NAME");
411 email = getenv("GIT_AUTHOR_EMAIL");
412 date = getenv("GIT_AUTHOR_DATE");
413
414 if (use_message) {
415 const char *a, *lb, *rb, *eol;
416
417 a = strstr(use_message_buffer, "\nauthor ");
418 if (!a)
419 die("invalid commit: %s", use_message);
420
421 lb = strstr(a + 8, " <");
422 rb = strstr(a + 8, "> ");
423 eol = strchr(a + 8, '\n');
424 if (!lb || !rb || !eol)
425 die("invalid commit: %s", use_message);
426
427 name = xstrndup(a + 8, lb - (a + 8));
428 email = xstrndup(lb + 2, rb - (lb + 2));
429 date = xstrndup(rb + 2, eol - (rb + 2));
430 }
431
432 if (force_author) {
433 const char *lb = strstr(force_author, " <");
434 const char *rb = strchr(force_author, '>');
435
436 if (!lb || !rb)
437 die("malformed --author parameter");
438 name = xstrndup(force_author, lb - force_author);
439 email = xstrndup(lb + 2, rb - (lb + 2));
440 }
441
e83dbe80
SB
442 author_name = name;
443 author_email = email;
444 author_date = date;
a45d46ba
SB
445}
446
ec84bd00 447static int prepare_to_commit(const char *index_file, const char *prefix)
f5bbc322
KH
448{
449 struct stat statbuf;
bc5d248a 450 int commitable, saved_color_setting;
f5bbc322
KH
451 struct strbuf sb;
452 char *buffer;
453 FILE *fp;
8089c85b
PB
454 const char *hook_arg1 = NULL;
455 const char *hook_arg2 = NULL;
bb1ae3f6 456 int ident_shown = 0;
f5bbc322 457
ec84bd00
PB
458 if (!no_verify && run_hook(index_file, "pre-commit", NULL))
459 return 0;
f5bbc322
KH
460
461 strbuf_init(&sb, 0);
f9568530
JS
462 if (message.len) {
463 strbuf_addbuf(&sb, &message);
8089c85b 464 hook_arg1 = "message";
f5bbc322
KH
465 } else if (logfile && !strcmp(logfile, "-")) {
466 if (isatty(0))
467 fprintf(stderr, "(reading log message from standard input)\n");
468 if (strbuf_read(&sb, 0, 0) < 0)
469 die("could not read log from standard input");
8089c85b 470 hook_arg1 = "message";
f5bbc322
KH
471 } else if (logfile) {
472 if (strbuf_read_file(&sb, logfile, 0) < 0)
473 die("could not read log file '%s': %s",
474 logfile, strerror(errno));
8089c85b 475 hook_arg1 = "message";
f5bbc322
KH
476 } else if (use_message) {
477 buffer = strstr(use_message_buffer, "\n\n");
478 if (!buffer || buffer[2] == '\0')
479 die("commit has empty message");
480 strbuf_add(&sb, buffer + 2, strlen(buffer + 2));
8089c85b
PB
481 hook_arg1 = "commit";
482 hook_arg2 = use_message;
f5bbc322
KH
483 } else if (!stat(git_path("MERGE_MSG"), &statbuf)) {
484 if (strbuf_read_file(&sb, git_path("MERGE_MSG"), 0) < 0)
485 die("could not read MERGE_MSG: %s", strerror(errno));
8089c85b 486 hook_arg1 = "merge";
f5bbc322
KH
487 } else if (!stat(git_path("SQUASH_MSG"), &statbuf)) {
488 if (strbuf_read_file(&sb, git_path("SQUASH_MSG"), 0) < 0)
489 die("could not read SQUASH_MSG: %s", strerror(errno));
8089c85b 490 hook_arg1 = "squash";
f5bbc322
KH
491 } else if (template_file && !stat(template_file, &statbuf)) {
492 if (strbuf_read_file(&sb, template_file, 0) < 0)
493 die("could not read %s: %s",
494 template_file, strerror(errno));
8089c85b 495 hook_arg1 = "template";
f5bbc322
KH
496 }
497
8089c85b
PB
498 /*
499 * This final case does not modify the template message,
500 * it just sets the argument to the prepare-commit-msg hook.
501 */
502 else if (in_merge)
503 hook_arg1 = "merge";
504
f5bbc322
KH
505 fp = fopen(git_path(commit_editmsg), "w");
506 if (fp == NULL)
cdeaf10f
CP
507 die("could not open %s: %s",
508 git_path(commit_editmsg), strerror(errno));
f5bbc322 509
5f065737
AR
510 if (cleanup_mode != CLEANUP_NONE)
511 stripspace(&sb, 0);
f5bbc322
KH
512
513 if (signoff) {
13208572
JS
514 struct strbuf sob;
515 int i;
516
517 strbuf_init(&sob, 0);
518 strbuf_addstr(&sob, sign_off_header);
d9ccfe77
JH
519 strbuf_addstr(&sob, fmt_name(getenv("GIT_COMMITTER_NAME"),
520 getenv("GIT_COMMITTER_EMAIL")));
13208572 521 strbuf_addch(&sob, '\n');
13208572
JS
522 for (i = sb.len - 1; i > 0 && sb.buf[i - 1] != '\n'; i--)
523 ; /* do nothing */
2150554b
JS
524 if (prefixcmp(sb.buf + i, sob.buf)) {
525 if (prefixcmp(sb.buf + i, sign_off_header))
526 strbuf_addch(&sb, '\n');
13208572 527 strbuf_addbuf(&sb, &sob);
2150554b 528 }
13208572 529 strbuf_release(&sob);
f5bbc322
KH
530 }
531
13208572 532 if (fwrite(sb.buf, 1, sb.len, fp) < sb.len)
b5b644a9 533 die("could not write commit template: %s", strerror(errno));
13208572 534
f5bbc322
KH
535 strbuf_release(&sb);
536
e83dbe80
SB
537 determine_author_info();
538
bb1ae3f6
SB
539 /* This checks if committer ident is explicitly given */
540 git_committer_info(0);
ec84bd00 541 if (use_editor) {
e83dbe80
SB
542 char *author_ident;
543 const char *committer_ident;
544
ec84bd00
PB
545 if (in_merge)
546 fprintf(fp,
547 "#\n"
548 "# It looks like you may be committing a MERGE.\n"
549 "# If this is not correct, please remove the file\n"
550 "# %s\n"
551 "# and try again.\n"
552 "#\n",
553 git_path("MERGE_HEAD"));
554
555 fprintf(fp,
556 "\n"
fdc7c811 557 "# Please enter the commit message for your changes.");
ec84bd00 558 if (cleanup_mode == CLEANUP_ALL)
fdc7c811
JK
559 fprintf(fp,
560 " Lines starting\n"
561 "# with '#' will be ignored, and an empty"
562 " message aborts the commit.\n");
ec84bd00 563 else /* CLEANUP_SPACE, that is. */
fdc7c811
JK
564 fprintf(fp,
565 " Lines starting\n"
566 "# with '#' will be kept; you may remove them"
567 " yourself if you want to.\n"
568 "# An empty message aborts the commit.\n");
ec84bd00
PB
569 if (only_include_assumed)
570 fprintf(fp, "# %s\n", only_include_assumed);
571
e83dbe80
SB
572 author_ident = xstrdup(fmt_name(author_name, author_email));
573 committer_ident = fmt_name(getenv("GIT_COMMITTER_NAME"),
574 getenv("GIT_COMMITTER_EMAIL"));
575 if (strcmp(author_ident, committer_ident))
576 fprintf(fp,
bb1ae3f6
SB
577 "%s"
578 "# Author: %s\n",
579 ident_shown++ ? "" : "#\n",
e83dbe80
SB
580 author_ident);
581 free(author_ident);
582
bb1ae3f6
SB
583 if (!user_ident_explicitly_given)
584 fprintf(fp,
585 "%s"
586 "# Committer: %s\n",
587 ident_shown++ ? "" : "#\n",
588 committer_ident);
589
590 if (ident_shown)
591 fprintf(fp, "#\n");
592
ec84bd00
PB
593 saved_color_setting = wt_status_use_color;
594 wt_status_use_color = 0;
595 commitable = run_status(fp, index_file, prefix, 1);
596 wt_status_use_color = saved_color_setting;
597 } else {
7168624c 598 struct rev_info rev;
d616a239 599 unsigned char sha1[20];
fbcf1184 600 const char *parent = "HEAD";
7168624c 601
7168624c
AR
602 if (!active_nr && read_cache() < 0)
603 die("Cannot read index");
604
fbcf1184
JH
605 if (amend)
606 parent = "HEAD^1";
607
d616a239 608 if (get_sha1(parent, sha1))
ec84bd00
PB
609 commitable = !!active_nr;
610 else {
611 init_revisions(&rev, "");
612 rev.abbrev = 0;
613 setup_revisions(0, NULL, &rev, parent);
614 DIFF_OPT_SET(&rev.diffopt, QUIET);
615 DIFF_OPT_SET(&rev.diffopt, EXIT_WITH_STATUS);
616 run_diff_index(&rev, 1 /* cached */);
617
618 commitable = !!DIFF_OPT_TST(&rev.diffopt, HAS_CHANGES);
619 }
620 }
d616a239 621
ec84bd00 622 fclose(fp);
7168624c 623
ec84bd00
PB
624 if (!commitable && !in_merge && !allow_empty &&
625 !(amend && is_a_merge(head_sha1))) {
626 run_status(stdout, index_file, prefix, 0);
627 unlink(commit_editmsg);
628 return 0;
7168624c
AR
629 }
630
ec84bd00
PB
631 /*
632 * Re-read the index as pre-commit hook could have updated it,
633 * and write it out as a tree. We must do this before we invoke
634 * the editor and after we invoke run_status above.
635 */
636 discard_cache();
637 read_cache_from(index_file);
638 if (!active_cache_tree)
639 active_cache_tree = cache_tree();
640 if (cache_tree_update(active_cache_tree,
641 active_cache, active_nr, 0, 0) < 0) {
cbce6c0b 642 error("Error building trees; the index is unmerged?");
ec84bd00 643 return 0;
7168624c 644 }
f5bbc322 645
8089c85b
PB
646 if (run_hook(index_file, "prepare-commit-msg",
647 git_path(commit_editmsg), hook_arg1, hook_arg2, NULL))
648 return 0;
f5bbc322 649
ec84bd00
PB
650 if (use_editor) {
651 char index[PATH_MAX];
652 const char *env[2] = { index, NULL };
653 snprintf(index, sizeof(index), "GIT_INDEX_FILE=%s", index_file);
7198203a
SB
654 if (launch_editor(git_path(commit_editmsg), NULL, env)) {
655 fprintf(stderr,
656 "Please supply the message using either -m or -F option.\n");
657 exit(1);
658 }
ec84bd00 659 }
f5bbc322 660
ec84bd00
PB
661 if (!no_verify &&
662 run_hook(index_file, "commit-msg", git_path(commit_editmsg), NULL)) {
663 return 0;
664 }
f5bbc322 665
ec84bd00 666 return 1;
f5bbc322
KH
667}
668
669/*
6bb6b034
MV
670 * Find out if the message in the strbuf contains only whitespace and
671 * Signed-off-by lines.
f5bbc322 672 */
6bb6b034 673static int message_is_empty(struct strbuf *sb)
f5bbc322
KH
674{
675 struct strbuf tmpl;
676 const char *nl;
6bb6b034 677 int eol, i, start = 0;
f5bbc322 678
5f065737
AR
679 if (cleanup_mode == CLEANUP_NONE && sb->len)
680 return 0;
681
f5bbc322
KH
682 /* See if the template is just a prefix of the message. */
683 strbuf_init(&tmpl, 0);
684 if (template_file && strbuf_read_file(&tmpl, template_file, 0) > 0) {
5f065737 685 stripspace(&tmpl, cleanup_mode == CLEANUP_ALL);
f5bbc322
KH
686 if (start + tmpl.len <= sb->len &&
687 memcmp(tmpl.buf, sb->buf + start, tmpl.len) == 0)
688 start += tmpl.len;
689 }
690 strbuf_release(&tmpl);
691
692 /* Check if the rest is just whitespace and Signed-of-by's. */
693 for (i = start; i < sb->len; i++) {
694 nl = memchr(sb->buf + i, '\n', sb->len - i);
695 if (nl)
696 eol = nl - sb->buf;
697 else
698 eol = sb->len;
699
700 if (strlen(sign_off_header) <= eol - i &&
701 !prefixcmp(sb->buf + i, sign_off_header)) {
702 i = eol;
703 continue;
704 }
705 while (i < eol)
706 if (!isspace(sb->buf[i++]))
707 return 0;
708 }
709
710 return 1;
711}
712
146ea068
JH
713static const char *find_author_by_nickname(const char *name)
714{
715 struct rev_info revs;
716 struct commit *commit;
717 struct strbuf buf = STRBUF_INIT;
718 const char *av[20];
719 int ac = 0;
720
721 init_revisions(&revs, NULL);
722 strbuf_addf(&buf, "--author=%s", name);
723 av[++ac] = "--all";
724 av[++ac] = "-i";
725 av[++ac] = buf.buf;
726 av[++ac] = NULL;
727 setup_revisions(ac, av, &revs, NULL);
728 prepare_revision_walk(&revs);
729 commit = get_revision(&revs);
730 if (commit) {
731 strbuf_release(&buf);
732 format_commit_message(commit, "%an <%ae>", &buf, DATE_NORMAL);
733 return strbuf_detach(&buf, NULL);
734 }
735 die("No existing author found with '%s'", name);
736}
737
2f02b25f 738static int parse_and_validate_options(int argc, const char *argv[],
dbd0f5c7
JH
739 const char * const usage[],
740 const char *prefix)
f5bbc322
KH
741{
742 int f = 0;
743
2f02b25f 744 argc = parse_options(argc, argv, builtin_commit_options, usage, 0);
dbd0f5c7
JH
745 logfile = parse_options_fix_filename(prefix, logfile);
746 template_file = parse_options_fix_filename(prefix, template_file);
f5bbc322 747
146ea068
JH
748 if (force_author && !strchr(force_author, '>'))
749 force_author = find_author_by_nickname(force_author);
750
f9568530 751 if (logfile || message.len || use_message)
4803466f 752 use_editor = 0;
f5bbc322 753 if (edit_flag)
4803466f 754 use_editor = 1;
406400ce
PB
755 if (!use_editor)
756 setenv("GIT_EDITOR", ":", 1);
f5bbc322
KH
757
758 if (get_sha1("HEAD", head_sha1))
759 initial_commit = 1;
760
761 if (!get_sha1("MERGE_HEAD", merge_head_sha1))
762 in_merge = 1;
763
764 /* Sanity check options */
765 if (amend && initial_commit)
766 die("You have nothing to amend.");
767 if (amend && in_merge)
b5b644a9 768 die("You are in the middle of a merge -- cannot amend.");
f5bbc322
KH
769
770 if (use_message)
771 f++;
772 if (edit_message)
773 f++;
774 if (logfile)
775 f++;
776 if (f > 1)
777 die("Only one of -c/-C/-F can be used.");
f9568530 778 if (message.len && f > 0)
f5bbc322
KH
779 die("Option -m cannot be combined with -c/-C/-F.");
780 if (edit_message)
781 use_message = edit_message;
1eb1e9ee 782 if (amend && !use_message)
f5bbc322
KH
783 use_message = "HEAD";
784 if (use_message) {
785 unsigned char sha1[20];
786 static char utf8[] = "UTF-8";
787 const char *out_enc;
788 char *enc, *end;
789 struct commit *commit;
790
791 if (get_sha1(use_message, sha1))
792 die("could not lookup commit %s", use_message);
8a2f8733 793 commit = lookup_commit_reference(sha1);
f5bbc322
KH
794 if (!commit || parse_commit(commit))
795 die("could not parse commit %s", use_message);
796
797 enc = strstr(commit->buffer, "\nencoding");
798 if (enc) {
799 end = strchr(enc + 10, '\n');
800 enc = xstrndup(enc + 10, end - (enc + 10));
801 } else {
802 enc = utf8;
803 }
804 out_enc = git_commit_encoding ? git_commit_encoding : utf8;
805
806 if (strcmp(out_enc, enc))
807 use_message_buffer =
808 reencode_string(commit->buffer, out_enc, enc);
809
810 /*
811 * If we failed to reencode the buffer, just copy it
812 * byte for byte so the user can try to fix it up.
813 * This also handles the case where input and output
814 * encodings are identical.
815 */
816 if (use_message_buffer == NULL)
817 use_message_buffer = xstrdup(commit->buffer);
818 if (enc != utf8)
819 free(enc);
820 }
821
822 if (!!also + !!only + !!all + !!interactive > 1)
823 die("Only one of --include/--only/--all/--interactive can be used.");
824 if (argc == 0 && (also || (only && !amend)))
825 die("No paths with --include/--only does not make sense.");
826 if (argc == 0 && only && amend)
827 only_include_assumed = "Clever... amending the last one with dirty index.";
3c5283f8 828 if (argc > 0 && !also && !only)
f5bbc322 829 only_include_assumed = "Explicit paths specified without -i nor -o; assuming --only paths...";
5f065737
AR
830 if (!cleanup_arg || !strcmp(cleanup_arg, "default"))
831 cleanup_mode = use_editor ? CLEANUP_ALL : CLEANUP_SPACE;
832 else if (!strcmp(cleanup_arg, "verbatim"))
833 cleanup_mode = CLEANUP_NONE;
834 else if (!strcmp(cleanup_arg, "whitespace"))
835 cleanup_mode = CLEANUP_SPACE;
836 else if (!strcmp(cleanup_arg, "strip"))
837 cleanup_mode = CLEANUP_ALL;
838 else
839 die("Invalid cleanup mode %s", cleanup_arg);
f5bbc322 840
4bfee30a
MSO
841 if (!untracked_files_arg)
842 ; /* default already initialized */
6c2ce048
MSO
843 else if (!strcmp(untracked_files_arg, "no"))
844 show_untracked_files = SHOW_NO_UNTRACKED_FILES;
4bfee30a
MSO
845 else if (!strcmp(untracked_files_arg, "normal"))
846 show_untracked_files = SHOW_NORMAL_UNTRACKED_FILES;
847 else if (!strcmp(untracked_files_arg, "all"))
848 show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
849 else
850 die("Invalid untracked files mode '%s'", untracked_files_arg);
851
f5bbc322
KH
852 if (all && argc > 0)
853 die("Paths with -a does not make sense.");
854 else if (interactive && argc > 0)
855 die("Paths with --interactive does not make sense.");
856
857 return argc;
858}
859
860int cmd_status(int argc, const char **argv, const char *prefix)
861{
862 const char *index_file;
863 int commitable;
864
ef90d6d4 865 git_config(git_status_config, NULL);
f5bbc322 866
6b2f2d98
MK
867 if (wt_status_use_color == -1)
868 wt_status_use_color = git_use_color_default;
869
dbd0f5c7 870 argc = parse_and_validate_options(argc, argv, builtin_status_usage, prefix);
f5bbc322 871
f64fe7b4 872 index_file = prepare_index(argc, argv, prefix);
f5bbc322 873
37d07f8f 874 commitable = run_status(stdout, index_file, prefix, 0);
f5bbc322 875
2888605c 876 rollback_index_files();
f5bbc322
KH
877
878 return commitable ? 0 : 1;
879}
880
f5bbc322
KH
881static void print_summary(const char *prefix, const unsigned char *sha1)
882{
883 struct rev_info rev;
884 struct commit *commit;
885
886 commit = lookup_commit(sha1);
887 if (!commit)
b5b644a9 888 die("couldn't look up newly created commit");
f5bbc322
KH
889 if (!commit || parse_commit(commit))
890 die("could not parse newly created commit");
891
892 init_revisions(&rev, prefix);
893 setup_revisions(0, NULL, &rev, NULL);
894
895 rev.abbrev = 0;
896 rev.diff = 1;
897 rev.diffopt.output_format =
898 DIFF_FORMAT_SHORTSTAT | DIFF_FORMAT_SUMMARY;
899
900 rev.verbose_header = 1;
901 rev.show_root_diff = 1;
4da45bef 902 get_commit_format("format:%h: %s", &rev);
bf82a150 903 rev.always_show_header = 0;
3eb2a15e
JH
904 rev.diffopt.detect_rename = 1;
905 rev.diffopt.rename_limit = 100;
906 rev.diffopt.break_opt = 0;
15964563 907 diff_setup_done(&rev.diffopt);
f5bbc322
KH
908
909 printf("Created %scommit ", initial_commit ? "initial " : "");
910
bf82a150
JH
911 if (!log_tree_commit(&rev, commit)) {
912 struct strbuf buf = STRBUF_INIT;
d36f8679 913 format_commit_message(commit, "%h: %s", &buf, DATE_NORMAL);
bf82a150
JH
914 printf("%s\n", buf.buf);
915 strbuf_release(&buf);
916 }
f5bbc322
KH
917}
918
186458b1 919static int git_commit_config(const char *k, const char *v, void *cb)
f5bbc322 920{
984c6e7e
BH
921 if (!strcmp(k, "commit.template"))
922 return git_config_string(&template_file, k, v);
f5bbc322 923
ef90d6d4 924 return git_status_config(k, v, cb);
f5bbc322
KH
925}
926
927static const char commit_utf8_warn[] =
928"Warning: commit message does not conform to UTF-8.\n"
929"You may want to amend it after fixing the message, or set the config\n"
930"variable i18n.commitencoding to the encoding your project uses.\n";
931
932int cmd_commit(int argc, const char **argv, const char *prefix)
933{
f5bbc322
KH
934 struct strbuf sb;
935 const char *index_file, *reflog_msg;
99a12694 936 char *nl, *p;
f5bbc322
KH
937 unsigned char commit_sha1[20];
938 struct ref_lock *ref_lock;
6bb6b034 939 struct commit_list *parents = NULL, **pptr = &parents;
f5bbc322 940
ef90d6d4 941 git_config(git_commit_config, NULL);
f5bbc322 942
dbd0f5c7 943 argc = parse_and_validate_options(argc, argv, builtin_commit_usage, prefix);
f5bbc322 944
f64fe7b4 945 index_file = prepare_index(argc, argv, prefix);
f5bbc322 946
ec84bd00
PB
947 /* Set up everything for writing the commit object. This includes
948 running hooks, writing the trees, and interacting with the user. */
949 if (!prepare_to_commit(index_file, prefix)) {
2888605c 950 rollback_index_files();
f5bbc322
KH
951 return 1;
952 }
953
f5bbc322
KH
954 /* Determine parents */
955 if (initial_commit) {
956 reflog_msg = "commit (initial)";
f5bbc322
KH
957 } else if (amend) {
958 struct commit_list *c;
959 struct commit *commit;
960
961 reflog_msg = "commit (amend)";
962 commit = lookup_commit(head_sha1);
963 if (!commit || parse_commit(commit))
964 die("could not parse HEAD commit");
965
966 for (c = commit->parents; c; c = c->next)
6bb6b034 967 pptr = &commit_list_insert(c->item, pptr)->next;
f5bbc322
KH
968 } else if (in_merge) {
969 struct strbuf m;
970 FILE *fp;
971
972 reflog_msg = "commit (merge)";
6bb6b034 973 pptr = &commit_list_insert(lookup_commit(head_sha1), pptr)->next;
f5bbc322
KH
974 strbuf_init(&m, 0);
975 fp = fopen(git_path("MERGE_HEAD"), "r");
976 if (fp == NULL)
977 die("could not open %s for reading: %s",
978 git_path("MERGE_HEAD"), strerror(errno));
7c3fd25d
LT
979 while (strbuf_getline(&m, fp, '\n') != EOF) {
980 unsigned char sha1[20];
981 if (get_sha1_hex(m.buf, sha1) < 0)
982 die("Corrupt MERGE_HEAD file (%s)", m.buf);
6bb6b034 983 pptr = &commit_list_insert(lookup_commit(sha1), pptr)->next;
7c3fd25d 984 }
f5bbc322
KH
985 fclose(fp);
986 strbuf_release(&m);
987 } else {
988 reflog_msg = "commit";
6bb6b034 989 pptr = &commit_list_insert(lookup_commit(head_sha1), pptr)->next;
f5bbc322 990 }
6bb6b034 991 parents = reduce_heads(parents);
f5bbc322 992
ec84bd00 993 /* Finally, get the commit message */
6bb6b034 994 strbuf_init(&sb, 0);
740001a5
JH
995 if (strbuf_read_file(&sb, git_path(commit_editmsg), 0) < 0) {
996 rollback_index_files();
997 die("could not read commit message");
998 }
99a12694
KH
999
1000 /* Truncate the message just before the diff, if any. */
1001 p = strstr(sb.buf, "\ndiff --git a/");
1002 if (p != NULL)
a98b8191 1003 strbuf_setlen(&sb, p - sb.buf + 1);
99a12694 1004
5f065737
AR
1005 if (cleanup_mode != CLEANUP_NONE)
1006 stripspace(&sb, cleanup_mode == CLEANUP_ALL);
6bb6b034 1007 if (message_is_empty(&sb)) {
2888605c 1008 rollback_index_files();
fdc7c811
JK
1009 fprintf(stderr, "Aborting commit due to empty commit message.\n");
1010 exit(1);
2888605c 1011 }
f5bbc322 1012
6bb6b034
MV
1013 if (commit_tree(sb.buf, active_cache_tree->sha1, parents, commit_sha1,
1014 fmt_ident(author_name, author_email, author_date,
1015 IDENT_ERROR_ON_NO_NAME))) {
2888605c 1016 rollback_index_files();
f5bbc322 1017 die("failed to write commit object");
2888605c 1018 }
f5bbc322
KH
1019
1020 ref_lock = lock_any_ref_for_update("HEAD",
1021 initial_commit ? NULL : head_sha1,
1022 0);
1023
6bb6b034 1024 nl = strchr(sb.buf, '\n');
741707b1
JS
1025 if (nl)
1026 strbuf_setlen(&sb, nl + 1 - sb.buf);
1027 else
1028 strbuf_addch(&sb, '\n');
741707b1
JS
1029 strbuf_insert(&sb, 0, reflog_msg, strlen(reflog_msg));
1030 strbuf_insert(&sb, strlen(reflog_msg), ": ", 2);
f5bbc322 1031
2888605c
JH
1032 if (!ref_lock) {
1033 rollback_index_files();
f5bbc322 1034 die("cannot lock HEAD ref");
2888605c
JH
1035 }
1036 if (write_ref_sha1(ref_lock, commit_sha1, sb.buf) < 0) {
1037 rollback_index_files();
f5bbc322 1038 die("cannot update HEAD ref");
2888605c 1039 }
f5bbc322
KH
1040
1041 unlink(git_path("MERGE_HEAD"));
1042 unlink(git_path("MERGE_MSG"));
5a95b855 1043 unlink(git_path("SQUASH_MSG"));
f5bbc322 1044
5a9dd399
BC
1045 if (commit_index_files())
1046 die ("Repository has been updated, but unable to write\n"
1047 "new_index file. Check that disk is not full or quota is\n"
1048 "not exceeded, and then \"git reset HEAD\" to recover.");
f5bbc322
KH
1049
1050 rerere();
2888605c 1051 run_hook(get_index_file(), "post-commit", NULL);
f5bbc322
KH
1052 if (!quiet)
1053 print_summary(prefix, commit_sha1);
1054
1055 return 0;
1056}