Code

Merge branch 'maint-1.6.1' into maint
[git.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  */
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"
28 static const char * const builtin_commit_usage[] = {
29         "git commit [options] [--] <filepattern>...",
30         NULL
31 };
33 static const char * const builtin_status_usage[] = {
34         "git status [options] [--] <filepattern>...",
35         NULL
36 };
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;
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, dry_run, renew_authorship;
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;
70 static int use_editor = 1, initial_commit, in_merge;
71 static const char *only_include_assumed;
72 static struct strbuf message;
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 }
86 static struct option builtin_commit_options[] = {
87         OPT__QUIET(&quiet),
88         OPT__VERBOSE(&verbose),
90         OPT_GROUP("Commit message options"),
91         OPT_FILENAME('F', "file", &logfile, "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(0, "reset-author", &renew_authorship, "the commit is authored by me now (used with -C-c/--amend)"),
97         OPT_BOOLEAN('s', "signoff", &signoff, "add Signed-off-by:"),
98         OPT_FILENAME('t', "template", &template_file, "use specified template file"),
99         OPT_BOOLEAN('e', "edit", &edit_flag, "force edit of commit"),
100         OPT_STRING(0, "cleanup", &cleanup_arg, "default", "how to strip spaces and #comments from message"),
101         /* end commit message options */
103         OPT_GROUP("Commit contents options"),
104         OPT_BOOLEAN('a', "all", &all, "commit all changed files"),
105         OPT_BOOLEAN('i', "include", &also, "add specified files to index for commit"),
106         OPT_BOOLEAN(0, "interactive", &interactive, "interactively add files"),
107         OPT_BOOLEAN('o', "only", &only, "commit only specified files"),
108         OPT_BOOLEAN('n', "no-verify", &no_verify, "bypass pre-commit hook"),
109         OPT_BOOLEAN(0, "dry-run", &dry_run, "show what would be committed"),
110         OPT_BOOLEAN(0, "amend", &amend, "amend previous commit"),
111         { 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" },
112         OPT_BOOLEAN(0, "allow-empty", &allow_empty, "ok to record an empty change"),
113         /* end commit contents options */
115         OPT_END()
116 };
118 static void rollback_index_files(void)
120         switch (commit_style) {
121         case COMMIT_AS_IS:
122                 break; /* nothing to do */
123         case COMMIT_NORMAL:
124                 rollback_lock_file(&index_lock);
125                 break;
126         case COMMIT_PARTIAL:
127                 rollback_lock_file(&index_lock);
128                 rollback_lock_file(&false_lock);
129                 break;
130         }
133 static int commit_index_files(void)
135         int err = 0;
137         switch (commit_style) {
138         case COMMIT_AS_IS:
139                 break; /* nothing to do */
140         case COMMIT_NORMAL:
141                 err = commit_lock_file(&index_lock);
142                 break;
143         case COMMIT_PARTIAL:
144                 err = commit_lock_file(&index_lock);
145                 rollback_lock_file(&false_lock);
146                 break;
147         }
149         return err;
152 /*
153  * Take a union of paths in the index and the named tree (typically, "HEAD"),
154  * and return the paths that match the given pattern in list.
155  */
156 static int list_paths(struct string_list *list, const char *with_tree,
157                       const char *prefix, const char **pattern)
159         int i;
160         char *m;
162         for (i = 0; pattern[i]; i++)
163                 ;
164         m = xcalloc(1, i);
166         if (with_tree)
167                 overlay_tree_on_cache(with_tree, prefix);
169         for (i = 0; i < active_nr; i++) {
170                 struct cache_entry *ce = active_cache[i];
171                 if (ce->ce_flags & CE_UPDATE)
172                         continue;
173                 if (!match_pathspec(pattern, ce->name, ce_namelen(ce), 0, m))
174                         continue;
175                 string_list_insert(ce->name, list);
176         }
178         return report_path_error(m, pattern, prefix ? strlen(prefix) : 0);
181 static void add_remove_files(struct string_list *list)
183         int i;
184         for (i = 0; i < list->nr; i++) {
185                 struct stat st;
186                 struct string_list_item *p = &(list->items[i]);
188                 if (!lstat(p->string, &st)) {
189                         if (add_to_cache(p->string, &st, 0))
190                                 die("updating files failed");
191                 } else
192                         remove_file_from_cache(p->string);
193         }
196 static void create_base_index(void)
198         struct tree *tree;
199         struct unpack_trees_options opts;
200         struct tree_desc t;
202         if (initial_commit) {
203                 discard_cache();
204                 return;
205         }
207         memset(&opts, 0, sizeof(opts));
208         opts.head_idx = 1;
209         opts.index_only = 1;
210         opts.merge = 1;
211         opts.src_index = &the_index;
212         opts.dst_index = &the_index;
214         opts.fn = oneway_merge;
215         tree = parse_tree_indirect(head_sha1);
216         if (!tree)
217                 die("failed to unpack HEAD tree object");
218         parse_tree(tree);
219         init_tree_desc(&t, tree->buffer, tree->size);
220         if (unpack_trees(1, &t, &opts))
221                 exit(128); /* We've already reported the error, finish dying */
224 static char *prepare_index(int argc, const char **argv, const char *prefix, int is_status)
226         int fd;
227         struct string_list partial;
228         const char **pathspec = NULL;
229         int refresh_flags = REFRESH_QUIET;
231         if (is_status)
232                 refresh_flags |= REFRESH_UNMERGED;
233         if (interactive) {
234                 if (interactive_add(argc, argv, prefix) != 0)
235                         die("interactive add failed");
236                 if (read_cache_preload(NULL) < 0)
237                         die("index file corrupt");
238                 commit_style = COMMIT_AS_IS;
239                 return get_index_file();
240         }
242         if (*argv)
243                 pathspec = get_pathspec(prefix, argv);
245         if (read_cache_preload(pathspec) < 0)
246                 die("index file corrupt");
248         /*
249          * Non partial, non as-is commit.
250          *
251          * (1) get the real index;
252          * (2) update the_index as necessary;
253          * (3) write the_index out to the real index (still locked);
254          * (4) return the name of the locked index file.
255          *
256          * The caller should run hooks on the locked real index, and
257          * (A) if all goes well, commit the real index;
258          * (B) on failure, rollback the real index.
259          */
260         if (all || (also && pathspec && *pathspec)) {
261                 int fd = hold_locked_index(&index_lock, 1);
262                 add_files_to_cache(also ? prefix : NULL, pathspec, 0);
263                 refresh_cache(refresh_flags);
264                 if (write_cache(fd, active_cache, active_nr) ||
265                     close_lock_file(&index_lock))
266                         die("unable to write new_index file");
267                 commit_style = COMMIT_NORMAL;
268                 return index_lock.filename;
269         }
271         /*
272          * As-is commit.
273          *
274          * (1) return the name of the real index file.
275          *
276          * The caller should run hooks on the real index, and run
277          * hooks on the real index, and create commit from the_index.
278          * We still need to refresh the index here.
279          */
280         if (!pathspec || !*pathspec) {
281                 fd = hold_locked_index(&index_lock, 1);
282                 refresh_cache(refresh_flags);
283                 if (write_cache(fd, active_cache, active_nr) ||
284                     commit_locked_index(&index_lock))
285                         die("unable to write new_index file");
286                 commit_style = COMMIT_AS_IS;
287                 return get_index_file();
288         }
290         /*
291          * A partial commit.
292          *
293          * (0) find the set of affected paths;
294          * (1) get lock on the real index file;
295          * (2) update the_index with the given paths;
296          * (3) write the_index out to the real index (still locked);
297          * (4) get lock on the false index file;
298          * (5) reset the_index from HEAD;
299          * (6) update the_index the same way as (2);
300          * (7) write the_index out to the false index file;
301          * (8) return the name of the false index file (still locked);
302          *
303          * The caller should run hooks on the locked false index, and
304          * create commit from it.  Then
305          * (A) if all goes well, commit the real index;
306          * (B) on failure, rollback the real index;
307          * In either case, rollback the false index.
308          */
309         commit_style = COMMIT_PARTIAL;
311         if (file_exists(git_path("MERGE_HEAD")))
312                 die("cannot do a partial commit during a merge.");
314         memset(&partial, 0, sizeof(partial));
315         partial.strdup_strings = 1;
316         if (list_paths(&partial, initial_commit ? NULL : "HEAD", prefix, pathspec))
317                 exit(1);
319         discard_cache();
320         if (read_cache() < 0)
321                 die("cannot read the index");
323         fd = hold_locked_index(&index_lock, 1);
324         add_remove_files(&partial);
325         refresh_cache(REFRESH_QUIET);
326         if (write_cache(fd, active_cache, active_nr) ||
327             close_lock_file(&index_lock))
328                 die("unable to write new_index file");
330         fd = hold_lock_file_for_update(&false_lock,
331                                        git_path("next-index-%"PRIuMAX,
332                                                 (uintmax_t) getpid()),
333                                        LOCK_DIE_ON_ERROR);
335         create_base_index();
336         add_remove_files(&partial);
337         refresh_cache(REFRESH_QUIET);
339         if (write_cache(fd, active_cache, active_nr) ||
340             close_lock_file(&false_lock))
341                 die("unable to write temporary index file");
343         discard_cache();
344         read_cache_from(false_lock.filename);
346         return false_lock.filename;
349 static int run_status(FILE *fp, const char *index_file, const char *prefix, int nowarn,
350                       struct wt_status *s)
352         if (s->relative_paths)
353                 s->prefix = prefix;
355         if (amend) {
356                 s->amend = 1;
357                 s->reference = "HEAD^1";
358         }
359         s->verbose = verbose;
360         s->index_file = index_file;
361         s->fp = fp;
362         s->nowarn = nowarn;
364         wt_status_print(s);
366         return s->commitable;
369 static int is_a_merge(const unsigned char *sha1)
371         struct commit *commit = lookup_commit(sha1);
372         if (!commit || parse_commit(commit))
373                 die("could not parse HEAD commit");
374         return !!(commit->parents && commit->parents->next);
377 static const char sign_off_header[] = "Signed-off-by: ";
379 static void determine_author_info(void)
381         char *name, *email, *date;
383         name = getenv("GIT_AUTHOR_NAME");
384         email = getenv("GIT_AUTHOR_EMAIL");
385         date = getenv("GIT_AUTHOR_DATE");
387         if (use_message && !renew_authorship) {
388                 const char *a, *lb, *rb, *eol;
390                 a = strstr(use_message_buffer, "\nauthor ");
391                 if (!a)
392                         die("invalid commit: %s", use_message);
394                 lb = strstr(a + 8, " <");
395                 rb = strstr(a + 8, "> ");
396                 eol = strchr(a + 8, '\n');
397                 if (!lb || !rb || !eol)
398                         die("invalid commit: %s", use_message);
400                 name = xstrndup(a + 8, lb - (a + 8));
401                 email = xstrndup(lb + 2, rb - (lb + 2));
402                 date = xstrndup(rb + 2, eol - (rb + 2));
403         }
405         if (force_author) {
406                 const char *lb = strstr(force_author, " <");
407                 const char *rb = strchr(force_author, '>');
409                 if (!lb || !rb)
410                         die("malformed --author parameter");
411                 name = xstrndup(force_author, lb - force_author);
412                 email = xstrndup(lb + 2, rb - (lb + 2));
413         }
415         author_name = name;
416         author_email = email;
417         author_date = date;
420 static int ends_rfc2822_footer(struct strbuf *sb)
422         int ch;
423         int hit = 0;
424         int i, j, k;
425         int len = sb->len;
426         int first = 1;
427         const char *buf = sb->buf;
429         for (i = len - 1; i > 0; i--) {
430                 if (hit && buf[i] == '\n')
431                         break;
432                 hit = (buf[i] == '\n');
433         }
435         while (i < len - 1 && buf[i] == '\n')
436                 i++;
438         for (; i < len; i = k) {
439                 for (k = i; k < len && buf[k] != '\n'; k++)
440                         ; /* do nothing */
441                 k++;
443                 if ((buf[k] == ' ' || buf[k] == '\t') && !first)
444                         continue;
446                 first = 0;
448                 for (j = 0; i + j < len; j++) {
449                         ch = buf[i + j];
450                         if (ch == ':')
451                                 break;
452                         if (isalnum(ch) ||
453                             (ch == '-'))
454                                 continue;
455                         return 0;
456                 }
457         }
458         return 1;
461 static int prepare_to_commit(const char *index_file, const char *prefix,
462                              struct wt_status *s)
464         struct stat statbuf;
465         int commitable, saved_color_setting;
466         struct strbuf sb = STRBUF_INIT;
467         char *buffer;
468         FILE *fp;
469         const char *hook_arg1 = NULL;
470         const char *hook_arg2 = NULL;
471         int ident_shown = 0;
473         if (!no_verify && run_hook(index_file, "pre-commit", NULL))
474                 return 0;
476         if (message.len) {
477                 strbuf_addbuf(&sb, &message);
478                 hook_arg1 = "message";
479         } else if (logfile && !strcmp(logfile, "-")) {
480                 if (isatty(0))
481                         fprintf(stderr, "(reading log message from standard input)\n");
482                 if (strbuf_read(&sb, 0, 0) < 0)
483                         die_errno("could not read log from standard input");
484                 hook_arg1 = "message";
485         } else if (logfile) {
486                 if (strbuf_read_file(&sb, logfile, 0) < 0)
487                         die_errno("could not read log file '%s'",
488                                   logfile);
489                 hook_arg1 = "message";
490         } else if (use_message) {
491                 buffer = strstr(use_message_buffer, "\n\n");
492                 if (!buffer || buffer[2] == '\0')
493                         die("commit has empty message");
494                 strbuf_add(&sb, buffer + 2, strlen(buffer + 2));
495                 hook_arg1 = "commit";
496                 hook_arg2 = use_message;
497         } else if (!stat(git_path("MERGE_MSG"), &statbuf)) {
498                 if (strbuf_read_file(&sb, git_path("MERGE_MSG"), 0) < 0)
499                         die_errno("could not read MERGE_MSG");
500                 hook_arg1 = "merge";
501         } else if (!stat(git_path("SQUASH_MSG"), &statbuf)) {
502                 if (strbuf_read_file(&sb, git_path("SQUASH_MSG"), 0) < 0)
503                         die_errno("could not read SQUASH_MSG");
504                 hook_arg1 = "squash";
505         } else if (template_file && !stat(template_file, &statbuf)) {
506                 if (strbuf_read_file(&sb, template_file, 0) < 0)
507                         die_errno("could not read '%s'", template_file);
508                 hook_arg1 = "template";
509         }
511         /*
512          * This final case does not modify the template message,
513          * it just sets the argument to the prepare-commit-msg hook.
514          */
515         else if (in_merge)
516                 hook_arg1 = "merge";
518         fp = fopen(git_path(commit_editmsg), "w");
519         if (fp == NULL)
520                 die_errno("could not open '%s'", git_path(commit_editmsg));
522         if (cleanup_mode != CLEANUP_NONE)
523                 stripspace(&sb, 0);
525         if (signoff) {
526                 struct strbuf sob = STRBUF_INIT;
527                 int i;
529                 strbuf_addstr(&sob, sign_off_header);
530                 strbuf_addstr(&sob, fmt_name(getenv("GIT_COMMITTER_NAME"),
531                                              getenv("GIT_COMMITTER_EMAIL")));
532                 strbuf_addch(&sob, '\n');
533                 for (i = sb.len - 1; i > 0 && sb.buf[i - 1] != '\n'; i--)
534                         ; /* do nothing */
535                 if (prefixcmp(sb.buf + i, sob.buf)) {
536                         if (!i || !ends_rfc2822_footer(&sb))
537                                 strbuf_addch(&sb, '\n');
538                         strbuf_addbuf(&sb, &sob);
539                 }
540                 strbuf_release(&sob);
541         }
543         if (fwrite(sb.buf, 1, sb.len, fp) < sb.len)
544                 die_errno("could not write commit template");
546         strbuf_release(&sb);
548         determine_author_info();
550         /* This checks if committer ident is explicitly given */
551         git_committer_info(0);
552         if (use_editor) {
553                 char *author_ident;
554                 const char *committer_ident;
556                 if (in_merge)
557                         fprintf(fp,
558                                 "#\n"
559                                 "# It looks like you may be committing a MERGE.\n"
560                                 "# If this is not correct, please remove the file\n"
561                                 "#      %s\n"
562                                 "# and try again.\n"
563                                 "#\n",
564                                 git_path("MERGE_HEAD"));
566                 fprintf(fp,
567                         "\n"
568                         "# Please enter the commit message for your changes.");
569                 if (cleanup_mode == CLEANUP_ALL)
570                         fprintf(fp,
571                                 " Lines starting\n"
572                                 "# with '#' will be ignored, and an empty"
573                                 " message aborts the commit.\n");
574                 else /* CLEANUP_SPACE, that is. */
575                         fprintf(fp,
576                                 " Lines starting\n"
577                                 "# with '#' will be kept; you may remove them"
578                                 " yourself if you want to.\n"
579                                 "# An empty message aborts the commit.\n");
580                 if (only_include_assumed)
581                         fprintf(fp, "# %s\n", only_include_assumed);
583                 author_ident = xstrdup(fmt_name(author_name, author_email));
584                 committer_ident = fmt_name(getenv("GIT_COMMITTER_NAME"),
585                                            getenv("GIT_COMMITTER_EMAIL"));
586                 if (strcmp(author_ident, committer_ident))
587                         fprintf(fp,
588                                 "%s"
589                                 "# Author:    %s\n",
590                                 ident_shown++ ? "" : "#\n",
591                                 author_ident);
592                 free(author_ident);
594                 if (!user_ident_explicitly_given)
595                         fprintf(fp,
596                                 "%s"
597                                 "# Committer: %s\n",
598                                 ident_shown++ ? "" : "#\n",
599                                 committer_ident);
601                 if (ident_shown)
602                         fprintf(fp, "#\n");
604                 saved_color_setting = s->use_color;
605                 s->use_color = 0;
606                 commitable = run_status(fp, index_file, prefix, 1, s);
607                 s->use_color = saved_color_setting;
608         } else {
609                 unsigned char sha1[20];
610                 const char *parent = "HEAD";
612                 if (!active_nr && read_cache() < 0)
613                         die("Cannot read index");
615                 if (amend)
616                         parent = "HEAD^1";
618                 if (get_sha1(parent, sha1))
619                         commitable = !!active_nr;
620                 else
621                         commitable = index_differs_from(parent, 0);
622         }
624         fclose(fp);
626         if (!commitable && !in_merge && !allow_empty &&
627             !(amend && is_a_merge(head_sha1))) {
628                 run_status(stdout, index_file, prefix, 0, s);
629                 return 0;
630         }
632         /*
633          * Re-read the index as pre-commit hook could have updated it,
634          * and write it out as a tree.  We must do this before we invoke
635          * the editor and after we invoke run_status above.
636          */
637         discard_cache();
638         read_cache_from(index_file);
639         if (!active_cache_tree)
640                 active_cache_tree = cache_tree();
641         if (cache_tree_update(active_cache_tree,
642                               active_cache, active_nr, 0, 0) < 0) {
643                 error("Error building trees");
644                 return 0;
645         }
647         if (run_hook(index_file, "prepare-commit-msg",
648                      git_path(commit_editmsg), hook_arg1, hook_arg2, NULL))
649                 return 0;
651         if (use_editor) {
652                 char index[PATH_MAX];
653                 const char *env[2] = { index, NULL };
654                 snprintf(index, sizeof(index), "GIT_INDEX_FILE=%s", index_file);
655                 if (launch_editor(git_path(commit_editmsg), NULL, env)) {
656                         fprintf(stderr,
657                         "Please supply the message using either -m or -F option.\n");
658                         exit(1);
659                 }
660         }
662         if (!no_verify &&
663             run_hook(index_file, "commit-msg", git_path(commit_editmsg), NULL)) {
664                 return 0;
665         }
667         return 1;
670 /*
671  * Find out if the message in the strbuf contains only whitespace and
672  * Signed-off-by lines.
673  */
674 static int message_is_empty(struct strbuf *sb)
676         struct strbuf tmpl = STRBUF_INIT;
677         const char *nl;
678         int eol, i, start = 0;
680         if (cleanup_mode == CLEANUP_NONE && sb->len)
681                 return 0;
683         /* See if the template is just a prefix of the message. */
684         if (template_file && strbuf_read_file(&tmpl, template_file, 0) > 0) {
685                 stripspace(&tmpl, cleanup_mode == CLEANUP_ALL);
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);
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;
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         }
710         return 1;
713 static const char *find_author_by_nickname(const char *name)
715         struct rev_info revs;
716         struct commit *commit;
717         struct strbuf buf = STRBUF_INIT;
718         const char *av[20];
719         int ac = 0;
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                 struct pretty_print_context ctx = {0};
732                 ctx.date_mode = DATE_NORMAL;
733                 strbuf_release(&buf);
734                 format_commit_message(commit, "%an <%ae>", &buf, &ctx);
735                 return strbuf_detach(&buf, NULL);
736         }
737         die("No existing author found with '%s'", name);
740 static int parse_and_validate_options(int argc, const char *argv[],
741                                       const char * const usage[],
742                                       const char *prefix,
743                                       struct wt_status *s)
745         int f = 0;
747         argc = parse_options(argc, argv, prefix, builtin_commit_options, usage,
748                              0);
750         if (force_author && !strchr(force_author, '>'))
751                 force_author = find_author_by_nickname(force_author);
753         if (force_author && renew_authorship)
754                 die("Using both --reset-author and --author does not make sense");
756         if (logfile || message.len || use_message)
757                 use_editor = 0;
758         if (edit_flag)
759                 use_editor = 1;
760         if (!use_editor)
761                 setenv("GIT_EDITOR", ":", 1);
763         if (get_sha1("HEAD", head_sha1))
764                 initial_commit = 1;
766         if (!get_sha1("MERGE_HEAD", merge_head_sha1))
767                 in_merge = 1;
769         /* Sanity check options */
770         if (amend && initial_commit)
771                 die("You have nothing to amend.");
772         if (amend && in_merge)
773                 die("You are in the middle of a merge -- cannot amend.");
775         if (use_message)
776                 f++;
777         if (edit_message)
778                 f++;
779         if (logfile)
780                 f++;
781         if (f > 1)
782                 die("Only one of -c/-C/-F can be used.");
783         if (message.len && f > 0)
784                 die("Option -m cannot be combined with -c/-C/-F.");
785         if (edit_message)
786                 use_message = edit_message;
787         if (amend && !use_message)
788                 use_message = "HEAD";
789         if (!use_message && renew_authorship)
790                 die("--reset-author can be used only with -C, -c or --amend.");
791         if (use_message) {
792                 unsigned char sha1[20];
793                 static char utf8[] = "UTF-8";
794                 const char *out_enc;
795                 char *enc, *end;
796                 struct commit *commit;
798                 if (get_sha1(use_message, sha1))
799                         die("could not lookup commit %s", use_message);
800                 commit = lookup_commit_reference(sha1);
801                 if (!commit || parse_commit(commit))
802                         die("could not parse commit %s", use_message);
804                 enc = strstr(commit->buffer, "\nencoding");
805                 if (enc) {
806                         end = strchr(enc + 10, '\n');
807                         enc = xstrndup(enc + 10, end - (enc + 10));
808                 } else {
809                         enc = utf8;
810                 }
811                 out_enc = git_commit_encoding ? git_commit_encoding : utf8;
813                 if (strcmp(out_enc, enc))
814                         use_message_buffer =
815                                 reencode_string(commit->buffer, out_enc, enc);
817                 /*
818                  * If we failed to reencode the buffer, just copy it
819                  * byte for byte so the user can try to fix it up.
820                  * This also handles the case where input and output
821                  * encodings are identical.
822                  */
823                 if (use_message_buffer == NULL)
824                         use_message_buffer = xstrdup(commit->buffer);
825                 if (enc != utf8)
826                         free(enc);
827         }
829         if (!!also + !!only + !!all + !!interactive > 1)
830                 die("Only one of --include/--only/--all/--interactive can be used.");
831         if (argc == 0 && (also || (only && !amend)))
832                 die("No paths with --include/--only does not make sense.");
833         if (argc == 0 && only && amend)
834                 only_include_assumed = "Clever... amending the last one with dirty index.";
835         if (argc > 0 && !also && !only)
836                 only_include_assumed = "Explicit paths specified without -i nor -o; assuming --only paths...";
837         if (!cleanup_arg || !strcmp(cleanup_arg, "default"))
838                 cleanup_mode = use_editor ? CLEANUP_ALL : CLEANUP_SPACE;
839         else if (!strcmp(cleanup_arg, "verbatim"))
840                 cleanup_mode = CLEANUP_NONE;
841         else if (!strcmp(cleanup_arg, "whitespace"))
842                 cleanup_mode = CLEANUP_SPACE;
843         else if (!strcmp(cleanup_arg, "strip"))
844                 cleanup_mode = CLEANUP_ALL;
845         else
846                 die("Invalid cleanup mode %s", cleanup_arg);
848         if (!untracked_files_arg)
849                 ; /* default already initialized */
850         else if (!strcmp(untracked_files_arg, "no"))
851                 s->show_untracked_files = SHOW_NO_UNTRACKED_FILES;
852         else if (!strcmp(untracked_files_arg, "normal"))
853                 s->show_untracked_files = SHOW_NORMAL_UNTRACKED_FILES;
854         else if (!strcmp(untracked_files_arg, "all"))
855                 s->show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
856         else
857                 die("Invalid untracked files mode '%s'", untracked_files_arg);
859         if (all && argc > 0)
860                 die("Paths with -a does not make sense.");
861         else if (interactive && argc > 0)
862                 die("Paths with --interactive does not make sense.");
864         return argc;
867 static int dry_run_commit(int argc, const char **argv, const char *prefix,
868                           struct wt_status *s)
870         int commitable;
871         const char *index_file;
873         index_file = prepare_index(argc, argv, prefix, 1);
874         commitable = run_status(stdout, index_file, prefix, 0, s);
875         rollback_index_files();
877         return commitable ? 0 : 1;
880 static int parse_status_slot(const char *var, int offset)
882         if (!strcasecmp(var+offset, "header"))
883                 return WT_STATUS_HEADER;
884         if (!strcasecmp(var+offset, "updated")
885                 || !strcasecmp(var+offset, "added"))
886                 return WT_STATUS_UPDATED;
887         if (!strcasecmp(var+offset, "changed"))
888                 return WT_STATUS_CHANGED;
889         if (!strcasecmp(var+offset, "untracked"))
890                 return WT_STATUS_UNTRACKED;
891         if (!strcasecmp(var+offset, "nobranch"))
892                 return WT_STATUS_NOBRANCH;
893         if (!strcasecmp(var+offset, "unmerged"))
894                 return WT_STATUS_UNMERGED;
895         return -1;
898 static int git_status_config(const char *k, const char *v, void *cb)
900         struct wt_status *s = cb;
902         if (!strcmp(k, "status.submodulesummary")) {
903                 int is_bool;
904                 s->submodule_summary = git_config_bool_or_int(k, v, &is_bool);
905                 if (is_bool && s->submodule_summary)
906                         s->submodule_summary = -1;
907                 return 0;
908         }
909         if (!strcmp(k, "status.color") || !strcmp(k, "color.status")) {
910                 s->use_color = git_config_colorbool(k, v, -1);
911                 return 0;
912         }
913         if (!prefixcmp(k, "status.color.") || !prefixcmp(k, "color.status.")) {
914                 int slot = parse_status_slot(k, 13);
915                 if (slot < 0)
916                         return 0;
917                 if (!v)
918                         return config_error_nonbool(k);
919                 color_parse(v, k, s->color_palette[slot]);
920                 return 0;
921         }
922         if (!strcmp(k, "status.relativepaths")) {
923                 s->relative_paths = git_config_bool(k, v);
924                 return 0;
925         }
926         if (!strcmp(k, "status.showuntrackedfiles")) {
927                 if (!v)
928                         return config_error_nonbool(k);
929                 else if (!strcmp(v, "no"))
930                         s->show_untracked_files = SHOW_NO_UNTRACKED_FILES;
931                 else if (!strcmp(v, "normal"))
932                         s->show_untracked_files = SHOW_NORMAL_UNTRACKED_FILES;
933                 else if (!strcmp(v, "all"))
934                         s->show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
935                 else
936                         return error("Invalid untracked files mode '%s'", v);
937                 return 0;
938         }
939         return git_diff_ui_config(k, v, NULL);
942 int cmd_status(int argc, const char **argv, const char *prefix)
944         struct wt_status s;
946         wt_status_prepare(&s);
947         git_config(git_status_config, &s);
948         if (s.use_color == -1)
949                 s.use_color = git_use_color_default;
950         if (diff_use_color_default == -1)
951                 diff_use_color_default = git_use_color_default;
953         argc = parse_and_validate_options(argc, argv, builtin_status_usage,
954                                           prefix, &s);
955         return dry_run_commit(argc, argv, prefix, &s);
958 static void print_summary(const char *prefix, const unsigned char *sha1)
960         struct rev_info rev;
961         struct commit *commit;
962         static const char *format = "format:%h] %s";
963         unsigned char junk_sha1[20];
964         const char *head = resolve_ref("HEAD", junk_sha1, 0, NULL);
966         commit = lookup_commit(sha1);
967         if (!commit)
968                 die("couldn't look up newly created commit");
969         if (!commit || parse_commit(commit))
970                 die("could not parse newly created commit");
972         init_revisions(&rev, prefix);
973         setup_revisions(0, NULL, &rev, NULL);
975         rev.abbrev = 0;
976         rev.diff = 1;
977         rev.diffopt.output_format =
978                 DIFF_FORMAT_SHORTSTAT | DIFF_FORMAT_SUMMARY;
980         rev.verbose_header = 1;
981         rev.show_root_diff = 1;
982         get_commit_format(format, &rev);
983         rev.always_show_header = 0;
984         rev.diffopt.detect_rename = 1;
985         rev.diffopt.rename_limit = 100;
986         rev.diffopt.break_opt = 0;
987         diff_setup_done(&rev.diffopt);
989         printf("[%s%s ",
990                 !prefixcmp(head, "refs/heads/") ?
991                         head + 11 :
992                         !strcmp(head, "HEAD") ?
993                                 "detached HEAD" :
994                                 head,
995                 initial_commit ? " (root-commit)" : "");
997         if (!log_tree_commit(&rev, commit)) {
998                 struct pretty_print_context ctx = {0};
999                 struct strbuf buf = STRBUF_INIT;
1000                 ctx.date_mode = DATE_NORMAL;
1001                 format_commit_message(commit, format + 7, &buf, &ctx);
1002                 printf("%s\n", buf.buf);
1003                 strbuf_release(&buf);
1004         }
1007 static int git_commit_config(const char *k, const char *v, void *cb)
1009         struct wt_status *s = cb;
1011         if (!strcmp(k, "commit.template"))
1012                 return git_config_pathname(&template_file, k, v);
1014         return git_status_config(k, v, s);
1017 int cmd_commit(int argc, const char **argv, const char *prefix)
1019         struct strbuf sb = STRBUF_INIT;
1020         const char *index_file, *reflog_msg;
1021         char *nl, *p;
1022         unsigned char commit_sha1[20];
1023         struct ref_lock *ref_lock;
1024         struct commit_list *parents = NULL, **pptr = &parents;
1025         struct stat statbuf;
1026         int allow_fast_forward = 1;
1027         struct wt_status s;
1029         wt_status_prepare(&s);
1030         git_config(git_commit_config, &s);
1032         if (s.use_color == -1)
1033                 s.use_color = git_use_color_default;
1035         argc = parse_and_validate_options(argc, argv, builtin_commit_usage,
1036                                           prefix, &s);
1037         if (dry_run) {
1038                 if (diff_use_color_default == -1)
1039                         diff_use_color_default = git_use_color_default;
1040                 return dry_run_commit(argc, argv, prefix, &s);
1041         }
1042         index_file = prepare_index(argc, argv, prefix, 0);
1044         /* Set up everything for writing the commit object.  This includes
1045            running hooks, writing the trees, and interacting with the user.  */
1046         if (!prepare_to_commit(index_file, prefix, &s)) {
1047                 rollback_index_files();
1048                 return 1;
1049         }
1051         /* Determine parents */
1052         if (initial_commit) {
1053                 reflog_msg = "commit (initial)";
1054         } else if (amend) {
1055                 struct commit_list *c;
1056                 struct commit *commit;
1058                 reflog_msg = "commit (amend)";
1059                 commit = lookup_commit(head_sha1);
1060                 if (!commit || parse_commit(commit))
1061                         die("could not parse HEAD commit");
1063                 for (c = commit->parents; c; c = c->next)
1064                         pptr = &commit_list_insert(c->item, pptr)->next;
1065         } else if (in_merge) {
1066                 struct strbuf m = STRBUF_INIT;
1067                 FILE *fp;
1069                 reflog_msg = "commit (merge)";
1070                 pptr = &commit_list_insert(lookup_commit(head_sha1), pptr)->next;
1071                 fp = fopen(git_path("MERGE_HEAD"), "r");
1072                 if (fp == NULL)
1073                         die_errno("could not open '%s' for reading",
1074                                   git_path("MERGE_HEAD"));
1075                 while (strbuf_getline(&m, fp, '\n') != EOF) {
1076                         unsigned char sha1[20];
1077                         if (get_sha1_hex(m.buf, sha1) < 0)
1078                                 die("Corrupt MERGE_HEAD file (%s)", m.buf);
1079                         pptr = &commit_list_insert(lookup_commit(sha1), pptr)->next;
1080                 }
1081                 fclose(fp);
1082                 strbuf_release(&m);
1083                 if (!stat(git_path("MERGE_MODE"), &statbuf)) {
1084                         if (strbuf_read_file(&sb, git_path("MERGE_MODE"), 0) < 0)
1085                                 die_errno("could not read MERGE_MODE");
1086                         if (!strcmp(sb.buf, "no-ff"))
1087                                 allow_fast_forward = 0;
1088                 }
1089                 if (allow_fast_forward)
1090                         parents = reduce_heads(parents);
1091         } else {
1092                 reflog_msg = "commit";
1093                 pptr = &commit_list_insert(lookup_commit(head_sha1), pptr)->next;
1094         }
1096         /* Finally, get the commit message */
1097         strbuf_reset(&sb);
1098         if (strbuf_read_file(&sb, git_path(commit_editmsg), 0) < 0) {
1099                 int saved_errno = errno;
1100                 rollback_index_files();
1101                 die("could not read commit message: %s", strerror(saved_errno));
1102         }
1104         /* Truncate the message just before the diff, if any. */
1105         if (verbose) {
1106                 p = strstr(sb.buf, "\ndiff --git ");
1107                 if (p != NULL)
1108                         strbuf_setlen(&sb, p - sb.buf + 1);
1109         }
1111         if (cleanup_mode != CLEANUP_NONE)
1112                 stripspace(&sb, cleanup_mode == CLEANUP_ALL);
1113         if (message_is_empty(&sb)) {
1114                 rollback_index_files();
1115                 fprintf(stderr, "Aborting commit due to empty commit message.\n");
1116                 exit(1);
1117         }
1119         if (commit_tree(sb.buf, active_cache_tree->sha1, parents, commit_sha1,
1120                         fmt_ident(author_name, author_email, author_date,
1121                                 IDENT_ERROR_ON_NO_NAME))) {
1122                 rollback_index_files();
1123                 die("failed to write commit object");
1124         }
1126         ref_lock = lock_any_ref_for_update("HEAD",
1127                                            initial_commit ? NULL : head_sha1,
1128                                            0);
1130         nl = strchr(sb.buf, '\n');
1131         if (nl)
1132                 strbuf_setlen(&sb, nl + 1 - sb.buf);
1133         else
1134                 strbuf_addch(&sb, '\n');
1135         strbuf_insert(&sb, 0, reflog_msg, strlen(reflog_msg));
1136         strbuf_insert(&sb, strlen(reflog_msg), ": ", 2);
1138         if (!ref_lock) {
1139                 rollback_index_files();
1140                 die("cannot lock HEAD ref");
1141         }
1142         if (write_ref_sha1(ref_lock, commit_sha1, sb.buf) < 0) {
1143                 rollback_index_files();
1144                 die("cannot update HEAD ref");
1145         }
1147         unlink(git_path("MERGE_HEAD"));
1148         unlink(git_path("MERGE_MSG"));
1149         unlink(git_path("MERGE_MODE"));
1150         unlink(git_path("SQUASH_MSG"));
1152         if (commit_index_files())
1153                 die ("Repository has been updated, but unable to write\n"
1154                      "new_index file. Check that disk is not full or quota is\n"
1155                      "not exceeded, and then \"git reset HEAD\" to recover.");
1157         rerere();
1158         run_hook(get_index_file(), "post-commit", NULL);
1159         if (!quiet)
1160                 print_summary(prefix, commit_sha1);
1162         return 0;