4 * Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>
5 * Based on git-commit.sh by Junio C Hamano and Linus Torvalds
9 #include "cache-tree.h"
17 #include "wt-status.h"
18 #include "run-command.h"
23 #include "parse-options.h"
24 #include "string-list.h"
26 #include "unpack-trees.h"
28 static const char * const builtin_commit_usage
[] = {
29 "git commit [options] [--] <filepattern>...",
33 static const char * const builtin_status_usage
[] = {
34 "git status [options] [--] <filepattern>...",
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 */
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
;
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.
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
)
76 struct strbuf
*buf
= opt
->value
;
78 strbuf_setlen(buf
, 0);
80 strbuf_addstr(buf
, arg
);
81 strbuf_addstr(buf
, "\n\n");
86 static struct option builtin_commit_options
[] = {
88 OPT__VERBOSE(&verbose
),
89 OPT_GROUP("Commit message options"),
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"),
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"),
114 static void rollback_index_files(void)
116 switch (commit_style
) {
118 break; /* nothing to do */
120 rollback_lock_file(&index_lock
);
123 rollback_lock_file(&index_lock
);
124 rollback_lock_file(&false_lock
);
129 static int commit_index_files(void)
133 switch (commit_style
) {
135 break; /* nothing to do */
137 err
= commit_lock_file(&index_lock
);
140 err
= commit_lock_file(&index_lock
);
141 rollback_lock_file(&false_lock
);
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.
152 static int list_paths(struct string_list
*list
, const char *with_tree
,
153 const char *prefix
, const char **pattern
)
158 for (i
= 0; pattern
[i
]; i
++)
163 overlay_tree_on_cache(with_tree
, prefix
);
165 for (i
= 0; i
< active_nr
; i
++) {
166 struct cache_entry
*ce
= active_cache
[i
];
167 if (ce
->ce_flags
& CE_UPDATE
)
169 if (!match_pathspec(pattern
, ce
->name
, ce_namelen(ce
), 0, m
))
171 string_list_insert(ce
->name
, list
);
174 return report_path_error(m
, pattern
, prefix
? strlen(prefix
) : 0);
177 static void add_remove_files(struct string_list
*list
)
180 for (i
= 0; i
< list
->nr
; i
++) {
182 struct string_list_item
*p
= &(list
->items
[i
]);
184 if (!lstat(p
->string
, &st
)) {
185 if (add_to_cache(p
->string
, &st
, 0))
186 die("updating files failed");
188 remove_file_from_cache(p
->string
);
192 static void create_base_index(void)
195 struct unpack_trees_options opts
;
198 if (initial_commit
) {
203 memset(&opts
, 0, sizeof(opts
));
207 opts
.src_index
= &the_index
;
208 opts
.dst_index
= &the_index
;
210 opts
.fn
= oneway_merge
;
211 tree
= parse_tree_indirect(head_sha1
);
213 die("failed to unpack HEAD tree object");
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 */
220 static char *prepare_index(int argc
, const char **argv
, const char *prefix
)
223 struct string_list partial
;
224 const char **pathspec
= NULL
;
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();
235 pathspec
= get_pathspec(prefix
, argv
);
237 if (read_cache_preload(pathspec
) < 0)
238 die("index file corrupt");
241 * Non partial, non as-is commit.
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.
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.
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
;
266 * (1) return the name of the real index file.
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.
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();
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);
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.
301 commit_style
= COMMIT_PARTIAL
;
303 if (file_exists(git_path("MERGE_HEAD")))
304 die("cannot do a partial commit during a merge.");
306 memset(&partial
, 0, sizeof(partial
));
307 partial
.strdup_strings
= 1;
308 if (list_paths(&partial
, initial_commit
? NULL
: "HEAD", prefix
, pathspec
))
312 if (read_cache() < 0)
313 die("cannot read the index");
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");
322 fd
= hold_lock_file_for_update(&false_lock
,
323 git_path("next-index-%"PRIuMAX
,
324 (uintmax_t) getpid()),
328 add_remove_files(&partial
);
329 refresh_cache(REFRESH_QUIET
);
331 if (write_cache(fd
, active_cache
, active_nr
) ||
332 close_lock_file(&false_lock
))
333 die("unable to write temporary index file");
336 read_cache_from(false_lock
.filename
);
338 return false_lock
.filename
;
341 static int run_status(FILE *fp
, const char *index_file
, const char *prefix
, int nowarn
)
345 wt_status_prepare(&s
);
346 if (wt_status_relative_paths
)
351 s
.reference
= "HEAD^1";
354 s
.untracked
= (show_untracked_files
== SHOW_ALL_UNTRACKED_FILES
);
355 s
.index_file
= index_file
;
364 static int is_a_merge(const unsigned char *sha1
)
366 struct commit
*commit
= lookup_commit(sha1
);
367 if (!commit
|| parse_commit(commit
))
368 die("could not parse HEAD commit");
369 return !!(commit
->parents
&& commit
->parents
->next
);
372 static const char sign_off_header
[] = "Signed-off-by: ";
374 static void determine_author_info(void)
376 char *name
, *email
, *date
;
378 name
= getenv("GIT_AUTHOR_NAME");
379 email
= getenv("GIT_AUTHOR_EMAIL");
380 date
= getenv("GIT_AUTHOR_DATE");
383 const char *a
, *lb
, *rb
, *eol
;
385 a
= strstr(use_message_buffer
, "\nauthor ");
387 die("invalid commit: %s", use_message
);
389 lb
= strstr(a
+ 8, " <");
390 rb
= strstr(a
+ 8, "> ");
391 eol
= strchr(a
+ 8, '\n');
392 if (!lb
|| !rb
|| !eol
)
393 die("invalid commit: %s", use_message
);
395 name
= xstrndup(a
+ 8, lb
- (a
+ 8));
396 email
= xstrndup(lb
+ 2, rb
- (lb
+ 2));
397 date
= xstrndup(rb
+ 2, eol
- (rb
+ 2));
401 const char *lb
= strstr(force_author
, " <");
402 const char *rb
= strchr(force_author
, '>');
405 die("malformed --author parameter");
406 name
= xstrndup(force_author
, lb
- force_author
);
407 email
= xstrndup(lb
+ 2, rb
- (lb
+ 2));
411 author_email
= email
;
415 static int prepare_to_commit(const char *index_file
, const char *prefix
)
418 int commitable
, saved_color_setting
;
419 struct strbuf sb
= STRBUF_INIT
;
422 const char *hook_arg1
= NULL
;
423 const char *hook_arg2
= NULL
;
426 if (!no_verify
&& run_hook(index_file
, "pre-commit", NULL
))
430 strbuf_addbuf(&sb
, &message
);
431 hook_arg1
= "message";
432 } else if (logfile
&& !strcmp(logfile
, "-")) {
434 fprintf(stderr
, "(reading log message from standard input)\n");
435 if (strbuf_read(&sb
, 0, 0) < 0)
436 die("could not read log from standard input");
437 hook_arg1
= "message";
438 } else if (logfile
) {
439 if (strbuf_read_file(&sb
, logfile
, 0) < 0)
440 die("could not read log file '%s': %s",
441 logfile
, strerror(errno
));
442 hook_arg1
= "message";
443 } else if (use_message
) {
444 buffer
= strstr(use_message_buffer
, "\n\n");
445 if (!buffer
|| buffer
[2] == '\0')
446 die("commit has empty message");
447 strbuf_add(&sb
, buffer
+ 2, strlen(buffer
+ 2));
448 hook_arg1
= "commit";
449 hook_arg2
= use_message
;
450 } else if (!stat(git_path("MERGE_MSG"), &statbuf
)) {
451 if (strbuf_read_file(&sb
, git_path("MERGE_MSG"), 0) < 0)
452 die("could not read MERGE_MSG: %s", strerror(errno
));
454 } else if (!stat(git_path("SQUASH_MSG"), &statbuf
)) {
455 if (strbuf_read_file(&sb
, git_path("SQUASH_MSG"), 0) < 0)
456 die("could not read SQUASH_MSG: %s", strerror(errno
));
457 hook_arg1
= "squash";
458 } else if (template_file
&& !stat(template_file
, &statbuf
)) {
459 if (strbuf_read_file(&sb
, template_file
, 0) < 0)
460 die("could not read %s: %s",
461 template_file
, strerror(errno
));
462 hook_arg1
= "template";
466 * This final case does not modify the template message,
467 * it just sets the argument to the prepare-commit-msg hook.
472 fp
= fopen(git_path(commit_editmsg
), "w");
474 die("could not open %s: %s",
475 git_path(commit_editmsg
), strerror(errno
));
477 if (cleanup_mode
!= CLEANUP_NONE
)
481 struct strbuf sob
= STRBUF_INIT
;
484 strbuf_addstr(&sob
, sign_off_header
);
485 strbuf_addstr(&sob
, fmt_name(getenv("GIT_COMMITTER_NAME"),
486 getenv("GIT_COMMITTER_EMAIL")));
487 strbuf_addch(&sob
, '\n');
488 for (i
= sb
.len
- 1; i
> 0 && sb
.buf
[i
- 1] != '\n'; i
--)
490 if (prefixcmp(sb
.buf
+ i
, sob
.buf
)) {
491 if (prefixcmp(sb
.buf
+ i
, sign_off_header
))
492 strbuf_addch(&sb
, '\n');
493 strbuf_addbuf(&sb
, &sob
);
495 strbuf_release(&sob
);
498 if (fwrite(sb
.buf
, 1, sb
.len
, fp
) < sb
.len
)
499 die("could not write commit template: %s", strerror(errno
));
503 determine_author_info();
505 /* This checks if committer ident is explicitly given */
506 git_committer_info(0);
509 const char *committer_ident
;
514 "# It looks like you may be committing a MERGE.\n"
515 "# If this is not correct, please remove the file\n"
519 git_path("MERGE_HEAD"));
523 "# Please enter the commit message for your changes.");
524 if (cleanup_mode
== CLEANUP_ALL
)
527 "# with '#' will be ignored, and an empty"
528 " message aborts the commit.\n");
529 else /* CLEANUP_SPACE, that is. */
532 "# with '#' will be kept; you may remove them"
533 " yourself if you want to.\n"
534 "# An empty message aborts the commit.\n");
535 if (only_include_assumed
)
536 fprintf(fp
, "# %s\n", only_include_assumed
);
538 author_ident
= xstrdup(fmt_name(author_name
, author_email
));
539 committer_ident
= fmt_name(getenv("GIT_COMMITTER_NAME"),
540 getenv("GIT_COMMITTER_EMAIL"));
541 if (strcmp(author_ident
, committer_ident
))
545 ident_shown
++ ? "" : "#\n",
549 if (!user_ident_explicitly_given
)
553 ident_shown
++ ? "" : "#\n",
559 saved_color_setting
= wt_status_use_color
;
560 wt_status_use_color
= 0;
561 commitable
= run_status(fp
, index_file
, prefix
, 1);
562 wt_status_use_color
= saved_color_setting
;
564 unsigned char sha1
[20];
565 const char *parent
= "HEAD";
567 if (!active_nr
&& read_cache() < 0)
568 die("Cannot read index");
573 if (get_sha1(parent
, sha1
))
574 commitable
= !!active_nr
;
576 commitable
= index_differs_from(parent
, 0);
581 if (!commitable
&& !in_merge
&& !allow_empty
&&
582 !(amend
&& is_a_merge(head_sha1
))) {
583 run_status(stdout
, index_file
, prefix
, 0);
588 * Re-read the index as pre-commit hook could have updated it,
589 * and write it out as a tree. We must do this before we invoke
590 * the editor and after we invoke run_status above.
593 read_cache_from(index_file
);
594 if (!active_cache_tree
)
595 active_cache_tree
= cache_tree();
596 if (cache_tree_update(active_cache_tree
,
597 active_cache
, active_nr
, 0, 0) < 0) {
598 error("Error building trees");
602 if (run_hook(index_file
, "prepare-commit-msg",
603 git_path(commit_editmsg
), hook_arg1
, hook_arg2
, NULL
))
607 char index
[PATH_MAX
];
608 const char *env
[2] = { index
, NULL
};
609 snprintf(index
, sizeof(index
), "GIT_INDEX_FILE=%s", index_file
);
610 if (launch_editor(git_path(commit_editmsg
), NULL
, env
)) {
612 "Please supply the message using either -m or -F option.\n");
618 run_hook(index_file
, "commit-msg", git_path(commit_editmsg
), NULL
)) {
626 * Find out if the message in the strbuf contains only whitespace and
627 * Signed-off-by lines.
629 static int message_is_empty(struct strbuf
*sb
)
631 struct strbuf tmpl
= STRBUF_INIT
;
633 int eol
, i
, start
= 0;
635 if (cleanup_mode
== CLEANUP_NONE
&& sb
->len
)
638 /* See if the template is just a prefix of the message. */
639 if (template_file
&& strbuf_read_file(&tmpl
, template_file
, 0) > 0) {
640 stripspace(&tmpl
, cleanup_mode
== CLEANUP_ALL
);
641 if (start
+ tmpl
.len
<= sb
->len
&&
642 memcmp(tmpl
.buf
, sb
->buf
+ start
, tmpl
.len
) == 0)
645 strbuf_release(&tmpl
);
647 /* Check if the rest is just whitespace and Signed-of-by's. */
648 for (i
= start
; i
< sb
->len
; i
++) {
649 nl
= memchr(sb
->buf
+ i
, '\n', sb
->len
- i
);
655 if (strlen(sign_off_header
) <= eol
- i
&&
656 !prefixcmp(sb
->buf
+ i
, sign_off_header
)) {
661 if (!isspace(sb
->buf
[i
++]))
668 static const char *find_author_by_nickname(const char *name
)
670 struct rev_info revs
;
671 struct commit
*commit
;
672 struct strbuf buf
= STRBUF_INIT
;
676 init_revisions(&revs
, NULL
);
677 strbuf_addf(&buf
, "--author=%s", name
);
682 setup_revisions(ac
, av
, &revs
, NULL
);
683 prepare_revision_walk(&revs
);
684 commit
= get_revision(&revs
);
686 strbuf_release(&buf
);
687 format_commit_message(commit
, "%an <%ae>", &buf
, DATE_NORMAL
);
688 return strbuf_detach(&buf
, NULL
);
690 die("No existing author found with '%s'", name
);
693 static int parse_and_validate_options(int argc
, const char *argv
[],
694 const char * const usage
[],
699 argc
= parse_options(argc
, argv
, builtin_commit_options
, usage
, 0);
700 logfile
= parse_options_fix_filename(prefix
, logfile
);
701 template_file
= parse_options_fix_filename(prefix
, template_file
);
703 if (force_author
&& !strchr(force_author
, '>'))
704 force_author
= find_author_by_nickname(force_author
);
706 if (logfile
|| message
.len
|| use_message
)
711 setenv("GIT_EDITOR", ":", 1);
713 if (get_sha1("HEAD", head_sha1
))
716 if (!get_sha1("MERGE_HEAD", merge_head_sha1
))
719 /* Sanity check options */
720 if (amend
&& initial_commit
)
721 die("You have nothing to amend.");
722 if (amend
&& in_merge
)
723 die("You are in the middle of a merge -- cannot amend.");
732 die("Only one of -c/-C/-F can be used.");
733 if (message
.len
&& f
> 0)
734 die("Option -m cannot be combined with -c/-C/-F.");
736 use_message
= edit_message
;
737 if (amend
&& !use_message
)
738 use_message
= "HEAD";
740 unsigned char sha1
[20];
741 static char utf8
[] = "UTF-8";
744 struct commit
*commit
;
746 if (get_sha1(use_message
, sha1
))
747 die("could not lookup commit %s", use_message
);
748 commit
= lookup_commit_reference(sha1
);
749 if (!commit
|| parse_commit(commit
))
750 die("could not parse commit %s", use_message
);
752 enc
= strstr(commit
->buffer
, "\nencoding");
754 end
= strchr(enc
+ 10, '\n');
755 enc
= xstrndup(enc
+ 10, end
- (enc
+ 10));
759 out_enc
= git_commit_encoding
? git_commit_encoding
: utf8
;
761 if (strcmp(out_enc
, enc
))
763 reencode_string(commit
->buffer
, out_enc
, enc
);
766 * If we failed to reencode the buffer, just copy it
767 * byte for byte so the user can try to fix it up.
768 * This also handles the case where input and output
769 * encodings are identical.
771 if (use_message_buffer
== NULL
)
772 use_message_buffer
= xstrdup(commit
->buffer
);
777 if (!!also
+ !!only
+ !!all
+ !!interactive
> 1)
778 die("Only one of --include/--only/--all/--interactive can be used.");
779 if (argc
== 0 && (also
|| (only
&& !amend
)))
780 die("No paths with --include/--only does not make sense.");
781 if (argc
== 0 && only
&& amend
)
782 only_include_assumed
= "Clever... amending the last one with dirty index.";
783 if (argc
> 0 && !also
&& !only
)
784 only_include_assumed
= "Explicit paths specified without -i nor -o; assuming --only paths...";
785 if (!cleanup_arg
|| !strcmp(cleanup_arg
, "default"))
786 cleanup_mode
= use_editor
? CLEANUP_ALL
: CLEANUP_SPACE
;
787 else if (!strcmp(cleanup_arg
, "verbatim"))
788 cleanup_mode
= CLEANUP_NONE
;
789 else if (!strcmp(cleanup_arg
, "whitespace"))
790 cleanup_mode
= CLEANUP_SPACE
;
791 else if (!strcmp(cleanup_arg
, "strip"))
792 cleanup_mode
= CLEANUP_ALL
;
794 die("Invalid cleanup mode %s", cleanup_arg
);
796 if (!untracked_files_arg
)
797 ; /* default already initialized */
798 else if (!strcmp(untracked_files_arg
, "no"))
799 show_untracked_files
= SHOW_NO_UNTRACKED_FILES
;
800 else if (!strcmp(untracked_files_arg
, "normal"))
801 show_untracked_files
= SHOW_NORMAL_UNTRACKED_FILES
;
802 else if (!strcmp(untracked_files_arg
, "all"))
803 show_untracked_files
= SHOW_ALL_UNTRACKED_FILES
;
805 die("Invalid untracked files mode '%s'", untracked_files_arg
);
808 die("Paths with -a does not make sense.");
809 else if (interactive
&& argc
> 0)
810 die("Paths with --interactive does not make sense.");
815 int cmd_status(int argc
, const char **argv
, const char *prefix
)
817 const char *index_file
;
820 git_config(git_status_config
, NULL
);
822 if (wt_status_use_color
== -1)
823 wt_status_use_color
= git_use_color_default
;
825 if (diff_use_color_default
== -1)
826 diff_use_color_default
= git_use_color_default
;
828 argc
= parse_and_validate_options(argc
, argv
, builtin_status_usage
, prefix
);
830 index_file
= prepare_index(argc
, argv
, prefix
);
832 commitable
= run_status(stdout
, index_file
, prefix
, 0);
834 rollback_index_files();
836 return commitable
? 0 : 1;
839 static void print_summary(const char *prefix
, const unsigned char *sha1
)
842 struct commit
*commit
;
843 static const char *format
= "format:%h] %s";
844 unsigned char junk_sha1
[20];
845 const char *head
= resolve_ref("HEAD", junk_sha1
, 0, NULL
);
847 commit
= lookup_commit(sha1
);
849 die("couldn't look up newly created commit");
850 if (!commit
|| parse_commit(commit
))
851 die("could not parse newly created commit");
853 init_revisions(&rev
, prefix
);
854 setup_revisions(0, NULL
, &rev
, NULL
);
858 rev
.diffopt
.output_format
=
859 DIFF_FORMAT_SHORTSTAT
| DIFF_FORMAT_SUMMARY
;
861 rev
.verbose_header
= 1;
862 rev
.show_root_diff
= 1;
863 get_commit_format(format
, &rev
);
864 rev
.always_show_header
= 0;
865 rev
.diffopt
.detect_rename
= 1;
866 rev
.diffopt
.rename_limit
= 100;
867 rev
.diffopt
.break_opt
= 0;
868 diff_setup_done(&rev
.diffopt
);
871 !prefixcmp(head
, "refs/heads/") ?
873 !strcmp(head
, "HEAD") ?
876 initial_commit
? " (root-commit)" : "");
878 if (!log_tree_commit(&rev
, commit
)) {
879 struct strbuf buf
= STRBUF_INIT
;
880 format_commit_message(commit
, format
+ 7, &buf
, DATE_NORMAL
);
881 printf("%s\n", buf
.buf
);
882 strbuf_release(&buf
);
886 static int git_commit_config(const char *k
, const char *v
, void *cb
)
888 if (!strcmp(k
, "commit.template"))
889 return git_config_string(&template_file
, k
, v
);
891 return git_status_config(k
, v
, cb
);
894 int cmd_commit(int argc
, const char **argv
, const char *prefix
)
896 struct strbuf sb
= STRBUF_INIT
;
897 const char *index_file
, *reflog_msg
;
899 unsigned char commit_sha1
[20];
900 struct ref_lock
*ref_lock
;
901 struct commit_list
*parents
= NULL
, **pptr
= &parents
;
903 int allow_fast_forward
= 1;
905 git_config(git_commit_config
, NULL
);
907 if (wt_status_use_color
== -1)
908 wt_status_use_color
= git_use_color_default
;
910 argc
= parse_and_validate_options(argc
, argv
, builtin_commit_usage
, prefix
);
912 index_file
= prepare_index(argc
, argv
, prefix
);
914 /* Set up everything for writing the commit object. This includes
915 running hooks, writing the trees, and interacting with the user. */
916 if (!prepare_to_commit(index_file
, prefix
)) {
917 rollback_index_files();
921 /* Determine parents */
922 if (initial_commit
) {
923 reflog_msg
= "commit (initial)";
925 struct commit_list
*c
;
926 struct commit
*commit
;
928 reflog_msg
= "commit (amend)";
929 commit
= lookup_commit(head_sha1
);
930 if (!commit
|| parse_commit(commit
))
931 die("could not parse HEAD commit");
933 for (c
= commit
->parents
; c
; c
= c
->next
)
934 pptr
= &commit_list_insert(c
->item
, pptr
)->next
;
935 } else if (in_merge
) {
936 struct strbuf m
= STRBUF_INIT
;
939 reflog_msg
= "commit (merge)";
940 pptr
= &commit_list_insert(lookup_commit(head_sha1
), pptr
)->next
;
941 fp
= fopen(git_path("MERGE_HEAD"), "r");
943 die("could not open %s for reading: %s",
944 git_path("MERGE_HEAD"), strerror(errno
));
945 while (strbuf_getline(&m
, fp
, '\n') != EOF
) {
946 unsigned char sha1
[20];
947 if (get_sha1_hex(m
.buf
, sha1
) < 0)
948 die("Corrupt MERGE_HEAD file (%s)", m
.buf
);
949 pptr
= &commit_list_insert(lookup_commit(sha1
), pptr
)->next
;
953 if (!stat(git_path("MERGE_MODE"), &statbuf
)) {
954 if (strbuf_read_file(&sb
, git_path("MERGE_MODE"), 0) < 0)
955 die("could not read MERGE_MODE: %s",
957 if (!strcmp(sb
.buf
, "no-ff"))
958 allow_fast_forward
= 0;
960 if (allow_fast_forward
)
961 parents
= reduce_heads(parents
);
963 reflog_msg
= "commit";
964 pptr
= &commit_list_insert(lookup_commit(head_sha1
), pptr
)->next
;
967 /* Finally, get the commit message */
969 if (strbuf_read_file(&sb
, git_path(commit_editmsg
), 0) < 0) {
970 rollback_index_files();
971 die("could not read commit message");
974 /* Truncate the message just before the diff, if any. */
976 p
= strstr(sb
.buf
, "\ndiff --git ");
978 strbuf_setlen(&sb
, p
- sb
.buf
+ 1);
981 if (cleanup_mode
!= CLEANUP_NONE
)
982 stripspace(&sb
, cleanup_mode
== CLEANUP_ALL
);
983 if (message_is_empty(&sb
)) {
984 rollback_index_files();
985 fprintf(stderr
, "Aborting commit due to empty commit message.\n");
989 if (commit_tree(sb
.buf
, active_cache_tree
->sha1
, parents
, commit_sha1
,
990 fmt_ident(author_name
, author_email
, author_date
,
991 IDENT_ERROR_ON_NO_NAME
))) {
992 rollback_index_files();
993 die("failed to write commit object");
996 ref_lock
= lock_any_ref_for_update("HEAD",
997 initial_commit
? NULL
: head_sha1
,
1000 nl
= strchr(sb
.buf
, '\n');
1002 strbuf_setlen(&sb
, nl
+ 1 - sb
.buf
);
1004 strbuf_addch(&sb
, '\n');
1005 strbuf_insert(&sb
, 0, reflog_msg
, strlen(reflog_msg
));
1006 strbuf_insert(&sb
, strlen(reflog_msg
), ": ", 2);
1009 rollback_index_files();
1010 die("cannot lock HEAD ref");
1012 if (write_ref_sha1(ref_lock
, commit_sha1
, sb
.buf
) < 0) {
1013 rollback_index_files();
1014 die("cannot update HEAD ref");
1017 unlink(git_path("MERGE_HEAD"));
1018 unlink(git_path("MERGE_MSG"));
1019 unlink(git_path("MERGE_MODE"));
1020 unlink(git_path("SQUASH_MSG"));
1022 if (commit_index_files())
1023 die ("Repository has been updated, but unable to write\n"
1024 "new_index file. Check that disk is not full or quota is\n"
1025 "not exceeded, and then \"git reset HEAD\" to recover.");
1028 run_hook(get_index_file(), "post-commit", NULL
);
1030 print_summary(prefix
, commit_sha1
);