4 * Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>
5 * Based on git-commit.sh by Junio C Hamano and Linus Torvalds
8 #define USE_THE_INDEX_COMPATIBILITY_MACROS
12 #include "cache-tree.h"
20 #include "wt-status.h"
21 #include "run-command.h"
26 #include "parse-options.h"
27 #include "string-list.h"
29 #include "unpack-trees.h"
31 #include "submodule.h"
32 #include "gpg-interface.h"
34 #include "sequencer.h"
37 #include "commit-reach.h"
38 #include "commit-graph.h"
40 static const char * const builtin_commit_usage
[] = {
41 N_("git commit [<options>] [--] <pathspec>..."),
45 static const char * const builtin_status_usage
[] = {
46 N_("git status [<options>] [--] <pathspec>..."),
50 static const char empty_amend_advice
[] =
51 N_("You asked to amend the most recent commit, but doing so would make\n"
52 "it empty. You can repeat your command with --allow-empty, or you can\n"
53 "remove the commit entirely with \"git reset HEAD^\".\n");
55 static const char empty_cherry_pick_advice
[] =
56 N_("The previous cherry-pick is now empty, possibly due to conflict resolution.\n"
57 "If you wish to commit it anyway, use:\n"
59 " git commit --allow-empty\n"
62 static const char empty_cherry_pick_advice_single
[] =
63 N_("Otherwise, please use 'git cherry-pick --skip'\n");
65 static const char empty_cherry_pick_advice_multi
[] =
68 " git cherry-pick --continue\n"
70 "to resume cherry-picking the remaining commits.\n"
71 "If you wish to skip this commit, use:\n"
73 " git cherry-pick --skip\n"
76 static const char *color_status_slots
[] = {
77 [WT_STATUS_HEADER
] = "header",
78 [WT_STATUS_UPDATED
] = "updated",
79 [WT_STATUS_CHANGED
] = "changed",
80 [WT_STATUS_UNTRACKED
] = "untracked",
81 [WT_STATUS_NOBRANCH
] = "noBranch",
82 [WT_STATUS_UNMERGED
] = "unmerged",
83 [WT_STATUS_LOCAL_BRANCH
] = "localBranch",
84 [WT_STATUS_REMOTE_BRANCH
] = "remoteBranch",
85 [WT_STATUS_ONBRANCH
] = "branch",
88 static const char *use_message_buffer
;
89 static struct lock_file index_lock
; /* real index */
90 static struct lock_file false_lock
; /* used only for partial commits */
97 static const char *logfile
, *force_author
;
98 static const char *template_file
;
100 * The _message variables are commit names from which to take
101 * the commit message and/or authorship.
103 static const char *author_message
, *author_message_buffer
;
104 static char *edit_message
, *use_message
;
105 static char *fixup_message
, *squash_message
;
106 static int all
, also
, interactive
, patch_interactive
, only
, amend
, signoff
;
107 static int edit_flag
= -1; /* unspecified */
108 static int quiet
, verbose
, no_verify
, allow_empty
, dry_run
, renew_authorship
;
109 static int config_commit_verbose
= -1; /* unspecified */
110 static int no_post_rewrite
, allow_empty_message
, pathspec_file_nul
;
111 static char *untracked_files_arg
, *force_date
, *ignore_submodule_arg
, *ignored_arg
;
112 static char *sign_commit
, *pathspec_from_file
;
115 * The default commit message cleanup mode will remove the lines
116 * beginning with # (shell comments) and leading and trailing
117 * whitespaces (empty lines or containing only whitespaces)
118 * if editor is used, and only the whitespaces if the message
119 * is specified explicitly.
121 static enum commit_msg_cleanup_mode cleanup_mode
;
122 static const char *cleanup_arg
;
124 static enum commit_whence whence
;
125 static int sequencer_in_use
;
126 static int use_editor
= 1, include_status
= 1;
127 static int have_option_m
;
128 static struct strbuf message
= STRBUF_INIT
;
130 static enum wt_status_format status_format
= STATUS_FORMAT_UNSPECIFIED
;
132 static int opt_parse_porcelain(const struct option
*opt
, const char *arg
, int unset
)
134 enum wt_status_format
*value
= (enum wt_status_format
*)opt
->value
;
136 *value
= STATUS_FORMAT_NONE
;
138 *value
= STATUS_FORMAT_PORCELAIN
;
139 else if (!strcmp(arg
, "v1") || !strcmp(arg
, "1"))
140 *value
= STATUS_FORMAT_PORCELAIN
;
141 else if (!strcmp(arg
, "v2") || !strcmp(arg
, "2"))
142 *value
= STATUS_FORMAT_PORCELAIN_V2
;
144 die("unsupported porcelain version '%s'", arg
);
149 static int opt_parse_m(const struct option
*opt
, const char *arg
, int unset
)
151 struct strbuf
*buf
= opt
->value
;
154 strbuf_setlen(buf
, 0);
158 strbuf_addch(buf
, '\n');
159 strbuf_addstr(buf
, arg
);
160 strbuf_complete_line(buf
);
165 static int opt_parse_rename_score(const struct option
*opt
, const char *arg
, int unset
)
167 const char **value
= opt
->value
;
169 BUG_ON_OPT_NEG(unset
);
171 if (arg
!= NULL
&& *arg
== '=')
178 static void determine_whence(struct wt_status
*s
)
180 if (file_exists(git_path_merge_head(the_repository
)))
182 else if (file_exists(git_path_cherry_pick_head(the_repository
))) {
183 whence
= FROM_CHERRY_PICK
;
184 if (file_exists(git_path_seq_dir()))
185 sequencer_in_use
= 1;
188 whence
= FROM_COMMIT
;
193 static void status_init_config(struct wt_status
*s
, config_fn_t fn
)
195 wt_status_prepare(the_repository
, s
);
196 init_diff_ui_defaults();
199 s
->hints
= advice_status_hints
; /* must come after git_config() */
202 static void rollback_index_files(void)
204 switch (commit_style
) {
206 break; /* nothing to do */
208 rollback_lock_file(&index_lock
);
211 rollback_lock_file(&index_lock
);
212 rollback_lock_file(&false_lock
);
217 static int commit_index_files(void)
221 switch (commit_style
) {
223 break; /* nothing to do */
225 err
= commit_lock_file(&index_lock
);
228 err
= commit_lock_file(&index_lock
);
229 rollback_lock_file(&false_lock
);
237 * Take a union of paths in the index and the named tree (typically, "HEAD"),
238 * and return the paths that match the given pattern in list.
240 static int list_paths(struct string_list
*list
, const char *with_tree
,
241 const struct pathspec
*pattern
)
249 m
= xcalloc(1, pattern
->nr
);
252 char *max_prefix
= common_prefix(pattern
);
253 overlay_tree_on_index(&the_index
, with_tree
, max_prefix
);
257 for (i
= 0; i
< active_nr
; i
++) {
258 const struct cache_entry
*ce
= active_cache
[i
];
259 struct string_list_item
*item
;
261 if (ce
->ce_flags
& CE_UPDATE
)
263 if (!ce_path_match(&the_index
, ce
, pattern
, m
))
265 item
= string_list_insert(list
, ce
->name
);
266 if (ce_skip_worktree(ce
))
267 item
->util
= item
; /* better a valid pointer than a fake one */
270 ret
= report_path_error(m
, pattern
);
275 static void add_remove_files(struct string_list
*list
)
278 for (i
= 0; i
< list
->nr
; i
++) {
280 struct string_list_item
*p
= &(list
->items
[i
]);
282 /* p->util is skip-worktree */
286 if (!lstat(p
->string
, &st
)) {
287 if (add_to_cache(p
->string
, &st
, 0))
288 die(_("updating files failed"));
290 remove_file_from_cache(p
->string
);
294 static void create_base_index(const struct commit
*current_head
)
297 struct unpack_trees_options opts
;
305 memset(&opts
, 0, sizeof(opts
));
309 opts
.src_index
= &the_index
;
310 opts
.dst_index
= &the_index
;
312 opts
.fn
= oneway_merge
;
313 tree
= parse_tree_indirect(¤t_head
->object
.oid
);
315 die(_("failed to unpack HEAD tree object"));
317 init_tree_desc(&t
, tree
->buffer
, tree
->size
);
318 if (unpack_trees(1, &t
, &opts
))
319 exit(128); /* We've already reported the error, finish dying */
322 static void refresh_cache_or_die(int refresh_flags
)
325 * refresh_flags contains REFRESH_QUIET, so the only errors
326 * are for unmerged entries.
328 if (refresh_cache(refresh_flags
| REFRESH_IN_PORCELAIN
))
329 die_resolve_conflict("commit");
332 static const char *prepare_index(int argc
, const char **argv
, const char *prefix
,
333 const struct commit
*current_head
, int is_status
)
335 struct string_list partial
= STRING_LIST_INIT_DUP
;
336 struct pathspec pathspec
;
337 int refresh_flags
= REFRESH_QUIET
;
341 refresh_flags
|= REFRESH_UNMERGED
;
342 parse_pathspec(&pathspec
, 0,
343 PATHSPEC_PREFER_FULL
,
346 if (pathspec_from_file
) {
348 die(_("--pathspec-from-file is incompatible with --interactive/--patch"));
351 die(_("--pathspec-from-file is incompatible with pathspec arguments"));
353 parse_pathspec_file(&pathspec
, 0,
354 PATHSPEC_PREFER_FULL
,
355 prefix
, pathspec_from_file
, pathspec_file_nul
);
356 } else if (pathspec_file_nul
) {
357 die(_("--pathspec-file-nul requires --pathspec-from-file"));
360 if (!pathspec
.nr
&& (also
|| (only
&& !amend
&& !allow_empty
)))
361 die(_("No paths with --include/--only does not make sense."));
363 if (read_cache_preload(&pathspec
) < 0)
364 die(_("index file corrupt"));
367 char *old_index_env
= NULL
;
368 hold_locked_index(&index_lock
, LOCK_DIE_ON_ERROR
);
370 refresh_cache_or_die(refresh_flags
);
372 if (write_locked_index(&the_index
, &index_lock
, 0))
373 die(_("unable to create temporary index"));
375 old_index_env
= xstrdup_or_null(getenv(INDEX_ENVIRONMENT
));
376 setenv(INDEX_ENVIRONMENT
, get_lock_file_path(&index_lock
), 1);
378 if (interactive_add(argc
, argv
, prefix
, patch_interactive
) != 0)
379 die(_("interactive add failed"));
381 if (old_index_env
&& *old_index_env
)
382 setenv(INDEX_ENVIRONMENT
, old_index_env
, 1);
384 unsetenv(INDEX_ENVIRONMENT
);
385 FREE_AND_NULL(old_index_env
);
388 read_cache_from(get_lock_file_path(&index_lock
));
389 if (update_main_cache_tree(WRITE_TREE_SILENT
) == 0) {
390 if (reopen_lock_file(&index_lock
) < 0)
391 die(_("unable to write index file"));
392 if (write_locked_index(&the_index
, &index_lock
, 0))
393 die(_("unable to update temporary index"));
395 warning(_("Failed to update main cache tree"));
397 commit_style
= COMMIT_NORMAL
;
398 ret
= get_lock_file_path(&index_lock
);
403 * Non partial, non as-is commit.
405 * (1) get the real index;
406 * (2) update the_index as necessary;
407 * (3) write the_index out to the real index (still locked);
408 * (4) return the name of the locked index file.
410 * The caller should run hooks on the locked real index, and
411 * (A) if all goes well, commit the real index;
412 * (B) on failure, rollback the real index.
414 if (all
|| (also
&& pathspec
.nr
)) {
415 hold_locked_index(&index_lock
, LOCK_DIE_ON_ERROR
);
416 add_files_to_cache(also
? prefix
: NULL
, &pathspec
, 0);
417 refresh_cache_or_die(refresh_flags
);
418 update_main_cache_tree(WRITE_TREE_SILENT
);
419 if (write_locked_index(&the_index
, &index_lock
, 0))
420 die(_("unable to write new_index file"));
421 commit_style
= COMMIT_NORMAL
;
422 ret
= get_lock_file_path(&index_lock
);
429 * (1) return the name of the real index file.
431 * The caller should run hooks on the real index,
432 * and create commit from the_index.
433 * We still need to refresh the index here.
435 if (!only
&& !pathspec
.nr
) {
436 hold_locked_index(&index_lock
, LOCK_DIE_ON_ERROR
);
437 refresh_cache_or_die(refresh_flags
);
438 if (active_cache_changed
439 || !cache_tree_fully_valid(active_cache_tree
))
440 update_main_cache_tree(WRITE_TREE_SILENT
);
441 if (write_locked_index(&the_index
, &index_lock
,
442 COMMIT_LOCK
| SKIP_IF_UNCHANGED
))
443 die(_("unable to write new_index file"));
444 commit_style
= COMMIT_AS_IS
;
445 ret
= get_index_file();
452 * (0) find the set of affected paths;
453 * (1) get lock on the real index file;
454 * (2) update the_index with the given paths;
455 * (3) write the_index out to the real index (still locked);
456 * (4) get lock on the false index file;
457 * (5) reset the_index from HEAD;
458 * (6) update the_index the same way as (2);
459 * (7) write the_index out to the false index file;
460 * (8) return the name of the false index file (still locked);
462 * The caller should run hooks on the locked false index, and
463 * create commit from it. Then
464 * (A) if all goes well, commit the real index;
465 * (B) on failure, rollback the real index;
466 * In either case, rollback the false index.
468 commit_style
= COMMIT_PARTIAL
;
470 if (whence
!= FROM_COMMIT
) {
471 if (whence
== FROM_MERGE
)
472 die(_("cannot do a partial commit during a merge."));
473 else if (whence
== FROM_CHERRY_PICK
)
474 die(_("cannot do a partial commit during a cherry-pick."));
477 if (list_paths(&partial
, !current_head
? NULL
: "HEAD", &pathspec
))
481 if (read_cache() < 0)
482 die(_("cannot read the index"));
484 hold_locked_index(&index_lock
, LOCK_DIE_ON_ERROR
);
485 add_remove_files(&partial
);
486 refresh_cache(REFRESH_QUIET
);
487 update_main_cache_tree(WRITE_TREE_SILENT
);
488 if (write_locked_index(&the_index
, &index_lock
, 0))
489 die(_("unable to write new_index file"));
491 hold_lock_file_for_update(&false_lock
,
492 git_path("next-index-%"PRIuMAX
,
493 (uintmax_t) getpid()),
496 create_base_index(current_head
);
497 add_remove_files(&partial
);
498 refresh_cache(REFRESH_QUIET
);
500 if (write_locked_index(&the_index
, &false_lock
, 0))
501 die(_("unable to write temporary index file"));
504 ret
= get_lock_file_path(&false_lock
);
505 read_cache_from(ret
);
507 string_list_clear(&partial
, 0);
508 clear_pathspec(&pathspec
);
512 static int run_status(FILE *fp
, const char *index_file
, const char *prefix
, int nowarn
,
515 struct object_id oid
;
517 if (s
->relative_paths
)
522 s
->reference
= "HEAD^1";
524 s
->verbose
= verbose
;
525 s
->index_file
= index_file
;
528 s
->is_initial
= get_oid(s
->reference
, &oid
) ? 1 : 0;
530 oidcpy(&s
->oid_commit
, &oid
);
531 s
->status_format
= status_format
;
532 s
->ignore_submodule_arg
= ignore_submodule_arg
;
534 wt_status_collect(s
);
536 wt_status_collect_free_buffers(s
);
538 return s
->committable
;
541 static int is_a_merge(const struct commit
*current_head
)
543 return !!(current_head
->parents
&& current_head
->parents
->next
);
546 static void assert_split_ident(struct ident_split
*id
, const struct strbuf
*buf
)
548 if (split_ident_line(id
, buf
->buf
, buf
->len
) || !id
->date_begin
)
549 BUG("unable to parse our own ident: %s", buf
->buf
);
552 static void export_one(const char *var
, const char *s
, const char *e
, int hack
)
554 struct strbuf buf
= STRBUF_INIT
;
556 strbuf_addch(&buf
, hack
);
557 strbuf_addf(&buf
, "%.*s", (int)(e
- s
), s
);
558 setenv(var
, buf
.buf
, 1);
559 strbuf_release(&buf
);
562 static int parse_force_date(const char *in
, struct strbuf
*out
)
564 strbuf_addch(out
, '@');
566 if (parse_date(in
, out
) < 0) {
568 unsigned long t
= approxidate_careful(in
, &errors
);
571 strbuf_addf(out
, "%lu", t
);
577 static void set_ident_var(char **buf
, char *val
)
583 static void determine_author_info(struct strbuf
*author_ident
)
585 char *name
, *email
, *date
;
586 struct ident_split author
;
588 name
= xstrdup_or_null(getenv("GIT_AUTHOR_NAME"));
589 email
= xstrdup_or_null(getenv("GIT_AUTHOR_EMAIL"));
590 date
= xstrdup_or_null(getenv("GIT_AUTHOR_DATE"));
592 if (author_message
) {
593 struct ident_split ident
;
597 a
= find_commit_header(author_message_buffer
, "author", &len
);
599 die(_("commit '%s' lacks author header"), author_message
);
600 if (split_ident_line(&ident
, a
, len
) < 0)
601 die(_("commit '%s' has malformed author line"), author_message
);
603 set_ident_var(&name
, xmemdupz(ident
.name_begin
, ident
.name_end
- ident
.name_begin
));
604 set_ident_var(&email
, xmemdupz(ident
.mail_begin
, ident
.mail_end
- ident
.mail_begin
));
606 if (ident
.date_begin
) {
607 struct strbuf date_buf
= STRBUF_INIT
;
608 strbuf_addch(&date_buf
, '@');
609 strbuf_add(&date_buf
, ident
.date_begin
, ident
.date_end
- ident
.date_begin
);
610 strbuf_addch(&date_buf
, ' ');
611 strbuf_add(&date_buf
, ident
.tz_begin
, ident
.tz_end
- ident
.tz_begin
);
612 set_ident_var(&date
, strbuf_detach(&date_buf
, NULL
));
617 struct ident_split ident
;
619 if (split_ident_line(&ident
, force_author
, strlen(force_author
)) < 0)
620 die(_("malformed --author parameter"));
621 set_ident_var(&name
, xmemdupz(ident
.name_begin
, ident
.name_end
- ident
.name_begin
));
622 set_ident_var(&email
, xmemdupz(ident
.mail_begin
, ident
.mail_end
- ident
.mail_begin
));
626 struct strbuf date_buf
= STRBUF_INIT
;
627 if (parse_force_date(force_date
, &date_buf
))
628 die(_("invalid date format: %s"), force_date
);
629 set_ident_var(&date
, strbuf_detach(&date_buf
, NULL
));
632 strbuf_addstr(author_ident
, fmt_ident(name
, email
, WANT_AUTHOR_IDENT
, date
,
634 assert_split_ident(&author
, author_ident
);
635 export_one("GIT_AUTHOR_NAME", author
.name_begin
, author
.name_end
, 0);
636 export_one("GIT_AUTHOR_EMAIL", author
.mail_begin
, author
.mail_end
, 0);
637 export_one("GIT_AUTHOR_DATE", author
.date_begin
, author
.tz_end
, '@');
643 static int author_date_is_interesting(void)
645 return author_message
|| force_date
;
648 static void adjust_comment_line_char(const struct strbuf
*sb
)
650 char candidates
[] = "#;@!$%^&|:";
654 comment_line_char
= candidates
[0];
655 if (!memchr(sb
->buf
, comment_line_char
, sb
->len
))
659 candidate
= strchr(candidates
, *p
);
662 for (p
= sb
->buf
; *p
; p
++) {
663 if ((p
[0] == '\n' || p
[0] == '\r') && p
[1]) {
664 candidate
= strchr(candidates
, p
[1]);
670 for (p
= candidates
; *p
== ' '; p
++)
673 die(_("unable to select a comment character that is not used\n"
674 "in the current commit message"));
675 comment_line_char
= *p
;
678 static int prepare_to_commit(const char *index_file
, const char *prefix
,
679 struct commit
*current_head
,
681 struct strbuf
*author_ident
)
684 struct strbuf committer_ident
= STRBUF_INIT
;
686 struct strbuf sb
= STRBUF_INIT
;
687 const char *hook_arg1
= NULL
;
688 const char *hook_arg2
= NULL
;
689 int clean_message_contents
= (cleanup_mode
!= COMMIT_MSG_CLEANUP_NONE
);
690 int old_display_comment_prefix
;
691 int merge_contains_scissors
= 0;
693 /* This checks and barfs if author is badly specified */
694 determine_author_info(author_ident
);
696 if (!no_verify
&& run_commit_hook(use_editor
, index_file
, "pre-commit", NULL
))
699 if (squash_message
) {
701 * Insert the proper subject line before other commit
702 * message options add their content.
704 if (use_message
&& !strcmp(use_message
, squash_message
))
705 strbuf_addstr(&sb
, "squash! ");
707 struct pretty_print_context ctx
= {0};
709 c
= lookup_commit_reference_by_name(squash_message
);
711 die(_("could not lookup commit %s"), squash_message
);
712 ctx
.output_encoding
= get_commit_output_encoding();
713 format_commit_message(c
, "squash! %s\n\n", &sb
,
718 if (have_option_m
&& !fixup_message
) {
719 strbuf_addbuf(&sb
, &message
);
720 hook_arg1
= "message";
721 } else if (logfile
&& !strcmp(logfile
, "-")) {
723 fprintf(stderr
, _("(reading log message from standard input)\n"));
724 if (strbuf_read(&sb
, 0, 0) < 0)
725 die_errno(_("could not read log from standard input"));
726 hook_arg1
= "message";
727 } else if (logfile
) {
728 if (strbuf_read_file(&sb
, logfile
, 0) < 0)
729 die_errno(_("could not read log file '%s'"),
731 hook_arg1
= "message";
732 } else if (use_message
) {
734 buffer
= strstr(use_message_buffer
, "\n\n");
736 strbuf_addstr(&sb
, skip_blank_lines(buffer
+ 2));
737 hook_arg1
= "commit";
738 hook_arg2
= use_message
;
739 } else if (fixup_message
) {
740 struct pretty_print_context ctx
= {0};
741 struct commit
*commit
;
742 commit
= lookup_commit_reference_by_name(fixup_message
);
744 die(_("could not lookup commit %s"), fixup_message
);
745 ctx
.output_encoding
= get_commit_output_encoding();
746 format_commit_message(commit
, "fixup! %s\n\n",
749 strbuf_addbuf(&sb
, &message
);
750 hook_arg1
= "message";
751 } else if (!stat(git_path_merge_msg(the_repository
), &statbuf
)) {
752 size_t merge_msg_start
;
755 * prepend SQUASH_MSG here if it exists and a
756 * "merge --squash" was originally performed
758 if (!stat(git_path_squash_msg(the_repository
), &statbuf
)) {
759 if (strbuf_read_file(&sb
, git_path_squash_msg(the_repository
), 0) < 0)
760 die_errno(_("could not read SQUASH_MSG"));
761 hook_arg1
= "squash";
765 merge_msg_start
= sb
.len
;
766 if (strbuf_read_file(&sb
, git_path_merge_msg(the_repository
), 0) < 0)
767 die_errno(_("could not read MERGE_MSG"));
769 if (cleanup_mode
== COMMIT_MSG_CLEANUP_SCISSORS
&&
770 wt_status_locate_end(sb
.buf
+ merge_msg_start
,
771 sb
.len
- merge_msg_start
) <
772 sb
.len
- merge_msg_start
)
773 merge_contains_scissors
= 1;
774 } else if (!stat(git_path_squash_msg(the_repository
), &statbuf
)) {
775 if (strbuf_read_file(&sb
, git_path_squash_msg(the_repository
), 0) < 0)
776 die_errno(_("could not read SQUASH_MSG"));
777 hook_arg1
= "squash";
778 } else if (template_file
) {
779 if (strbuf_read_file(&sb
, template_file
, 0) < 0)
780 die_errno(_("could not read '%s'"), template_file
);
781 hook_arg1
= "template";
782 clean_message_contents
= 0;
786 * The remaining cases don't modify the template message, but
787 * just set the argument(s) to the prepare-commit-msg hook.
789 else if (whence
== FROM_MERGE
)
791 else if (whence
== FROM_CHERRY_PICK
) {
792 hook_arg1
= "commit";
793 hook_arg2
= "CHERRY_PICK_HEAD";
796 if (squash_message
) {
798 * If squash_commit was used for the commit subject,
799 * then we're possibly hijacking other commit log options.
800 * Reset the hook args to tell the real story.
802 hook_arg1
= "message";
806 s
->fp
= fopen_for_writing(git_path_commit_editmsg());
808 die_errno(_("could not open '%s'"), git_path_commit_editmsg());
810 /* Ignore status.displayCommentPrefix: we do need comments in COMMIT_EDITMSG. */
811 old_display_comment_prefix
= s
->display_comment_prefix
;
812 s
->display_comment_prefix
= 1;
815 * Most hints are counter-productive when the commit has
820 if (clean_message_contents
)
821 strbuf_stripspace(&sb
, 0);
824 append_signoff(&sb
, ignore_non_trailer(sb
.buf
, sb
.len
), 0);
826 if (fwrite(sb
.buf
, 1, sb
.len
, s
->fp
) < sb
.len
)
827 die_errno(_("could not write commit template"));
829 if (auto_comment_line_char
)
830 adjust_comment_line_char(&sb
);
833 /* This checks if committer ident is explicitly given */
834 strbuf_addstr(&committer_ident
, git_committer_info(IDENT_STRICT
));
835 if (use_editor
&& include_status
) {
837 int saved_color_setting
;
838 struct ident_split ci
, ai
;
840 if (whence
!= FROM_COMMIT
) {
841 if (cleanup_mode
== COMMIT_MSG_CLEANUP_SCISSORS
&&
842 !merge_contains_scissors
)
843 wt_status_add_cut_line(s
->fp
);
844 status_printf_ln(s
, GIT_COLOR_NORMAL
,
847 "It looks like you may be committing a merge.\n"
848 "If this is not correct, please remove the file\n"
852 "It looks like you may be committing a cherry-pick.\n"
853 "If this is not correct, please remove the file\n"
856 whence
== FROM_MERGE
?
857 git_path_merge_head(the_repository
) :
858 git_path_cherry_pick_head(the_repository
));
861 fprintf(s
->fp
, "\n");
862 if (cleanup_mode
== COMMIT_MSG_CLEANUP_ALL
)
863 status_printf(s
, GIT_COLOR_NORMAL
,
864 _("Please enter the commit message for your changes."
865 " Lines starting\nwith '%c' will be ignored, and an empty"
866 " message aborts the commit.\n"), comment_line_char
);
867 else if (cleanup_mode
== COMMIT_MSG_CLEANUP_SCISSORS
) {
868 if (whence
== FROM_COMMIT
&& !merge_contains_scissors
)
869 wt_status_add_cut_line(s
->fp
);
870 } else /* COMMIT_MSG_CLEANUP_SPACE, that is. */
871 status_printf(s
, GIT_COLOR_NORMAL
,
872 _("Please enter the commit message for your changes."
874 "with '%c' will be kept; you may remove them"
875 " yourself if you want to.\n"
876 "An empty message aborts the commit.\n"), comment_line_char
);
879 * These should never fail because they come from our own
880 * fmt_ident. They may fail the sane_ident test, but we know
881 * that the name and mail pointers will at least be valid,
882 * which is enough for our tests and printing here.
884 assert_split_ident(&ai
, author_ident
);
885 assert_split_ident(&ci
, &committer_ident
);
887 if (ident_cmp(&ai
, &ci
))
888 status_printf_ln(s
, GIT_COLOR_NORMAL
,
890 "Author: %.*s <%.*s>"),
891 ident_shown
++ ? "" : "\n",
892 (int)(ai
.name_end
- ai
.name_begin
), ai
.name_begin
,
893 (int)(ai
.mail_end
- ai
.mail_begin
), ai
.mail_begin
);
895 if (author_date_is_interesting())
896 status_printf_ln(s
, GIT_COLOR_NORMAL
,
899 ident_shown
++ ? "" : "\n",
900 show_ident_date(&ai
, DATE_MODE(NORMAL
)));
902 if (!committer_ident_sufficiently_given())
903 status_printf_ln(s
, GIT_COLOR_NORMAL
,
905 "Committer: %.*s <%.*s>"),
906 ident_shown
++ ? "" : "\n",
907 (int)(ci
.name_end
- ci
.name_begin
), ci
.name_begin
,
908 (int)(ci
.mail_end
- ci
.mail_begin
), ci
.mail_begin
);
910 status_printf_ln(s
, GIT_COLOR_NORMAL
, "%s", ""); /* Add new line for clarity */
912 saved_color_setting
= s
->use_color
;
914 committable
= run_status(s
->fp
, index_file
, prefix
, 1, s
);
915 s
->use_color
= saved_color_setting
;
916 string_list_clear(&s
->change
, 1);
918 struct object_id oid
;
919 const char *parent
= "HEAD";
921 if (!active_nr
&& read_cache() < 0)
922 die(_("Cannot read index"));
927 if (get_oid(parent
, &oid
)) {
930 for (i
= 0; i
< active_nr
; i
++)
931 if (ce_intent_to_add(active_cache
[i
]))
933 committable
= active_nr
- ita_nr
> 0;
936 * Unless the user did explicitly request a submodule
937 * ignore mode by passing a command line option we do
938 * not ignore any changed submodule SHA-1s when
939 * comparing index and parent, no matter what is
940 * configured. Otherwise we won't commit any
941 * submodules which were manually staged, which would
942 * be really confusing.
944 struct diff_flags flags
= DIFF_FLAGS_INIT
;
945 flags
.override_submodule_config
= 1;
946 if (ignore_submodule_arg
&&
947 !strcmp(ignore_submodule_arg
, "all"))
948 flags
.ignore_submodules
= 1;
949 committable
= index_differs_from(the_repository
,
953 strbuf_release(&committer_ident
);
958 * Reject an attempt to record a non-merge empty commit without
959 * explicit --allow-empty. In the cherry-pick case, it may be
960 * empty due to conflict resolution, which the user should okay.
962 if (!committable
&& whence
!= FROM_MERGE
&& !allow_empty
&&
963 !(amend
&& is_a_merge(current_head
))) {
964 s
->display_comment_prefix
= old_display_comment_prefix
;
965 run_status(stdout
, index_file
, prefix
, 0, s
);
967 fputs(_(empty_amend_advice
), stderr
);
968 else if (whence
== FROM_CHERRY_PICK
) {
969 fputs(_(empty_cherry_pick_advice
), stderr
);
970 if (!sequencer_in_use
)
971 fputs(_(empty_cherry_pick_advice_single
), stderr
);
973 fputs(_(empty_cherry_pick_advice_multi
), stderr
);
978 if (!no_verify
&& find_hook("pre-commit")) {
980 * Re-read the index as pre-commit hook could have updated it,
981 * and write it out as a tree. We must do this before we invoke
982 * the editor and after we invoke run_status above.
986 read_cache_from(index_file
);
988 if (update_main_cache_tree(0)) {
989 error(_("Error building trees"));
993 if (run_commit_hook(use_editor
, index_file
, "prepare-commit-msg",
994 git_path_commit_editmsg(), hook_arg1
, hook_arg2
, NULL
))
998 struct argv_array env
= ARGV_ARRAY_INIT
;
1000 argv_array_pushf(&env
, "GIT_INDEX_FILE=%s", index_file
);
1001 if (launch_editor(git_path_commit_editmsg(), NULL
, env
.argv
)) {
1003 _("Please supply the message using either -m or -F option.\n"));
1006 argv_array_clear(&env
);
1010 run_commit_hook(use_editor
, index_file
, "commit-msg", git_path_commit_editmsg(), NULL
)) {
1017 static const char *find_author_by_nickname(const char *name
)
1019 struct rev_info revs
;
1020 struct commit
*commit
;
1021 struct strbuf buf
= STRBUF_INIT
;
1022 struct string_list mailmap
= STRING_LIST_INIT_NODUP
;
1026 repo_init_revisions(the_repository
, &revs
, NULL
);
1027 strbuf_addf(&buf
, "--author=%s", name
);
1032 setup_revisions(ac
, av
, &revs
, NULL
);
1033 revs
.mailmap
= &mailmap
;
1034 read_mailmap(revs
.mailmap
, NULL
);
1036 if (prepare_revision_walk(&revs
))
1037 die(_("revision walk setup failed"));
1038 commit
= get_revision(&revs
);
1040 struct pretty_print_context ctx
= {0};
1041 ctx
.date_mode
.type
= DATE_NORMAL
;
1042 strbuf_release(&buf
);
1043 format_commit_message(commit
, "%aN <%aE>", &buf
, &ctx
);
1044 clear_mailmap(&mailmap
);
1045 return strbuf_detach(&buf
, NULL
);
1047 die(_("--author '%s' is not 'Name <email>' and matches no existing author"), name
);
1050 static void handle_ignored_arg(struct wt_status
*s
)
1053 ; /* default already initialized */
1054 else if (!strcmp(ignored_arg
, "traditional"))
1055 s
->show_ignored_mode
= SHOW_TRADITIONAL_IGNORED
;
1056 else if (!strcmp(ignored_arg
, "no"))
1057 s
->show_ignored_mode
= SHOW_NO_IGNORED
;
1058 else if (!strcmp(ignored_arg
, "matching"))
1059 s
->show_ignored_mode
= SHOW_MATCHING_IGNORED
;
1061 die(_("Invalid ignored mode '%s'"), ignored_arg
);
1064 static void handle_untracked_files_arg(struct wt_status
*s
)
1066 if (!untracked_files_arg
)
1067 ; /* default already initialized */
1068 else if (!strcmp(untracked_files_arg
, "no"))
1069 s
->show_untracked_files
= SHOW_NO_UNTRACKED_FILES
;
1070 else if (!strcmp(untracked_files_arg
, "normal"))
1071 s
->show_untracked_files
= SHOW_NORMAL_UNTRACKED_FILES
;
1072 else if (!strcmp(untracked_files_arg
, "all"))
1073 s
->show_untracked_files
= SHOW_ALL_UNTRACKED_FILES
;
1075 * Please update $__git_untracked_file_modes in
1076 * git-completion.bash when you add new options
1079 die(_("Invalid untracked files mode '%s'"), untracked_files_arg
);
1082 static const char *read_commit_message(const char *name
)
1084 const char *out_enc
;
1085 struct commit
*commit
;
1087 commit
= lookup_commit_reference_by_name(name
);
1089 die(_("could not lookup commit %s"), name
);
1090 out_enc
= get_commit_output_encoding();
1091 return logmsg_reencode(commit
, NULL
, out_enc
);
1095 * Enumerate what needs to be propagated when --porcelain
1096 * is not in effect here.
1098 static struct status_deferred_config
{
1099 enum wt_status_format status_format
;
1101 enum ahead_behind_flags ahead_behind
;
1102 } status_deferred_config
= {
1103 STATUS_FORMAT_UNSPECIFIED
,
1104 -1, /* unspecified */
1105 AHEAD_BEHIND_UNSPECIFIED
,
1108 static void finalize_deferred_config(struct wt_status
*s
)
1110 int use_deferred_config
= (status_format
!= STATUS_FORMAT_PORCELAIN
&&
1111 status_format
!= STATUS_FORMAT_PORCELAIN_V2
&&
1112 !s
->null_termination
);
1114 if (s
->null_termination
) {
1115 if (status_format
== STATUS_FORMAT_NONE
||
1116 status_format
== STATUS_FORMAT_UNSPECIFIED
)
1117 status_format
= STATUS_FORMAT_PORCELAIN
;
1118 else if (status_format
== STATUS_FORMAT_LONG
)
1119 die(_("--long and -z are incompatible"));
1122 if (use_deferred_config
&& status_format
== STATUS_FORMAT_UNSPECIFIED
)
1123 status_format
= status_deferred_config
.status_format
;
1124 if (status_format
== STATUS_FORMAT_UNSPECIFIED
)
1125 status_format
= STATUS_FORMAT_NONE
;
1127 if (use_deferred_config
&& s
->show_branch
< 0)
1128 s
->show_branch
= status_deferred_config
.show_branch
;
1129 if (s
->show_branch
< 0)
1133 * If the user did not give a "--[no]-ahead-behind" command
1134 * line argument *AND* we will print in a human-readable format
1135 * (short, long etc.) then we inherit from the status.aheadbehind
1136 * config setting. In all other cases (and porcelain V[12] formats
1137 * in particular), we inherit _FULL for backwards compatibility.
1139 if (use_deferred_config
&&
1140 s
->ahead_behind_flags
== AHEAD_BEHIND_UNSPECIFIED
)
1141 s
->ahead_behind_flags
= status_deferred_config
.ahead_behind
;
1143 if (s
->ahead_behind_flags
== AHEAD_BEHIND_UNSPECIFIED
)
1144 s
->ahead_behind_flags
= AHEAD_BEHIND_FULL
;
1147 static int parse_and_validate_options(int argc
, const char *argv
[],
1148 const struct option
*options
,
1149 const char * const usage
[],
1151 struct commit
*current_head
,
1152 struct wt_status
*s
)
1156 argc
= parse_options(argc
, argv
, prefix
, options
, usage
, 0);
1157 finalize_deferred_config(s
);
1159 if (force_author
&& !strchr(force_author
, '>'))
1160 force_author
= find_author_by_nickname(force_author
);
1162 if (force_author
&& renew_authorship
)
1163 die(_("Using both --reset-author and --author does not make sense"));
1165 if (logfile
|| have_option_m
|| use_message
|| fixup_message
)
1168 use_editor
= edit_flag
;
1170 /* Sanity check options */
1171 if (amend
&& !current_head
)
1172 die(_("You have nothing to amend."));
1173 if (amend
&& whence
!= FROM_COMMIT
) {
1174 if (whence
== FROM_MERGE
)
1175 die(_("You are in the middle of a merge -- cannot amend."));
1176 else if (whence
== FROM_CHERRY_PICK
)
1177 die(_("You are in the middle of a cherry-pick -- cannot amend."));
1179 if (fixup_message
&& squash_message
)
1180 die(_("Options --squash and --fixup cannot be used together"));
1190 die(_("Only one of -c/-C/-F/--fixup can be used."));
1191 if (have_option_m
&& (edit_message
|| use_message
|| logfile
))
1192 die((_("Option -m cannot be combined with -c/-C/-F.")));
1193 if (f
|| have_option_m
)
1194 template_file
= NULL
;
1196 use_message
= edit_message
;
1197 if (amend
&& !use_message
&& !fixup_message
)
1198 use_message
= "HEAD";
1199 if (!use_message
&& whence
!= FROM_CHERRY_PICK
&& renew_authorship
)
1200 die(_("--reset-author can be used only with -C, -c or --amend."));
1202 use_message_buffer
= read_commit_message(use_message
);
1203 if (!renew_authorship
) {
1204 author_message
= use_message
;
1205 author_message_buffer
= use_message_buffer
;
1208 if (whence
== FROM_CHERRY_PICK
&& !renew_authorship
) {
1209 author_message
= "CHERRY_PICK_HEAD";
1210 author_message_buffer
= read_commit_message(author_message
);
1213 if (patch_interactive
)
1216 if (also
+ only
+ all
+ interactive
> 1)
1217 die(_("Only one of --include/--only/--all/--interactive/--patch can be used."));
1218 cleanup_mode
= get_cleanup_mode(cleanup_arg
, use_editor
);
1220 handle_untracked_files_arg(s
);
1222 if (all
&& argc
> 0)
1223 die(_("paths '%s ...' with -a does not make sense"),
1226 if (status_format
!= STATUS_FORMAT_NONE
)
1232 static int dry_run_commit(int argc
, const char **argv
, const char *prefix
,
1233 const struct commit
*current_head
, struct wt_status
*s
)
1236 const char *index_file
;
1238 index_file
= prepare_index(argc
, argv
, prefix
, current_head
, 1);
1239 committable
= run_status(stdout
, index_file
, prefix
, 0, s
);
1240 rollback_index_files();
1242 return committable
? 0 : 1;
1245 define_list_config_array_extra(color_status_slots
, {"added"});
1247 static int parse_status_slot(const char *slot
)
1249 if (!strcasecmp(slot
, "added"))
1250 return WT_STATUS_UPDATED
;
1252 return LOOKUP_CONFIG(color_status_slots
, slot
);
1255 static int git_status_config(const char *k
, const char *v
, void *cb
)
1257 struct wt_status
*s
= cb
;
1258 const char *slot_name
;
1260 if (starts_with(k
, "column."))
1261 return git_column_config(k
, v
, "status", &s
->colopts
);
1262 if (!strcmp(k
, "status.submodulesummary")) {
1264 s
->submodule_summary
= git_config_bool_or_int(k
, v
, &is_bool
);
1265 if (is_bool
&& s
->submodule_summary
)
1266 s
->submodule_summary
= -1;
1269 if (!strcmp(k
, "status.short")) {
1270 if (git_config_bool(k
, v
))
1271 status_deferred_config
.status_format
= STATUS_FORMAT_SHORT
;
1273 status_deferred_config
.status_format
= STATUS_FORMAT_NONE
;
1276 if (!strcmp(k
, "status.branch")) {
1277 status_deferred_config
.show_branch
= git_config_bool(k
, v
);
1280 if (!strcmp(k
, "status.aheadbehind")) {
1281 status_deferred_config
.ahead_behind
= git_config_bool(k
, v
);
1284 if (!strcmp(k
, "status.showstash")) {
1285 s
->show_stash
= git_config_bool(k
, v
);
1288 if (!strcmp(k
, "status.color") || !strcmp(k
, "color.status")) {
1289 s
->use_color
= git_config_colorbool(k
, v
);
1292 if (!strcmp(k
, "status.displaycommentprefix")) {
1293 s
->display_comment_prefix
= git_config_bool(k
, v
);
1296 if (skip_prefix(k
, "status.color.", &slot_name
) ||
1297 skip_prefix(k
, "color.status.", &slot_name
)) {
1298 int slot
= parse_status_slot(slot_name
);
1302 return config_error_nonbool(k
);
1303 return color_parse(v
, s
->color_palette
[slot
]);
1305 if (!strcmp(k
, "status.relativepaths")) {
1306 s
->relative_paths
= git_config_bool(k
, v
);
1309 if (!strcmp(k
, "status.showuntrackedfiles")) {
1311 return config_error_nonbool(k
);
1312 else if (!strcmp(v
, "no"))
1313 s
->show_untracked_files
= SHOW_NO_UNTRACKED_FILES
;
1314 else if (!strcmp(v
, "normal"))
1315 s
->show_untracked_files
= SHOW_NORMAL_UNTRACKED_FILES
;
1316 else if (!strcmp(v
, "all"))
1317 s
->show_untracked_files
= SHOW_ALL_UNTRACKED_FILES
;
1319 return error(_("Invalid untracked files mode '%s'"), v
);
1322 if (!strcmp(k
, "diff.renamelimit")) {
1323 if (s
->rename_limit
== -1)
1324 s
->rename_limit
= git_config_int(k
, v
);
1327 if (!strcmp(k
, "status.renamelimit")) {
1328 s
->rename_limit
= git_config_int(k
, v
);
1331 if (!strcmp(k
, "diff.renames")) {
1332 if (s
->detect_rename
== -1)
1333 s
->detect_rename
= git_config_rename(k
, v
);
1336 if (!strcmp(k
, "status.renames")) {
1337 s
->detect_rename
= git_config_rename(k
, v
);
1340 return git_diff_ui_config(k
, v
, NULL
);
1343 int cmd_status(int argc
, const char **argv
, const char *prefix
)
1345 static int no_renames
= -1;
1346 static const char *rename_score_arg
= (const char *)-1;
1347 static struct wt_status s
;
1348 unsigned int progress_flag
= 0;
1350 struct object_id oid
;
1351 static struct option builtin_status_options
[] = {
1352 OPT__VERBOSE(&verbose
, N_("be verbose")),
1353 OPT_SET_INT('s', "short", &status_format
,
1354 N_("show status concisely"), STATUS_FORMAT_SHORT
),
1355 OPT_BOOL('b', "branch", &s
.show_branch
,
1356 N_("show branch information")),
1357 OPT_BOOL(0, "show-stash", &s
.show_stash
,
1358 N_("show stash information")),
1359 OPT_BOOL(0, "ahead-behind", &s
.ahead_behind_flags
,
1360 N_("compute full ahead/behind values")),
1361 { OPTION_CALLBACK
, 0, "porcelain", &status_format
,
1362 N_("version"), N_("machine-readable output"),
1363 PARSE_OPT_OPTARG
, opt_parse_porcelain
},
1364 OPT_SET_INT(0, "long", &status_format
,
1365 N_("show status in long format (default)"),
1366 STATUS_FORMAT_LONG
),
1367 OPT_BOOL('z', "null", &s
.null_termination
,
1368 N_("terminate entries with NUL")),
1369 { OPTION_STRING
, 'u', "untracked-files", &untracked_files_arg
,
1371 N_("show untracked files, optional modes: all, normal, no. (Default: all)"),
1372 PARSE_OPT_OPTARG
, NULL
, (intptr_t)"all" },
1373 { OPTION_STRING
, 0, "ignored", &ignored_arg
,
1375 N_("show ignored files, optional modes: traditional, matching, no. (Default: traditional)"),
1376 PARSE_OPT_OPTARG
, NULL
, (intptr_t)"traditional" },
1377 { OPTION_STRING
, 0, "ignore-submodules", &ignore_submodule_arg
, N_("when"),
1378 N_("ignore changes to submodules, optional when: all, dirty, untracked. (Default: all)"),
1379 PARSE_OPT_OPTARG
, NULL
, (intptr_t)"all" },
1380 OPT_COLUMN(0, "column", &s
.colopts
, N_("list untracked files in columns")),
1381 OPT_BOOL(0, "no-renames", &no_renames
, N_("do not detect renames")),
1382 { OPTION_CALLBACK
, 'M', "find-renames", &rename_score_arg
,
1383 N_("n"), N_("detect renames, optionally set similarity index"),
1384 PARSE_OPT_OPTARG
| PARSE_OPT_NONEG
, opt_parse_rename_score
},
1388 if (argc
== 2 && !strcmp(argv
[1], "-h"))
1389 usage_with_options(builtin_status_usage
, builtin_status_options
);
1391 status_init_config(&s
, git_status_config
);
1392 argc
= parse_options(argc
, argv
, prefix
,
1393 builtin_status_options
,
1394 builtin_status_usage
, 0);
1395 finalize_colopts(&s
.colopts
, -1);
1396 finalize_deferred_config(&s
);
1398 handle_untracked_files_arg(&s
);
1399 handle_ignored_arg(&s
);
1401 if (s
.show_ignored_mode
== SHOW_MATCHING_IGNORED
&&
1402 s
.show_untracked_files
== SHOW_NO_UNTRACKED_FILES
)
1403 die(_("Unsupported combination of ignored and untracked-files arguments"));
1405 parse_pathspec(&s
.pathspec
, 0,
1406 PATHSPEC_PREFER_FULL
,
1409 if (status_format
!= STATUS_FORMAT_PORCELAIN
&&
1410 status_format
!= STATUS_FORMAT_PORCELAIN_V2
)
1411 progress_flag
= REFRESH_PROGRESS
;
1412 repo_read_index(the_repository
);
1413 refresh_index(&the_index
,
1414 REFRESH_QUIET
|REFRESH_UNMERGED
|progress_flag
,
1415 &s
.pathspec
, NULL
, NULL
);
1417 if (use_optional_locks())
1418 fd
= hold_locked_index(&index_lock
, 0);
1422 s
.is_initial
= get_oid(s
.reference
, &oid
) ? 1 : 0;
1424 oidcpy(&s
.oid_commit
, &oid
);
1426 s
.ignore_submodule_arg
= ignore_submodule_arg
;
1427 s
.status_format
= status_format
;
1428 s
.verbose
= verbose
;
1429 if (no_renames
!= -1)
1430 s
.detect_rename
= !no_renames
;
1431 if ((intptr_t)rename_score_arg
!= -1) {
1432 if (s
.detect_rename
< DIFF_DETECT_RENAME
)
1433 s
.detect_rename
= DIFF_DETECT_RENAME
;
1434 if (rename_score_arg
)
1435 s
.rename_score
= parse_rename_score(&rename_score_arg
);
1438 wt_status_collect(&s
);
1441 repo_update_index_if_able(the_repository
, &index_lock
);
1443 if (s
.relative_paths
)
1446 wt_status_print(&s
);
1447 wt_status_collect_free_buffers(&s
);
1452 static int git_commit_config(const char *k
, const char *v
, void *cb
)
1454 struct wt_status
*s
= cb
;
1457 if (!strcmp(k
, "commit.template"))
1458 return git_config_pathname(&template_file
, k
, v
);
1459 if (!strcmp(k
, "commit.status")) {
1460 include_status
= git_config_bool(k
, v
);
1463 if (!strcmp(k
, "commit.cleanup"))
1464 return git_config_string(&cleanup_arg
, k
, v
);
1465 if (!strcmp(k
, "commit.gpgsign")) {
1466 sign_commit
= git_config_bool(k
, v
) ? "" : NULL
;
1469 if (!strcmp(k
, "commit.verbose")) {
1471 config_commit_verbose
= git_config_bool_or_int(k
, v
, &is_bool
);
1475 status
= git_gpg_config(k
, v
, NULL
);
1478 return git_status_config(k
, v
, s
);
1481 int cmd_commit(int argc
, const char **argv
, const char *prefix
)
1483 const char *argv_gc_auto
[] = {"gc", "--auto", NULL
};
1484 static struct wt_status s
;
1485 static struct option builtin_commit_options
[] = {
1486 OPT__QUIET(&quiet
, N_("suppress summary after successful commit")),
1487 OPT__VERBOSE(&verbose
, N_("show diff in commit message template")),
1489 OPT_GROUP(N_("Commit message options")),
1490 OPT_FILENAME('F', "file", &logfile
, N_("read message from file")),
1491 OPT_STRING(0, "author", &force_author
, N_("author"), N_("override author for commit")),
1492 OPT_STRING(0, "date", &force_date
, N_("date"), N_("override date for commit")),
1493 OPT_CALLBACK('m', "message", &message
, N_("message"), N_("commit message"), opt_parse_m
),
1494 OPT_STRING('c', "reedit-message", &edit_message
, N_("commit"), N_("reuse and edit message from specified commit")),
1495 OPT_STRING('C', "reuse-message", &use_message
, N_("commit"), N_("reuse message from specified commit")),
1496 OPT_STRING(0, "fixup", &fixup_message
, N_("commit"), N_("use autosquash formatted message to fixup specified commit")),
1497 OPT_STRING(0, "squash", &squash_message
, N_("commit"), N_("use autosquash formatted message to squash specified commit")),
1498 OPT_BOOL(0, "reset-author", &renew_authorship
, N_("the commit is authored by me now (used with -C/-c/--amend)")),
1499 OPT_BOOL('s', "signoff", &signoff
, N_("add Signed-off-by:")),
1500 OPT_FILENAME('t', "template", &template_file
, N_("use specified template file")),
1501 OPT_BOOL('e', "edit", &edit_flag
, N_("force edit of commit")),
1502 OPT_CLEANUP(&cleanup_arg
),
1503 OPT_BOOL(0, "status", &include_status
, N_("include status in commit message template")),
1504 { OPTION_STRING
, 'S', "gpg-sign", &sign_commit
, N_("key-id"),
1505 N_("GPG sign commit"), PARSE_OPT_OPTARG
, NULL
, (intptr_t) "" },
1506 /* end commit message options */
1508 OPT_GROUP(N_("Commit contents options")),
1509 OPT_BOOL('a', "all", &all
, N_("commit all changed files")),
1510 OPT_BOOL('i', "include", &also
, N_("add specified files to index for commit")),
1511 OPT_BOOL(0, "interactive", &interactive
, N_("interactively add files")),
1512 OPT_BOOL('p', "patch", &patch_interactive
, N_("interactively add changes")),
1513 OPT_BOOL('o', "only", &only
, N_("commit only specified files")),
1514 OPT_BOOL('n', "no-verify", &no_verify
, N_("bypass pre-commit and commit-msg hooks")),
1515 OPT_BOOL(0, "dry-run", &dry_run
, N_("show what would be committed")),
1516 OPT_SET_INT(0, "short", &status_format
, N_("show status concisely"),
1517 STATUS_FORMAT_SHORT
),
1518 OPT_BOOL(0, "branch", &s
.show_branch
, N_("show branch information")),
1519 OPT_BOOL(0, "ahead-behind", &s
.ahead_behind_flags
,
1520 N_("compute full ahead/behind values")),
1521 OPT_SET_INT(0, "porcelain", &status_format
,
1522 N_("machine-readable output"), STATUS_FORMAT_PORCELAIN
),
1523 OPT_SET_INT(0, "long", &status_format
,
1524 N_("show status in long format (default)"),
1525 STATUS_FORMAT_LONG
),
1526 OPT_BOOL('z', "null", &s
.null_termination
,
1527 N_("terminate entries with NUL")),
1528 OPT_BOOL(0, "amend", &amend
, N_("amend previous commit")),
1529 OPT_BOOL(0, "no-post-rewrite", &no_post_rewrite
, N_("bypass post-rewrite hook")),
1530 { OPTION_STRING
, 'u', "untracked-files", &untracked_files_arg
, N_("mode"), N_("show untracked files, optional modes: all, normal, no. (Default: all)"), PARSE_OPT_OPTARG
, NULL
, (intptr_t)"all" },
1531 OPT_PATHSPEC_FROM_FILE(&pathspec_from_file
),
1532 OPT_PATHSPEC_FILE_NUL(&pathspec_file_nul
),
1533 /* end commit contents options */
1535 OPT_HIDDEN_BOOL(0, "allow-empty", &allow_empty
,
1536 N_("ok to record an empty change")),
1537 OPT_HIDDEN_BOOL(0, "allow-empty-message", &allow_empty_message
,
1538 N_("ok to record a change with an empty message")),
1543 struct strbuf sb
= STRBUF_INIT
;
1544 struct strbuf author_ident
= STRBUF_INIT
;
1545 const char *index_file
, *reflog_msg
;
1546 struct object_id oid
;
1547 struct commit_list
*parents
= NULL
;
1548 struct stat statbuf
;
1549 struct commit
*current_head
= NULL
;
1550 struct commit_extra_header
*extra
= NULL
;
1551 struct strbuf err
= STRBUF_INIT
;
1553 if (argc
== 2 && !strcmp(argv
[1], "-h"))
1554 usage_with_options(builtin_commit_usage
, builtin_commit_options
);
1556 status_init_config(&s
, git_commit_config
);
1557 s
.commit_template
= 1;
1558 status_format
= STATUS_FORMAT_NONE
; /* Ignore status.short */
1561 if (get_oid("HEAD", &oid
))
1562 current_head
= NULL
;
1564 current_head
= lookup_commit_or_die(&oid
, "HEAD");
1565 if (parse_commit(current_head
))
1566 die(_("could not parse HEAD commit"));
1568 verbose
= -1; /* unspecified */
1569 argc
= parse_and_validate_options(argc
, argv
, builtin_commit_options
,
1570 builtin_commit_usage
,
1571 prefix
, current_head
, &s
);
1573 verbose
= (config_commit_verbose
< 0) ? 0 : config_commit_verbose
;
1576 return dry_run_commit(argc
, argv
, prefix
, current_head
, &s
);
1577 index_file
= prepare_index(argc
, argv
, prefix
, current_head
, 0);
1579 /* Set up everything for writing the commit object. This includes
1580 running hooks, writing the trees, and interacting with the user. */
1581 if (!prepare_to_commit(index_file
, prefix
,
1582 current_head
, &s
, &author_ident
)) {
1583 rollback_index_files();
1587 /* Determine parents */
1588 reflog_msg
= getenv("GIT_REFLOG_ACTION");
1589 if (!current_head
) {
1591 reflog_msg
= "commit (initial)";
1594 reflog_msg
= "commit (amend)";
1595 parents
= copy_commit_list(current_head
->parents
);
1596 } else if (whence
== FROM_MERGE
) {
1597 struct strbuf m
= STRBUF_INIT
;
1599 int allow_fast_forward
= 1;
1600 struct commit_list
**pptr
= &parents
;
1603 reflog_msg
= "commit (merge)";
1604 pptr
= commit_list_append(current_head
, pptr
);
1605 fp
= xfopen(git_path_merge_head(the_repository
), "r");
1606 while (strbuf_getline_lf(&m
, fp
) != EOF
) {
1607 struct commit
*parent
;
1609 parent
= get_merge_parent(m
.buf
);
1611 die(_("Corrupt MERGE_HEAD file (%s)"), m
.buf
);
1612 pptr
= commit_list_append(parent
, pptr
);
1616 if (!stat(git_path_merge_mode(the_repository
), &statbuf
)) {
1617 if (strbuf_read_file(&sb
, git_path_merge_mode(the_repository
), 0) < 0)
1618 die_errno(_("could not read MERGE_MODE"));
1619 if (!strcmp(sb
.buf
, "no-ff"))
1620 allow_fast_forward
= 0;
1622 if (allow_fast_forward
)
1623 reduce_heads_replace(&parents
);
1626 reflog_msg
= (whence
== FROM_CHERRY_PICK
)
1627 ? "commit (cherry-pick)"
1629 commit_list_insert(current_head
, &parents
);
1632 /* Finally, get the commit message */
1634 if (strbuf_read_file(&sb
, git_path_commit_editmsg(), 0) < 0) {
1635 int saved_errno
= errno
;
1636 rollback_index_files();
1637 die(_("could not read commit message: %s"), strerror(saved_errno
));
1640 cleanup_message(&sb
, cleanup_mode
, verbose
);
1642 if (message_is_empty(&sb
, cleanup_mode
) && !allow_empty_message
) {
1643 rollback_index_files();
1644 fprintf(stderr
, _("Aborting commit due to empty commit message.\n"));
1647 if (template_untouched(&sb
, template_file
, cleanup_mode
) && !allow_empty_message
) {
1648 rollback_index_files();
1649 fprintf(stderr
, _("Aborting commit; you did not edit the message.\n"));
1654 const char *exclude_gpgsig
[2] = { "gpgsig", NULL
};
1655 extra
= read_commit_extra_headers(current_head
, exclude_gpgsig
);
1657 struct commit_extra_header
**tail
= &extra
;
1658 append_merge_tag_headers(parents
, &tail
);
1661 if (commit_tree_extended(sb
.buf
, sb
.len
, &active_cache_tree
->oid
,
1662 parents
, &oid
, author_ident
.buf
, sign_commit
,
1664 rollback_index_files();
1665 die(_("failed to write commit object"));
1667 strbuf_release(&author_ident
);
1668 free_commit_extra_headers(extra
);
1670 if (update_head_with_reflog(current_head
, &oid
, reflog_msg
, &sb
,
1672 rollback_index_files();
1676 sequencer_post_commit_cleanup(the_repository
, 0);
1677 unlink(git_path_merge_head(the_repository
));
1678 unlink(git_path_merge_msg(the_repository
));
1679 unlink(git_path_merge_mode(the_repository
));
1680 unlink(git_path_squash_msg(the_repository
));
1682 if (commit_index_files())
1683 die(_("repository has been updated, but unable to write\n"
1684 "new_index file. Check that disk is not full and quota is\n"
1685 "not exceeded, and then \"git restore --staged :/\" to recover."));
1687 if (git_env_bool(GIT_TEST_COMMIT_GRAPH
, 0) &&
1688 write_commit_graph_reachable(get_object_directory(), 0, NULL
))
1691 repo_rerere(the_repository
, 0);
1692 run_command_v_opt(argv_gc_auto
, RUN_GIT_CMD
);
1693 run_commit_hook(use_editor
, get_index_file(), "post-commit", NULL
);
1694 if (amend
&& !no_post_rewrite
) {
1695 commit_post_rewrite(the_repository
, current_head
, &oid
);
1698 unsigned int flags
= 0;
1701 flags
|= SUMMARY_INITIAL_COMMIT
;
1702 if (author_date_is_interesting())
1703 flags
|= SUMMARY_SHOW_AUTHOR_DATE
;
1704 print_commit_summary(the_repository
, prefix
,