Merge branch 'jc/maint-1.6.0-split-diff-metainfo' into jc/maint-split-diff-metainfo
[git] / builtin-commit.c
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"
10 #include "color.h"
11 #include "dir.h"
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"
24 #include "string-list.h"
25 #include "rerere.h"
26 #include "unpack-trees.h"
27
28 static const char * const builtin_commit_usage[] = {
29         "git commit [options] [--] <filepattern>...",
30         NULL
31 };
32
33 static const char * const builtin_status_usage[] = {
34         "git status [options] [--] <filepattern>...",
35         NULL
36 };
37
38 static unsigned char head_sha1[20], merge_head_sha1[20];
39 static char *use_message_buffer;
40 static const char commit_editmsg[] = "COMMIT_EDITMSG";
41 static struct lock_file index_lock; /* real index */
42 static struct lock_file false_lock; /* used only for partial commits */
43 static enum {
44         COMMIT_AS_IS = 1,
45         COMMIT_NORMAL,
46         COMMIT_PARTIAL,
47 } commit_style;
48
49 static const char *logfile, *force_author;
50 static const char *template_file;
51 static char *edit_message, *use_message;
52 static char *author_name, *author_email, *author_date;
53 static int all, edit_flag, also, interactive, only, amend, signoff;
54 static int quiet, verbose, no_verify, allow_empty;
55 static char *untracked_files_arg;
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  */
63 static enum {
64         CLEANUP_SPACE,
65         CLEANUP_NONE,
66         CLEANUP_ALL,
67 } cleanup_mode;
68 static char *cleanup_arg;
69
70 static int use_editor = 1, initial_commit, in_merge;
71 static const char *only_include_assumed;
72 static struct strbuf message;
73
74 static 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);
81                 strbuf_addstr(buf, "\n\n");
82         }
83         return 0;
84 }
85
86 static 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"),
93         OPT_CALLBACK('m', "message", &message, "MESSAGE", "specify commit message", opt_parse_m),
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"),
96         OPT_BOOLEAN('s', "signoff", &signoff, "add Signed-off-by:"),
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"),
104         OPT_BOOLEAN('o', "only", &only, "commit only specified files"),
105         OPT_BOOLEAN('n', "no-verify", &no_verify, "bypass pre-commit hook"),
106         OPT_BOOLEAN(0, "amend", &amend, "amend previous commit"),
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" },
108         OPT_BOOLEAN(0, "allow-empty", &allow_empty, "ok to record an empty change"),
109         OPT_STRING(0, "cleanup", &cleanup_arg, "default", "how to strip spaces and #comments from message"),
110
111         OPT_END()
112 };
113
114 static 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
129 static int commit_index_files(void)
130 {
131         int err = 0;
132
133         switch (commit_style) {
134         case COMMIT_AS_IS:
135                 break; /* nothing to do */
136         case COMMIT_NORMAL:
137                 err = commit_lock_file(&index_lock);
138                 break;
139         case COMMIT_PARTIAL:
140                 err = commit_lock_file(&index_lock);
141                 rollback_lock_file(&false_lock);
142                 break;
143         }
144
145         return err;
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  */
152 static int list_paths(struct string_list *list, const char *with_tree,
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];
167                 if (ce->ce_flags & CE_UPDATE)
168                         continue;
169                 if (!pathspec_match(pattern, m, ce->name, 0))
170                         continue;
171                 string_list_insert(ce->name, list);
172         }
173
174         return report_path_error(m, pattern, prefix ? strlen(prefix) : 0);
175 }
176
177 static void add_remove_files(struct string_list *list)
178 {
179         int i;
180         for (i = 0; i < list->nr; i++) {
181                 struct stat st;
182                 struct string_list_item *p = &(list->items[i]);
183
184                 if (!lstat(p->string, &st)) {
185                         if (add_to_cache(p->string, &st, 0))
186                                 die("updating files failed");
187                 } else
188                         remove_file_from_cache(p->string);
189         }
190 }
191
192 static 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;
207         opts.src_index = &the_index;
208         opts.dst_index = &the_index;
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);
216         if (unpack_trees(1, &t, &opts))
217                 exit(128); /* We've already reported the error, finish dying */
218 }
219
220 static char *prepare_index(int argc, const char **argv, const char *prefix)
221 {
222         int fd;
223         struct string_list partial;
224         const char **pathspec = NULL;
225
226         if (interactive) {
227                 interactive_add(argc, argv, prefix);
228                 if (read_cache_preload(NULL) < 0)
229                         die("index file corrupt");
230                 commit_style = COMMIT_AS_IS;
231                 return get_index_file();
232         }
233
234         if (*argv)
235                 pathspec = get_pathspec(prefix, argv);
236
237         if (read_cache_preload(pathspec) < 0)
238                 die("index file corrupt");
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);
254                 add_files_to_cache(also ? prefix : NULL, pathspec, 0);
255                 refresh_cache(REFRESH_QUIET);
256                 if (write_cache(fd, active_cache, active_nr) ||
257                     close_lock_file(&index_lock))
258                         die("unable to write new_index file");
259                 commit_style = COMMIT_NORMAL;
260                 return index_lock.filename;
261         }
262
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) ||
276                     commit_locked_index(&index_lock))
277                         die("unable to write new_index file");
278                 commit_style = COMMIT_AS_IS;
279                 return get_index_file();
280         }
281
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));
307         partial.strdup_strings = 1;
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);
317         refresh_cache(REFRESH_QUIET);
318         if (write_cache(fd, active_cache, active_nr) ||
319             close_lock_file(&index_lock))
320                 die("unable to write new_index file");
321
322         fd = hold_lock_file_for_update(&false_lock,
323                                        git_path("next-index-%"PRIuMAX,
324                                                 (uintmax_t) getpid()),
325                                        LOCK_DIE_ON_ERROR);
326
327         create_base_index();
328         add_remove_files(&partial);
329         refresh_cache(REFRESH_QUIET);
330
331         if (write_cache(fd, active_cache, active_nr) ||
332             close_lock_file(&false_lock))
333                 die("unable to write temporary index file");
334
335         discard_cache();
336         read_cache_from(false_lock.filename);
337
338         return false_lock.filename;
339 }
340
341 static int run_status(FILE *fp, const char *index_file, const char *prefix, int nowarn)
342 {
343         struct wt_status s;
344
345         wt_status_prepare(&s);
346         if (wt_status_relative_paths)
347                 s.prefix = prefix;
348
349         if (amend) {
350                 s.amend = 1;
351                 s.reference = "HEAD^1";
352         }
353         s.verbose = verbose;
354         s.untracked = (show_untracked_files == SHOW_ALL_UNTRACKED_FILES);
355         s.index_file = index_file;
356         s.fp = fp;
357         s.nowarn = nowarn;
358
359         wt_status_print(&s);
360
361         return s.commitable;
362 }
363
364 static int run_hook(const char *index_file, const char *name, ...)
365 {
366         struct child_process hook;
367         const char *argv[10], *env[2];
368         char index[PATH_MAX];
369         va_list args;
370         int i;
371
372         va_start(args, name);
373         argv[0] = git_path("hooks/%s", name);
374         i = 0;
375         do {
376                 if (++i >= ARRAY_SIZE(argv))
377                         die ("run_hook(): too many arguments");
378                 argv[i] = va_arg(args, const char *);
379         } while (argv[i]);
380         va_end(args);
381
382         snprintf(index, sizeof(index), "GIT_INDEX_FILE=%s", index_file);
383         env[0] = index;
384         env[1] = NULL;
385
386         if (access(argv[0], X_OK) < 0)
387                 return 0;
388
389         memset(&hook, 0, sizeof(hook));
390         hook.argv = argv;
391         hook.no_stdin = 1;
392         hook.stdout_to_stderr = 1;
393         hook.env = env;
394
395         return run_command(&hook);
396 }
397
398 static int is_a_merge(const unsigned char *sha1)
399 {
400         struct commit *commit = lookup_commit(sha1);
401         if (!commit || parse_commit(commit))
402                 die("could not parse HEAD commit");
403         return !!(commit->parents && commit->parents->next);
404 }
405
406 static const char sign_off_header[] = "Signed-off-by: ";
407
408 static void determine_author_info(void)
409 {
410         char *name, *email, *date;
411
412         name = getenv("GIT_AUTHOR_NAME");
413         email = getenv("GIT_AUTHOR_EMAIL");
414         date = getenv("GIT_AUTHOR_DATE");
415
416         if (use_message) {
417                 const char *a, *lb, *rb, *eol;
418
419                 a = strstr(use_message_buffer, "\nauthor ");
420                 if (!a)
421                         die("invalid commit: %s", use_message);
422
423                 lb = strstr(a + 8, " <");
424                 rb = strstr(a + 8, "> ");
425                 eol = strchr(a + 8, '\n');
426                 if (!lb || !rb || !eol)
427                         die("invalid commit: %s", use_message);
428
429                 name = xstrndup(a + 8, lb - (a + 8));
430                 email = xstrndup(lb + 2, rb - (lb + 2));
431                 date = xstrndup(rb + 2, eol - (rb + 2));
432         }
433
434         if (force_author) {
435                 const char *lb = strstr(force_author, " <");
436                 const char *rb = strchr(force_author, '>');
437
438                 if (!lb || !rb)
439                         die("malformed --author parameter");
440                 name = xstrndup(force_author, lb - force_author);
441                 email = xstrndup(lb + 2, rb - (lb + 2));
442         }
443
444         author_name = name;
445         author_email = email;
446         author_date = date;
447 }
448
449 static int prepare_to_commit(const char *index_file, const char *prefix)
450 {
451         struct stat statbuf;
452         int commitable, saved_color_setting;
453         struct strbuf sb = STRBUF_INIT;
454         char *buffer;
455         FILE *fp;
456         const char *hook_arg1 = NULL;
457         const char *hook_arg2 = NULL;
458         int ident_shown = 0;
459
460         if (!no_verify && run_hook(index_file, "pre-commit", NULL))
461                 return 0;
462
463         if (message.len) {
464                 strbuf_addbuf(&sb, &message);
465                 hook_arg1 = "message";
466         } else if (logfile && !strcmp(logfile, "-")) {
467                 if (isatty(0))
468                         fprintf(stderr, "(reading log message from standard input)\n");
469                 if (strbuf_read(&sb, 0, 0) < 0)
470                         die("could not read log from standard input");
471                 hook_arg1 = "message";
472         } else if (logfile) {
473                 if (strbuf_read_file(&sb, logfile, 0) < 0)
474                         die("could not read log file '%s': %s",
475                             logfile, strerror(errno));
476                 hook_arg1 = "message";
477         } else if (use_message) {
478                 buffer = strstr(use_message_buffer, "\n\n");
479                 if (!buffer || buffer[2] == '\0')
480                         die("commit has empty message");
481                 strbuf_add(&sb, buffer + 2, strlen(buffer + 2));
482                 hook_arg1 = "commit";
483                 hook_arg2 = use_message;
484         } else if (!stat(git_path("MERGE_MSG"), &statbuf)) {
485                 if (strbuf_read_file(&sb, git_path("MERGE_MSG"), 0) < 0)
486                         die("could not read MERGE_MSG: %s", strerror(errno));
487                 hook_arg1 = "merge";
488         } else if (!stat(git_path("SQUASH_MSG"), &statbuf)) {
489                 if (strbuf_read_file(&sb, git_path("SQUASH_MSG"), 0) < 0)
490                         die("could not read SQUASH_MSG: %s", strerror(errno));
491                 hook_arg1 = "squash";
492         } else if (template_file && !stat(template_file, &statbuf)) {
493                 if (strbuf_read_file(&sb, template_file, 0) < 0)
494                         die("could not read %s: %s",
495                             template_file, strerror(errno));
496                 hook_arg1 = "template";
497         }
498
499         /*
500          * This final case does not modify the template message,
501          * it just sets the argument to the prepare-commit-msg hook.
502          */
503         else if (in_merge)
504                 hook_arg1 = "merge";
505
506         fp = fopen(git_path(commit_editmsg), "w");
507         if (fp == NULL)
508                 die("could not open %s: %s",
509                     git_path(commit_editmsg), strerror(errno));
510
511         if (cleanup_mode != CLEANUP_NONE)
512                 stripspace(&sb, 0);
513
514         if (signoff) {
515                 struct strbuf sob = STRBUF_INIT;
516                 int i;
517
518                 strbuf_addstr(&sob, sign_off_header);
519                 strbuf_addstr(&sob, fmt_name(getenv("GIT_COMMITTER_NAME"),
520                                              getenv("GIT_COMMITTER_EMAIL")));
521                 strbuf_addch(&sob, '\n');
522                 for (i = sb.len - 1; i > 0 && sb.buf[i - 1] != '\n'; i--)
523                         ; /* do nothing */
524                 if (prefixcmp(sb.buf + i, sob.buf)) {
525                         if (prefixcmp(sb.buf + i, sign_off_header))
526                                 strbuf_addch(&sb, '\n');
527                         strbuf_addbuf(&sb, &sob);
528                 }
529                 strbuf_release(&sob);
530         }
531
532         if (fwrite(sb.buf, 1, sb.len, fp) < sb.len)
533                 die("could not write commit template: %s", strerror(errno));
534
535         strbuf_release(&sb);
536
537         determine_author_info();
538
539         /* This checks if committer ident is explicitly given */
540         git_committer_info(0);
541         if (use_editor) {
542                 char *author_ident;
543                 const char *committer_ident;
544
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"
557                         "# Please enter the commit message for your changes.");
558                 if (cleanup_mode == CLEANUP_ALL)
559                         fprintf(fp,
560                                 " Lines starting\n"
561                                 "# with '#' will be ignored, and an empty"
562                                 " message aborts the commit.\n");
563                 else /* CLEANUP_SPACE, that is. */
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");
569                 if (only_include_assumed)
570                         fprintf(fp, "# %s\n", only_include_assumed);
571
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,
577                                 "%s"
578                                 "# Author:    %s\n",
579                                 ident_shown++ ? "" : "#\n",
580                                 author_ident);
581                 free(author_ident);
582
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
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 {
598                 struct rev_info rev;
599                 unsigned char sha1[20];
600                 const char *parent = "HEAD";
601
602                 if (!active_nr && read_cache() < 0)
603                         die("Cannot read index");
604
605                 if (amend)
606                         parent = "HEAD^1";
607
608                 if (get_sha1(parent, sha1))
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         }
621
622         fclose(fp);
623
624         if (!commitable && !in_merge && !allow_empty &&
625             !(amend && is_a_merge(head_sha1))) {
626                 run_status(stdout, index_file, prefix, 0);
627                 return 0;
628         }
629
630         /*
631          * Re-read the index as pre-commit hook could have updated it,
632          * and write it out as a tree.  We must do this before we invoke
633          * the editor and after we invoke run_status above.
634          */
635         discard_cache();
636         read_cache_from(index_file);
637         if (!active_cache_tree)
638                 active_cache_tree = cache_tree();
639         if (cache_tree_update(active_cache_tree,
640                               active_cache, active_nr, 0, 0) < 0) {
641                 error("Error building trees");
642                 return 0;
643         }
644
645         if (run_hook(index_file, "prepare-commit-msg",
646                      git_path(commit_editmsg), hook_arg1, hook_arg2, NULL))
647                 return 0;
648
649         if (use_editor) {
650                 char index[PATH_MAX];
651                 const char *env[2] = { index, NULL };
652                 snprintf(index, sizeof(index), "GIT_INDEX_FILE=%s", index_file);
653                 if (launch_editor(git_path(commit_editmsg), NULL, env)) {
654                         fprintf(stderr,
655                         "Please supply the message using either -m or -F option.\n");
656                         exit(1);
657                 }
658         }
659
660         if (!no_verify &&
661             run_hook(index_file, "commit-msg", git_path(commit_editmsg), NULL)) {
662                 return 0;
663         }
664
665         return 1;
666 }
667
668 /*
669  * Find out if the message in the strbuf contains only whitespace and
670  * Signed-off-by lines.
671  */
672 static int message_is_empty(struct strbuf *sb)
673 {
674         struct strbuf tmpl = STRBUF_INIT;
675         const char *nl;
676         int eol, i, start = 0;
677
678         if (cleanup_mode == CLEANUP_NONE && sb->len)
679                 return 0;
680
681         /* See if the template is just a prefix of the message. */
682         if (template_file && strbuf_read_file(&tmpl, template_file, 0) > 0) {
683                 stripspace(&tmpl, cleanup_mode == CLEANUP_ALL);
684                 if (start + tmpl.len <= sb->len &&
685                     memcmp(tmpl.buf, sb->buf + start, tmpl.len) == 0)
686                         start += tmpl.len;
687         }
688         strbuf_release(&tmpl);
689
690         /* Check if the rest is just whitespace and Signed-of-by's. */
691         for (i = start; i < sb->len; i++) {
692                 nl = memchr(sb->buf + i, '\n', sb->len - i);
693                 if (nl)
694                         eol = nl - sb->buf;
695                 else
696                         eol = sb->len;
697
698                 if (strlen(sign_off_header) <= eol - i &&
699                     !prefixcmp(sb->buf + i, sign_off_header)) {
700                         i = eol;
701                         continue;
702                 }
703                 while (i < eol)
704                         if (!isspace(sb->buf[i++]))
705                                 return 0;
706         }
707
708         return 1;
709 }
710
711 static const char *find_author_by_nickname(const char *name)
712 {
713         struct rev_info revs;
714         struct commit *commit;
715         struct strbuf buf = STRBUF_INIT;
716         const char *av[20];
717         int ac = 0;
718
719         init_revisions(&revs, NULL);
720         strbuf_addf(&buf, "--author=%s", name);
721         av[++ac] = "--all";
722         av[++ac] = "-i";
723         av[++ac] = buf.buf;
724         av[++ac] = NULL;
725         setup_revisions(ac, av, &revs, NULL);
726         prepare_revision_walk(&revs);
727         commit = get_revision(&revs);
728         if (commit) {
729                 strbuf_release(&buf);
730                 format_commit_message(commit, "%an <%ae>", &buf, DATE_NORMAL);
731                 return strbuf_detach(&buf, NULL);
732         }
733         die("No existing author found with '%s'", name);
734 }
735
736 static int parse_and_validate_options(int argc, const char *argv[],
737                                       const char * const usage[],
738                                       const char *prefix)
739 {
740         int f = 0;
741
742         argc = parse_options(argc, argv, builtin_commit_options, usage, 0);
743         logfile = parse_options_fix_filename(prefix, logfile);
744         template_file = parse_options_fix_filename(prefix, template_file);
745
746         if (force_author && !strchr(force_author, '>'))
747                 force_author = find_author_by_nickname(force_author);
748
749         if (logfile || message.len || use_message)
750                 use_editor = 0;
751         if (edit_flag)
752                 use_editor = 1;
753         if (!use_editor)
754                 setenv("GIT_EDITOR", ":", 1);
755
756         if (get_sha1("HEAD", head_sha1))
757                 initial_commit = 1;
758
759         if (!get_sha1("MERGE_HEAD", merge_head_sha1))
760                 in_merge = 1;
761
762         /* Sanity check options */
763         if (amend && initial_commit)
764                 die("You have nothing to amend.");
765         if (amend && in_merge)
766                 die("You are in the middle of a merge -- cannot amend.");
767
768         if (use_message)
769                 f++;
770         if (edit_message)
771                 f++;
772         if (logfile)
773                 f++;
774         if (f > 1)
775                 die("Only one of -c/-C/-F can be used.");
776         if (message.len && f > 0)
777                 die("Option -m cannot be combined with -c/-C/-F.");
778         if (edit_message)
779                 use_message = edit_message;
780         if (amend && !use_message)
781                 use_message = "HEAD";
782         if (use_message) {
783                 unsigned char sha1[20];
784                 static char utf8[] = "UTF-8";
785                 const char *out_enc;
786                 char *enc, *end;
787                 struct commit *commit;
788
789                 if (get_sha1(use_message, sha1))
790                         die("could not lookup commit %s", use_message);
791                 commit = lookup_commit_reference(sha1);
792                 if (!commit || parse_commit(commit))
793                         die("could not parse commit %s", use_message);
794
795                 enc = strstr(commit->buffer, "\nencoding");
796                 if (enc) {
797                         end = strchr(enc + 10, '\n');
798                         enc = xstrndup(enc + 10, end - (enc + 10));
799                 } else {
800                         enc = utf8;
801                 }
802                 out_enc = git_commit_encoding ? git_commit_encoding : utf8;
803
804                 if (strcmp(out_enc, enc))
805                         use_message_buffer =
806                                 reencode_string(commit->buffer, out_enc, enc);
807
808                 /*
809                  * If we failed to reencode the buffer, just copy it
810                  * byte for byte so the user can try to fix it up.
811                  * This also handles the case where input and output
812                  * encodings are identical.
813                  */
814                 if (use_message_buffer == NULL)
815                         use_message_buffer = xstrdup(commit->buffer);
816                 if (enc != utf8)
817                         free(enc);
818         }
819
820         if (!!also + !!only + !!all + !!interactive > 1)
821                 die("Only one of --include/--only/--all/--interactive can be used.");
822         if (argc == 0 && (also || (only && !amend)))
823                 die("No paths with --include/--only does not make sense.");
824         if (argc == 0 && only && amend)
825                 only_include_assumed = "Clever... amending the last one with dirty index.";
826         if (argc > 0 && !also && !only)
827                 only_include_assumed = "Explicit paths specified without -i nor -o; assuming --only paths...";
828         if (!cleanup_arg || !strcmp(cleanup_arg, "default"))
829                 cleanup_mode = use_editor ? CLEANUP_ALL : CLEANUP_SPACE;
830         else if (!strcmp(cleanup_arg, "verbatim"))
831                 cleanup_mode = CLEANUP_NONE;
832         else if (!strcmp(cleanup_arg, "whitespace"))
833                 cleanup_mode = CLEANUP_SPACE;
834         else if (!strcmp(cleanup_arg, "strip"))
835                 cleanup_mode = CLEANUP_ALL;
836         else
837                 die("Invalid cleanup mode %s", cleanup_arg);
838
839         if (!untracked_files_arg)
840                 ; /* default already initialized */
841         else if (!strcmp(untracked_files_arg, "no"))
842                 show_untracked_files = SHOW_NO_UNTRACKED_FILES;
843         else if (!strcmp(untracked_files_arg, "normal"))
844                 show_untracked_files = SHOW_NORMAL_UNTRACKED_FILES;
845         else if (!strcmp(untracked_files_arg, "all"))
846                 show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
847         else
848                 die("Invalid untracked files mode '%s'", untracked_files_arg);
849
850         if (all && argc > 0)
851                 die("Paths with -a does not make sense.");
852         else if (interactive && argc > 0)
853                 die("Paths with --interactive does not make sense.");
854
855         return argc;
856 }
857
858 int cmd_status(int argc, const char **argv, const char *prefix)
859 {
860         const char *index_file;
861         int commitable;
862
863         git_config(git_status_config, NULL);
864
865         if (wt_status_use_color == -1)
866                 wt_status_use_color = git_use_color_default;
867
868         argc = parse_and_validate_options(argc, argv, builtin_status_usage, prefix);
869
870         index_file = prepare_index(argc, argv, prefix);
871
872         commitable = run_status(stdout, index_file, prefix, 0);
873
874         rollback_index_files();
875
876         return commitable ? 0 : 1;
877 }
878
879 static void print_summary(const char *prefix, const unsigned char *sha1)
880 {
881         struct rev_info rev;
882         struct commit *commit;
883         static const char *format = "format:%h: \"%s\"";
884         unsigned char junk_sha1[20];
885         const char *head = resolve_ref("HEAD", junk_sha1, 0, NULL);
886
887         commit = lookup_commit(sha1);
888         if (!commit)
889                 die("couldn't look up newly created commit");
890         if (!commit || parse_commit(commit))
891                 die("could not parse newly created commit");
892
893         init_revisions(&rev, prefix);
894         setup_revisions(0, NULL, &rev, NULL);
895
896         rev.abbrev = 0;
897         rev.diff = 1;
898         rev.diffopt.output_format =
899                 DIFF_FORMAT_SHORTSTAT | DIFF_FORMAT_SUMMARY;
900
901         rev.verbose_header = 1;
902         rev.show_root_diff = 1;
903         get_commit_format(format, &rev);
904         rev.always_show_header = 0;
905         rev.diffopt.detect_rename = 1;
906         rev.diffopt.rename_limit = 100;
907         rev.diffopt.break_opt = 0;
908         diff_setup_done(&rev.diffopt);
909
910         printf("[%s%s]: created ",
911                 !prefixcmp(head, "refs/heads/") ?
912                         head + 11 :
913                         !strcmp(head, "HEAD") ?
914                                 "detached HEAD" :
915                                 head,
916                 initial_commit ? " (root-commit)" : "");
917
918         if (!log_tree_commit(&rev, commit)) {
919                 struct strbuf buf = STRBUF_INIT;
920                 format_commit_message(commit, format + 7, &buf, DATE_NORMAL);
921                 printf("%s\n", buf.buf);
922                 strbuf_release(&buf);
923         }
924 }
925
926 static int git_commit_config(const char *k, const char *v, void *cb)
927 {
928         if (!strcmp(k, "commit.template"))
929                 return git_config_string(&template_file, k, v);
930
931         return git_status_config(k, v, cb);
932 }
933
934 int cmd_commit(int argc, const char **argv, const char *prefix)
935 {
936         struct strbuf sb = STRBUF_INIT;
937         const char *index_file, *reflog_msg;
938         char *nl, *p;
939         unsigned char commit_sha1[20];
940         struct ref_lock *ref_lock;
941         struct commit_list *parents = NULL, **pptr = &parents;
942         struct stat statbuf;
943         int allow_fast_forward = 1;
944
945         git_config(git_commit_config, NULL);
946
947         argc = parse_and_validate_options(argc, argv, builtin_commit_usage, prefix);
948
949         index_file = prepare_index(argc, argv, prefix);
950
951         /* Set up everything for writing the commit object.  This includes
952            running hooks, writing the trees, and interacting with the user.  */
953         if (!prepare_to_commit(index_file, prefix)) {
954                 rollback_index_files();
955                 return 1;
956         }
957
958         /* Determine parents */
959         if (initial_commit) {
960                 reflog_msg = "commit (initial)";
961         } else if (amend) {
962                 struct commit_list *c;
963                 struct commit *commit;
964
965                 reflog_msg = "commit (amend)";
966                 commit = lookup_commit(head_sha1);
967                 if (!commit || parse_commit(commit))
968                         die("could not parse HEAD commit");
969
970                 for (c = commit->parents; c; c = c->next)
971                         pptr = &commit_list_insert(c->item, pptr)->next;
972         } else if (in_merge) {
973                 struct strbuf m = STRBUF_INIT;
974                 FILE *fp;
975
976                 reflog_msg = "commit (merge)";
977                 pptr = &commit_list_insert(lookup_commit(head_sha1), pptr)->next;
978                 fp = fopen(git_path("MERGE_HEAD"), "r");
979                 if (fp == NULL)
980                         die("could not open %s for reading: %s",
981                             git_path("MERGE_HEAD"), strerror(errno));
982                 while (strbuf_getline(&m, fp, '\n') != EOF) {
983                         unsigned char sha1[20];
984                         if (get_sha1_hex(m.buf, sha1) < 0)
985                                 die("Corrupt MERGE_HEAD file (%s)", m.buf);
986                         pptr = &commit_list_insert(lookup_commit(sha1), pptr)->next;
987                 }
988                 fclose(fp);
989                 strbuf_release(&m);
990                 if (!stat(git_path("MERGE_MODE"), &statbuf)) {
991                         if (strbuf_read_file(&sb, git_path("MERGE_MODE"), 0) < 0)
992                                 die("could not read MERGE_MODE: %s",
993                                                 strerror(errno));
994                         if (!strcmp(sb.buf, "no-ff"))
995                                 allow_fast_forward = 0;
996                 }
997                 if (allow_fast_forward)
998                         parents = reduce_heads(parents);
999         } else {
1000                 reflog_msg = "commit";
1001                 pptr = &commit_list_insert(lookup_commit(head_sha1), pptr)->next;
1002         }
1003
1004         /* Finally, get the commit message */
1005         strbuf_reset(&sb);
1006         if (strbuf_read_file(&sb, git_path(commit_editmsg), 0) < 0) {
1007                 rollback_index_files();
1008                 die("could not read commit message");
1009         }
1010
1011         /* Truncate the message just before the diff, if any. */
1012         if (verbose) {
1013                 p = strstr(sb.buf, "\ndiff --git ");
1014                 if (p != NULL)
1015                         strbuf_setlen(&sb, p - sb.buf + 1);
1016         }
1017
1018         if (cleanup_mode != CLEANUP_NONE)
1019                 stripspace(&sb, cleanup_mode == CLEANUP_ALL);
1020         if (message_is_empty(&sb)) {
1021                 rollback_index_files();
1022                 fprintf(stderr, "Aborting commit due to empty commit message.\n");
1023                 exit(1);
1024         }
1025
1026         if (commit_tree(sb.buf, active_cache_tree->sha1, parents, commit_sha1,
1027                         fmt_ident(author_name, author_email, author_date,
1028                                 IDENT_ERROR_ON_NO_NAME))) {
1029                 rollback_index_files();
1030                 die("failed to write commit object");
1031         }
1032
1033         ref_lock = lock_any_ref_for_update("HEAD",
1034                                            initial_commit ? NULL : head_sha1,
1035                                            0);
1036
1037         nl = strchr(sb.buf, '\n');
1038         if (nl)
1039                 strbuf_setlen(&sb, nl + 1 - sb.buf);
1040         else
1041                 strbuf_addch(&sb, '\n');
1042         strbuf_insert(&sb, 0, reflog_msg, strlen(reflog_msg));
1043         strbuf_insert(&sb, strlen(reflog_msg), ": ", 2);
1044
1045         if (!ref_lock) {
1046                 rollback_index_files();
1047                 die("cannot lock HEAD ref");
1048         }
1049         if (write_ref_sha1(ref_lock, commit_sha1, sb.buf) < 0) {
1050                 rollback_index_files();
1051                 die("cannot update HEAD ref");
1052         }
1053
1054         unlink(git_path("MERGE_HEAD"));
1055         unlink(git_path("MERGE_MSG"));
1056         unlink(git_path("MERGE_MODE"));
1057         unlink(git_path("SQUASH_MSG"));
1058
1059         if (commit_index_files())
1060                 die ("Repository has been updated, but unable to write\n"
1061                      "new_index file. Check that disk is not full or quota is\n"
1062                      "not exceeded, and then \"git reset HEAD\" to recover.");
1063
1064         rerere();
1065         run_hook(get_index_file(), "post-commit", NULL);
1066         if (!quiet)
1067                 print_summary(prefix, commit_sha1);
1068
1069         return 0;
1070 }