blob: e1af9b19f0be71484ae9341762dc2bf89cabb70c [file] [log] [blame]
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001/*
2 * Builtin "git commit"
3 *
4 * Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>
5 * Based on git-commit.sh by Junio C Hamano and Linus Torvalds
6 */
7
8#include "cache.h"
9#include "cache-tree.h"
Matthias Kestenholz6b2f2d92008-02-18 08:26:03 +010010#include "color.h"
Junio C Hamano28886052007-11-18 01:52:55 -080011#include "dir.h"
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -050012#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"
Johannes Schindelinc455c872008-07-21 19:03:49 +010024#include "string-list.h"
Stephan Beyer5b2fd952008-07-09 14:58:57 +020025#include "rerere.h"
Linus Torvaldsfa9dcf82008-01-13 00:30:56 -080026#include "unpack-trees.h"
Junio C Hamano76e2f7c2009-08-07 23:31:57 -070027#include "quote.h"
Jens Lehmann302ad7a2010-08-06 00:40:48 +020028#include "submodule.h"
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -050029
30static const char * const builtin_commit_usage[] = {
Stephan Beyer1b1dd232008-07-13 15:36:15 +020031 "git commit [options] [--] <filepattern>...",
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -050032 NULL
33};
34
Shawn Bohrer2f02b252007-12-02 23:02:09 -060035static const char * const builtin_status_usage[] = {
Stephan Beyer1b1dd232008-07-13 15:36:15 +020036 "git status [options] [--] <filepattern>...",
Shawn Bohrer2f02b252007-12-02 23:02:09 -060037 NULL
38};
39
Jeff King49ff9a72010-01-13 12:39:51 -050040static const char implicit_ident_advice[] =
Ævar Arnfjörð Bjarmasonfc88e312011-02-22 23:41:49 +000041N_("Your name and email address were configured automatically based\n"
Jeff King49ff9a72010-01-13 12:39:51 -050042"on your username and hostname. Please check that they are accurate.\n"
43"You can suppress this message by setting them explicitly:\n"
44"\n"
Matt Kraai8bb45b22010-02-24 06:18:25 -080045" git config --global user.name \"Your Name\"\n"
Jeff King49ff9a72010-01-13 12:39:51 -050046" git config --global user.email you@example.com\n"
47"\n"
Matthieu Moy3f142462011-01-12 19:29:14 +010048"After doing this, you may fix the identity used for this commit with:\n"
Jeff King49ff9a72010-01-13 12:39:51 -050049"\n"
Ævar Arnfjörð Bjarmasonfc88e312011-02-22 23:41:49 +000050" git commit --amend --reset-author\n");
Jeff King49ff9a72010-01-13 12:39:51 -050051
Jeff Kingf197ed22010-06-06 20:41:46 -040052static const char empty_amend_advice[] =
Ævar Arnfjörð Bjarmasonfc88e312011-02-22 23:41:49 +000053N_("You asked to amend the most recent commit, but doing so would make\n"
Jeff Kingf197ed22010-06-06 20:41:46 -040054"it empty. You can repeat your command with --allow-empty, or you can\n"
Ævar Arnfjörð Bjarmasonfc88e312011-02-22 23:41:49 +000055"remove the commit entirely with \"git reset HEAD^\".\n");
Jeff Kingf197ed22010-06-06 20:41:46 -040056
Jay Soffian37f7a852011-02-19 23:12:29 -050057static const char empty_cherry_pick_advice[] =
Junio C Hamano6c80cd22011-04-01 17:55:55 -070058N_("The previous cherry-pick is now empty, possibly due to conflict resolution.\n"
Jay Soffian37f7a852011-02-19 23:12:29 -050059"If you wish to commit it anyway, use:\n"
60"\n"
61" git commit --allow-empty\n"
62"\n"
Junio C Hamano6c80cd22011-04-01 17:55:55 -070063"Otherwise, please use 'git reset'\n");
Jay Soffian37f7a852011-02-19 23:12:29 -050064
Junio C Hamano30988302009-12-11 23:45:24 -080065static unsigned char head_sha1[20];
Jeff King49ff9a72010-01-13 12:39:51 -050066
Jay Soffian37f7a852011-02-19 23:12:29 -050067static const char *use_message_buffer;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -050068static const char commit_editmsg[] = "COMMIT_EDITMSG";
Junio C Hamano28886052007-11-18 01:52:55 -080069static struct lock_file index_lock; /* real index */
70static struct lock_file false_lock; /* used only for partial commits */
71static enum {
72 COMMIT_AS_IS = 1,
73 COMMIT_NORMAL,
Gary V. Vaughan4b055482010-05-14 09:31:35 +000074 COMMIT_PARTIAL
Junio C Hamano28886052007-11-18 01:52:55 -080075} commit_style;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -050076
Junio C Hamanodbd0f5c2008-08-06 11:43:47 -070077static const char *logfile, *force_author;
Brian Hetro984c6e72008-07-05 01:24:40 -040078static const char *template_file;
Jay Soffian37f7a852011-02-19 23:12:29 -050079/*
80 * The _message variables are commit names from which to take
81 * the commit message and/or authorship.
82 */
83static const char *author_message, *author_message_buffer;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -050084static char *edit_message, *use_message;
Pat Notz89ac1222010-11-02 13:59:11 -060085static char *fixup_message, *squash_message;
Conrad Irwinb4bd4662011-05-07 10:58:07 -070086static int all, edit_flag, also, interactive, patch_interactive, only, amend, signoff;
Erick Mattosc51f6ce2009-11-04 01:20:11 -020087static int quiet, verbose, no_verify, allow_empty, dry_run, renew_authorship;
Ævar Arnfjörð Bjarmasonc9b5fde2010-04-06 08:40:35 +000088static int no_post_rewrite, allow_empty_message;
Jens Lehmann46a958b2010-06-25 16:56:47 +020089static char *untracked_files_arg, *force_date, *ignore_submodule_arg;
Alex Riesen5f065732007-12-22 19:46:24 +010090/*
91 * The default commit message cleanup mode will remove the lines
92 * beginning with # (shell comments) and leading and trailing
93 * whitespaces (empty lines or containing only whitespaces)
94 * if editor is used, and only the whitespaces if the message
95 * is specified explicitly.
96 */
97static enum {
98 CLEANUP_SPACE,
99 CLEANUP_NONE,
Gary V. Vaughan4b055482010-05-14 09:31:35 +0000100 CLEANUP_ALL
Alex Riesen5f065732007-12-22 19:46:24 +0100101} cleanup_mode;
102static char *cleanup_arg;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500103
Jay Soffian37f7a852011-02-19 23:12:29 -0500104static enum commit_whence whence;
105static int use_editor = 1, initial_commit, include_status = 1;
Junio C Hamano2381e392010-04-10 00:33:17 -0700106static int show_ignored_in_status;
Johannes Schindelin3b6aeb32008-07-22 21:40:41 +0100107static const char *only_include_assumed;
108static struct strbuf message;
Johannes Schindelinf9568532007-11-11 17:36:39 +0000109
Jeff King7c9f7032009-09-05 04:59:56 -0400110static int null_termination;
111static enum {
112 STATUS_FORMAT_LONG,
113 STATUS_FORMAT_SHORT,
Gary V. Vaughan4b055482010-05-14 09:31:35 +0000114 STATUS_FORMAT_PORCELAIN
Jeff King7c9f7032009-09-05 04:59:56 -0400115} status_format = STATUS_FORMAT_LONG;
Daniel Knittl-Frank05a59a02010-05-25 15:45:51 +0200116static int status_show_branch;
Jeff King7c9f7032009-09-05 04:59:56 -0400117
Johannes Schindelinf9568532007-11-11 17:36:39 +0000118static int opt_parse_m(const struct option *opt, const char *arg, int unset)
119{
120 struct strbuf *buf = opt->value;
121 if (unset)
122 strbuf_setlen(buf, 0);
123 else {
124 strbuf_addstr(buf, arg);
Johannes Schindelin3b6aeb32008-07-22 21:40:41 +0100125 strbuf_addstr(buf, "\n\n");
Johannes Schindelinf9568532007-11-11 17:36:39 +0000126 }
127 return 0;
128}
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500129
130static struct option builtin_commit_options[] = {
Jonathan Nieder8c839682010-11-08 13:54:48 -0600131 OPT__QUIET(&quiet, "suppress summary after successful commit"),
132 OPT__VERBOSE(&verbose, "show diff in commit message template"),
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500133
Greg Pricee97ca7f2009-12-29 16:54:49 -0500134 OPT_GROUP("Commit message options"),
Michael J Gruber726c4e32011-02-15 14:09:04 +0100135 OPT_FILENAME('F', "file", &logfile, "read message from file"),
Michael J Gruber23c6a802011-02-15 14:09:12 +0100136 OPT_STRING(0, "author", &force_author, "author", "override author for commit"),
137 OPT_STRING(0, "date", &force_date, "date", "override date for commit"),
138 OPT_CALLBACK('m', "message", &message, "message", "commit message", opt_parse_m),
139 OPT_STRING('c', "reedit-message", &edit_message, "commit", "reuse and edit message from specified commit"),
140 OPT_STRING('C', "reuse-message", &use_message, "commit", "reuse message from specified commit"),
141 OPT_STRING(0, "fixup", &fixup_message, "commit", "use autosquash formatted message to fixup specified commit"),
142 OPT_STRING(0, "squash", &squash_message, "commit", "use autosquash formatted message to squash specified commit"),
Erick Mattosc51f6ce2009-11-04 01:20:11 -0200143 OPT_BOOLEAN(0, "reset-author", &renew_authorship, "the commit is authored by me now (used with -C-c/--amend)"),
Dan McGee362b0dd2008-04-26 19:43:20 -0500144 OPT_BOOLEAN('s', "signoff", &signoff, "add Signed-off-by:"),
Stephen Boyddf217ed2009-05-23 11:53:13 -0700145 OPT_FILENAME('t', "template", &template_file, "use specified template file"),
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500146 OPT_BOOLEAN('e', "edit", &edit_flag, "force edit of commit"),
Greg Pricee97ca7f2009-12-29 16:54:49 -0500147 OPT_STRING(0, "cleanup", &cleanup_arg, "default", "how to strip spaces and #comments from message"),
James P. Howard, IIbed575e2009-12-07 17:45:27 -0500148 OPT_BOOLEAN(0, "status", &include_status, "include status in commit message template"),
Greg Pricee97ca7f2009-12-29 16:54:49 -0500149 /* end commit message options */
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500150
151 OPT_GROUP("Commit contents options"),
152 OPT_BOOLEAN('a', "all", &all, "commit all changed files"),
153 OPT_BOOLEAN('i', "include", &also, "add specified files to index for commit"),
154 OPT_BOOLEAN(0, "interactive", &interactive, "interactively add files"),
Conrad Irwinb4bd4662011-05-07 10:58:07 -0700155 OPT_BOOLEAN('p', "patch", &patch_interactive, "interactively add changes"),
Johannes Sixtd4ba07c2008-04-10 13:33:09 +0200156 OPT_BOOLEAN('o', "only", &only, "commit only specified files"),
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500157 OPT_BOOLEAN('n', "no-verify", &no_verify, "bypass pre-commit hook"),
Junio C Hamano3a5d13a2009-08-07 23:03:36 -0700158 OPT_BOOLEAN(0, "dry-run", &dry_run, "show what would be committed"),
Jeff King7c9f7032009-09-05 04:59:56 -0400159 OPT_SET_INT(0, "short", &status_format, "show status concisely",
160 STATUS_FORMAT_SHORT),
Daniel Knittl-Frank05a59a02010-05-25 15:45:51 +0200161 OPT_BOOLEAN(0, "branch", &status_show_branch, "show branch information"),
Jeff King7c9f7032009-09-05 04:59:56 -0400162 OPT_SET_INT(0, "porcelain", &status_format,
Michael J Gruberba9d7fe2011-02-15 14:09:05 +0100163 "machine-readable output", STATUS_FORMAT_PORCELAIN),
Jeff King7c9f7032009-09-05 04:59:56 -0400164 OPT_BOOLEAN('z', "null", &null_termination,
165 "terminate entries with NUL"),
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500166 OPT_BOOLEAN(0, "amend", &amend, "amend previous commit"),
Thomas Rast6f6bee32010-03-12 18:04:28 +0100167 OPT_BOOLEAN(0, "no-post-rewrite", &no_post_rewrite, "bypass post-rewrite hook"),
Michael J Gruber85470902011-02-15 14:09:09 +0100168 { 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" },
Greg Pricee97ca7f2009-12-29 16:54:49 -0500169 /* end commit contents options */
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500170
Ævar Arnfjörð Bjarmasonc9b5fde2010-04-06 08:40:35 +0000171 { OPTION_BOOLEAN, 0, "allow-empty", &allow_empty, NULL,
172 "ok to record an empty change",
173 PARSE_OPT_NOARG | PARSE_OPT_HIDDEN },
174 { OPTION_BOOLEAN, 0, "allow-empty-message", &allow_empty_message, NULL,
175 "ok to record a change with an empty message",
176 PARSE_OPT_NOARG | PARSE_OPT_HIDDEN },
177
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500178 OPT_END()
179};
180
Jay Soffian37f7a852011-02-19 23:12:29 -0500181static void determine_whence(struct wt_status *s)
182{
183 if (file_exists(git_path("MERGE_HEAD")))
184 whence = FROM_MERGE;
185 else if (file_exists(git_path("CHERRY_PICK_HEAD")))
186 whence = FROM_CHERRY_PICK;
187 else
188 whence = FROM_COMMIT;
189 if (s)
190 s->whence = whence;
191}
192
193static const char *whence_s(void)
194{
195 char *s = "";
196
197 switch (whence) {
198 case FROM_COMMIT:
199 break;
200 case FROM_MERGE:
201 s = "merge";
202 break;
203 case FROM_CHERRY_PICK:
204 s = "cherry-pick";
205 break;
206 }
207
208 return s;
209}
210
Junio C Hamano28886052007-11-18 01:52:55 -0800211static void rollback_index_files(void)
212{
213 switch (commit_style) {
214 case COMMIT_AS_IS:
215 break; /* nothing to do */
216 case COMMIT_NORMAL:
217 rollback_lock_file(&index_lock);
218 break;
219 case COMMIT_PARTIAL:
220 rollback_lock_file(&index_lock);
221 rollback_lock_file(&false_lock);
222 break;
223 }
224}
225
Brandon Casey5a9dd392008-01-23 11:21:22 -0600226static int commit_index_files(void)
Junio C Hamano28886052007-11-18 01:52:55 -0800227{
Brandon Casey5a9dd392008-01-23 11:21:22 -0600228 int err = 0;
229
Junio C Hamano28886052007-11-18 01:52:55 -0800230 switch (commit_style) {
231 case COMMIT_AS_IS:
232 break; /* nothing to do */
233 case COMMIT_NORMAL:
Brandon Casey5a9dd392008-01-23 11:21:22 -0600234 err = commit_lock_file(&index_lock);
Junio C Hamano28886052007-11-18 01:52:55 -0800235 break;
236 case COMMIT_PARTIAL:
Brandon Casey5a9dd392008-01-23 11:21:22 -0600237 err = commit_lock_file(&index_lock);
Junio C Hamano28886052007-11-18 01:52:55 -0800238 rollback_lock_file(&false_lock);
239 break;
240 }
Brandon Casey5a9dd392008-01-23 11:21:22 -0600241
242 return err;
Junio C Hamano28886052007-11-18 01:52:55 -0800243}
244
245/*
246 * Take a union of paths in the index and the named tree (typically, "HEAD"),
247 * and return the paths that match the given pattern in list.
248 */
Johannes Schindelinc455c872008-07-21 19:03:49 +0100249static int list_paths(struct string_list *list, const char *with_tree,
Junio C Hamano28886052007-11-18 01:52:55 -0800250 const char *prefix, const char **pattern)
251{
252 int i;
253 char *m;
254
255 for (i = 0; pattern[i]; i++)
256 ;
257 m = xcalloc(1, i);
258
259 if (with_tree)
260 overlay_tree_on_cache(with_tree, prefix);
261
262 for (i = 0; i < active_nr; i++) {
263 struct cache_entry *ce = active_cache[i];
Nguyễn Thái Ngọc Duy7fce6e32009-12-14 18:43:59 +0700264 struct string_list_item *item;
265
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800266 if (ce->ce_flags & CE_UPDATE)
Junio C Hamanoe87e22d2008-01-14 13:54:24 -0800267 continue;
Clemens Buchacher0b509222009-01-14 15:54:35 +0100268 if (!match_pathspec(pattern, ce->name, ce_namelen(ce), 0, m))
Junio C Hamano28886052007-11-18 01:52:55 -0800269 continue;
Julian Phillips78a395d2010-06-26 00:41:35 +0100270 item = string_list_insert(list, ce->name);
Nguyễn Thái Ngọc Duy7fce6e32009-12-14 18:43:59 +0700271 if (ce_skip_worktree(ce))
272 item->util = item; /* better a valid pointer than a fake one */
Junio C Hamano28886052007-11-18 01:52:55 -0800273 }
274
275 return report_path_error(m, pattern, prefix ? strlen(prefix) : 0);
276}
277
Johannes Schindelinc455c872008-07-21 19:03:49 +0100278static void add_remove_files(struct string_list *list)
Junio C Hamano28886052007-11-18 01:52:55 -0800279{
280 int i;
281 for (i = 0; i < list->nr; i++) {
Linus Torvaldsd177cab2008-05-09 09:11:43 -0700282 struct stat st;
Johannes Schindelinc455c872008-07-21 19:03:49 +0100283 struct string_list_item *p = &(list->items[i]);
Linus Torvaldsd177cab2008-05-09 09:11:43 -0700284
Nguyễn Thái Ngọc Duy7fce6e32009-12-14 18:43:59 +0700285 /* p->util is skip-worktree */
286 if (p->util)
Nguyễn Thái Ngọc Duyb4d16902009-08-20 20:46:58 +0700287 continue;
Linus Torvaldsd177cab2008-05-09 09:11:43 -0700288
Johannes Schindelinc455c872008-07-21 19:03:49 +0100289 if (!lstat(p->string, &st)) {
290 if (add_to_cache(p->string, &st, 0))
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000291 die(_("updating files failed"));
Alex Riesen960b8ad2008-05-12 19:57:45 +0200292 } else
Johannes Schindelinc455c872008-07-21 19:03:49 +0100293 remove_file_from_cache(p->string);
Junio C Hamano28886052007-11-18 01:52:55 -0800294 }
295}
296
Linus Torvaldsfa9dcf82008-01-13 00:30:56 -0800297static void create_base_index(void)
298{
299 struct tree *tree;
300 struct unpack_trees_options opts;
301 struct tree_desc t;
302
303 if (initial_commit) {
304 discard_cache();
305 return;
306 }
307
308 memset(&opts, 0, sizeof(opts));
309 opts.head_idx = 1;
310 opts.index_only = 1;
311 opts.merge = 1;
Linus Torvalds34110cd2008-03-06 18:12:28 -0800312 opts.src_index = &the_index;
313 opts.dst_index = &the_index;
Linus Torvaldsfa9dcf82008-01-13 00:30:56 -0800314
315 opts.fn = oneway_merge;
316 tree = parse_tree_indirect(head_sha1);
317 if (!tree)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000318 die(_("failed to unpack HEAD tree object"));
Linus Torvaldsfa9dcf82008-01-13 00:30:56 -0800319 parse_tree(tree);
320 init_tree_desc(&t, tree->buffer, tree->size);
Daniel Barkalow203a2fe2008-02-07 11:39:48 -0500321 if (unpack_trees(1, &t, &opts))
322 exit(128); /* We've already reported the error, finish dying */
Linus Torvaldsfa9dcf82008-01-13 00:30:56 -0800323}
324
Matthieu Moyd38a30d2010-01-12 10:54:44 +0100325static void refresh_cache_or_die(int refresh_flags)
326{
327 /*
328 * refresh_flags contains REFRESH_QUIET, so the only errors
329 * are for unmerged entries.
330 */
331 if (refresh_cache(refresh_flags | REFRESH_IN_PORCELAIN))
332 die_resolve_conflict("commit");
333}
334
Junio C Hamano50b7e702009-08-04 23:49:33 -0700335static char *prepare_index(int argc, const char **argv, const char *prefix, int is_status)
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500336{
337 int fd;
Johannes Schindelinc455c872008-07-21 19:03:49 +0100338 struct string_list partial;
Junio C Hamano28886052007-11-18 01:52:55 -0800339 const char **pathspec = NULL;
Conrad Irwin1020d082011-05-06 22:59:59 -0700340 char *old_index_env = NULL;
Junio C Hamano50b7e702009-08-04 23:49:33 -0700341 int refresh_flags = REFRESH_QUIET;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500342
Junio C Hamano50b7e702009-08-04 23:49:33 -0700343 if (is_status)
344 refresh_flags |= REFRESH_UNMERGED;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500345
Junio C Hamanof64fe7b2007-11-25 08:46:29 -0800346 if (*argv)
347 pathspec = get_pathspec(prefix, argv);
Junio C Hamano28886052007-11-18 01:52:55 -0800348
Linus Torvalds671c9b72008-11-13 16:36:30 -0800349 if (read_cache_preload(pathspec) < 0)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000350 die(_("index file corrupt"));
Linus Torvalds671c9b72008-11-13 16:36:30 -0800351
Conrad Irwin1020d082011-05-06 22:59:59 -0700352 if (interactive) {
353 fd = hold_locked_index(&index_lock, 1);
354
355 refresh_cache_or_die(refresh_flags);
356
357 if (write_cache(fd, active_cache, active_nr) ||
358 close_lock_file(&index_lock))
359 die(_("unable to create temporary index"));
360
361 old_index_env = getenv(INDEX_ENVIRONMENT);
362 setenv(INDEX_ENVIRONMENT, index_lock.filename, 1);
363
Conrad Irwinb4bd4662011-05-07 10:58:07 -0700364 if (interactive_add(argc, argv, prefix, patch_interactive) != 0)
Conrad Irwin1020d082011-05-06 22:59:59 -0700365 die(_("interactive add failed"));
366
367 if (old_index_env && *old_index_env)
368 setenv(INDEX_ENVIRONMENT, old_index_env, 1);
369 else
370 unsetenv(INDEX_ENVIRONMENT);
371
372 discard_cache();
373 read_cache_from(index_lock.filename);
374
375 commit_style = COMMIT_NORMAL;
376 return index_lock.filename;
377 }
378
Junio C Hamano28886052007-11-18 01:52:55 -0800379 /*
380 * Non partial, non as-is commit.
381 *
382 * (1) get the real index;
383 * (2) update the_index as necessary;
384 * (3) write the_index out to the real index (still locked);
385 * (4) return the name of the locked index file.
386 *
387 * The caller should run hooks on the locked real index, and
388 * (A) if all goes well, commit the real index;
389 * (B) on failure, rollback the real index.
390 */
391 if (all || (also && pathspec && *pathspec)) {
Markus Heidelberg1f2362a2010-04-02 14:27:19 +0200392 fd = hold_locked_index(&index_lock, 1);
Alex Riesen7ae02a32008-05-12 19:58:10 +0200393 add_files_to_cache(also ? prefix : NULL, pathspec, 0);
Matthieu Moyd38a30d2010-01-12 10:54:44 +0100394 refresh_cache_or_die(refresh_flags);
Brandon Casey4ed7cd32008-01-16 13:12:46 -0600395 if (write_cache(fd, active_cache, active_nr) ||
396 close_lock_file(&index_lock))
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000397 die(_("unable to write new_index file"));
Junio C Hamano28886052007-11-18 01:52:55 -0800398 commit_style = COMMIT_NORMAL;
399 return index_lock.filename;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500400 }
401
Junio C Hamano28886052007-11-18 01:52:55 -0800402 /*
403 * As-is commit.
404 *
405 * (1) return the name of the real index file.
406 *
Markus Heidelberg73276232010-04-02 14:27:18 +0200407 * The caller should run hooks on the real index,
408 * and create commit from the_index.
Junio C Hamano28886052007-11-18 01:52:55 -0800409 * We still need to refresh the index here.
410 */
411 if (!pathspec || !*pathspec) {
412 fd = hold_locked_index(&index_lock, 1);
Matthieu Moyd38a30d2010-01-12 10:54:44 +0100413 refresh_cache_or_die(refresh_flags);
Junio C Hamanod5f5d0a2010-07-06 21:53:11 -0700414 if (active_cache_changed) {
415 if (write_cache(fd, active_cache, active_nr) ||
416 commit_locked_index(&index_lock))
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000417 die(_("unable to write new_index file"));
Junio C Hamanod5f5d0a2010-07-06 21:53:11 -0700418 } else {
419 rollback_lock_file(&index_lock);
420 }
Junio C Hamano28886052007-11-18 01:52:55 -0800421 commit_style = COMMIT_AS_IS;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500422 return get_index_file();
423 }
424
Junio C Hamano28886052007-11-18 01:52:55 -0800425 /*
426 * A partial commit.
427 *
428 * (0) find the set of affected paths;
429 * (1) get lock on the real index file;
430 * (2) update the_index with the given paths;
431 * (3) write the_index out to the real index (still locked);
432 * (4) get lock on the false index file;
433 * (5) reset the_index from HEAD;
434 * (6) update the_index the same way as (2);
435 * (7) write the_index out to the false index file;
436 * (8) return the name of the false index file (still locked);
437 *
438 * The caller should run hooks on the locked false index, and
439 * create commit from it. Then
440 * (A) if all goes well, commit the real index;
441 * (B) on failure, rollback the real index;
442 * In either case, rollback the false index.
443 */
444 commit_style = COMMIT_PARTIAL;
445
Jay Soffian37f7a852011-02-19 23:12:29 -0500446 if (whence != FROM_COMMIT)
Junio C Hamano6c80cd22011-04-01 17:55:55 -0700447 die(_("cannot do a partial commit during a %s."), whence_s());
Junio C Hamano28886052007-11-18 01:52:55 -0800448
449 memset(&partial, 0, sizeof(partial));
Johannes Schindelinc455c872008-07-21 19:03:49 +0100450 partial.strdup_strings = 1;
Junio C Hamano28886052007-11-18 01:52:55 -0800451 if (list_paths(&partial, initial_commit ? NULL : "HEAD", prefix, pathspec))
452 exit(1);
453
454 discard_cache();
455 if (read_cache() < 0)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000456 die(_("cannot read the index"));
Junio C Hamano28886052007-11-18 01:52:55 -0800457
458 fd = hold_locked_index(&index_lock, 1);
459 add_remove_files(&partial);
Kristian Høgsbergef12b502007-11-12 15:48:22 -0500460 refresh_cache(REFRESH_QUIET);
Brandon Casey4ed7cd32008-01-16 13:12:46 -0600461 if (write_cache(fd, active_cache, active_nr) ||
462 close_lock_file(&index_lock))
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000463 die(_("unable to write new_index file"));
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500464
Junio C Hamano28886052007-11-18 01:52:55 -0800465 fd = hold_lock_file_for_update(&false_lock,
Junio C Hamanoa1574002008-10-21 17:58:11 -0700466 git_path("next-index-%"PRIuMAX,
467 (uintmax_t) getpid()),
Junio C Hamanoacd3b9e2008-10-17 15:44:39 -0700468 LOCK_DIE_ON_ERROR);
Linus Torvaldsfa9dcf82008-01-13 00:30:56 -0800469
470 create_base_index();
Junio C Hamano28886052007-11-18 01:52:55 -0800471 add_remove_files(&partial);
Kristian Høgsbergd37d3202007-11-09 11:40:27 -0500472 refresh_cache(REFRESH_QUIET);
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500473
Brandon Casey4ed7cd32008-01-16 13:12:46 -0600474 if (write_cache(fd, active_cache, active_nr) ||
475 close_lock_file(&false_lock))
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000476 die(_("unable to write temporary index file"));
Jeff King959ba672008-02-14 12:18:23 -0500477
478 discard_cache();
479 read_cache_from(false_lock.filename);
480
Junio C Hamano28886052007-11-18 01:52:55 -0800481 return false_lock.filename;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500482}
483
Junio C Hamanod249b092009-08-09 21:59:30 -0700484static int run_status(FILE *fp, const char *index_file, const char *prefix, int nowarn,
485 struct wt_status *s)
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500486{
Junio C Hamano76e2f7c2009-08-07 23:31:57 -0700487 unsigned char sha1[20];
488
Junio C Hamanod249b092009-08-09 21:59:30 -0700489 if (s->relative_paths)
490 s->prefix = prefix;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500491
492 if (amend) {
Junio C Hamanod249b092009-08-09 21:59:30 -0700493 s->amend = 1;
494 s->reference = "HEAD^1";
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500495 }
Junio C Hamanod249b092009-08-09 21:59:30 -0700496 s->verbose = verbose;
497 s->index_file = index_file;
498 s->fp = fp;
499 s->nowarn = nowarn;
Junio C Hamano76e2f7c2009-08-07 23:31:57 -0700500 s->is_initial = get_sha1(s->reference, sha1) ? 1 : 0;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500501
Junio C Hamano76e2f7c2009-08-07 23:31:57 -0700502 wt_status_collect(s);
Jeff King7c9f7032009-09-05 04:59:56 -0400503
504 switch (status_format) {
505 case STATUS_FORMAT_SHORT:
Daniel Knittl-Frank05a59a02010-05-25 15:45:51 +0200506 wt_shortstatus_print(s, null_termination, status_show_branch);
Jeff King7c9f7032009-09-05 04:59:56 -0400507 break;
508 case STATUS_FORMAT_PORCELAIN:
Jeff King4a7cc2f2009-12-07 00:17:15 -0500509 wt_porcelain_print(s, null_termination);
Jeff King7c9f7032009-09-05 04:59:56 -0400510 break;
511 case STATUS_FORMAT_LONG:
512 wt_status_print(s);
513 break;
514 }
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500515
Junio C Hamanod249b092009-08-09 21:59:30 -0700516 return s->commitable;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500517}
518
Paolo Bonziniec84bd02008-02-05 11:01:46 +0100519static int is_a_merge(const unsigned char *sha1)
520{
521 struct commit *commit = lookup_commit(sha1);
522 if (!commit || parse_commit(commit))
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000523 die(_("could not parse HEAD commit"));
Paolo Bonziniec84bd02008-02-05 11:01:46 +0100524 return !!(commit->parents && commit->parents->next);
525}
526
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500527static const char sign_off_header[] = "Signed-off-by: ";
528
Junio C Hamano4c28e4a2010-12-20 17:00:36 -0800529static void determine_author_info(struct strbuf *author_ident)
Santi Béjara45d46b2008-05-04 18:04:49 +0200530{
531 char *name, *email, *date;
532
533 name = getenv("GIT_AUTHOR_NAME");
534 email = getenv("GIT_AUTHOR_EMAIL");
535 date = getenv("GIT_AUTHOR_DATE");
536
Jay Soffian37f7a852011-02-19 23:12:29 -0500537 if (author_message) {
Santi Béjara45d46b2008-05-04 18:04:49 +0200538 const char *a, *lb, *rb, *eol;
539
Jay Soffian37f7a852011-02-19 23:12:29 -0500540 a = strstr(author_message_buffer, "\nauthor ");
Santi Béjara45d46b2008-05-04 18:04:49 +0200541 if (!a)
Junio C Hamano6c80cd22011-04-01 17:55:55 -0700542 die(_("invalid commit: %s"), author_message);
Santi Béjara45d46b2008-05-04 18:04:49 +0200543
Jonathan Niederfb7749e2010-05-02 03:57:12 -0500544 lb = strchrnul(a + strlen("\nauthor "), '<');
545 rb = strchrnul(lb, '>');
546 eol = strchrnul(rb, '\n');
547 if (!*lb || !*rb || !*eol)
Junio C Hamano6c80cd22011-04-01 17:55:55 -0700548 die(_("invalid commit: %s"), author_message);
Santi Béjara45d46b2008-05-04 18:04:49 +0200549
Jonathan Niederfb7749e2010-05-02 03:57:12 -0500550 if (lb == a + strlen("\nauthor "))
551 /* \nauthor <foo@example.com> */
552 name = xcalloc(1, 1);
553 else
554 name = xmemdupz(a + strlen("\nauthor "),
555 (lb - strlen(" ") -
556 (a + strlen("\nauthor "))));
557 email = xmemdupz(lb + strlen("<"), rb - (lb + strlen("<")));
558 date = xmemdupz(rb + strlen("> "), eol - (rb + strlen("> ")));
Santi Béjara45d46b2008-05-04 18:04:49 +0200559 }
560
561 if (force_author) {
562 const char *lb = strstr(force_author, " <");
563 const char *rb = strchr(force_author, '>');
564
565 if (!lb || !rb)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000566 die(_("malformed --author parameter"));
Santi Béjara45d46b2008-05-04 18:04:49 +0200567 name = xstrndup(force_author, lb - force_author);
568 email = xstrndup(lb + 2, rb - (lb + 2));
569 }
570
Miklos Vajna02b47cd2009-12-02 23:16:18 +0100571 if (force_date)
572 date = force_date;
Junio C Hamano4c28e4a2010-12-20 17:00:36 -0800573 strbuf_addstr(author_ident, fmt_ident(name, email, date,
574 IDENT_ERROR_ON_NO_NAME));
Santi Béjara45d46b2008-05-04 18:04:49 +0200575}
576
David Brownc1e01b02009-10-28 10:13:44 -0700577static int ends_rfc2822_footer(struct strbuf *sb)
578{
579 int ch;
580 int hit = 0;
581 int i, j, k;
582 int len = sb->len;
583 int first = 1;
584 const char *buf = sb->buf;
585
586 for (i = len - 1; i > 0; i--) {
587 if (hit && buf[i] == '\n')
588 break;
589 hit = (buf[i] == '\n');
590 }
591
592 while (i < len - 1 && buf[i] == '\n')
593 i++;
594
595 for (; i < len; i = k) {
596 for (k = i; k < len && buf[k] != '\n'; k++)
597 ; /* do nothing */
598 k++;
599
600 if ((buf[k] == ' ' || buf[k] == '\t') && !first)
601 continue;
602
603 first = 0;
604
605 for (j = 0; i + j < len; j++) {
606 ch = buf[i + j];
607 if (ch == ':')
608 break;
609 if (isalnum(ch) ||
610 (ch == '-'))
611 continue;
612 return 0;
613 }
614 }
615 return 1;
616}
617
Junio C Hamano4c28e4a2010-12-20 17:00:36 -0800618static char *cut_ident_timestamp_part(char *string)
619{
620 char *ket = strrchr(string, '>');
621 if (!ket || ket[1] != ' ')
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000622 die(_("Malformed ident string: '%s'"), string);
Junio C Hamano4c28e4a2010-12-20 17:00:36 -0800623 *++ket = '\0';
624 return ket;
625}
626
Junio C Hamanod249b092009-08-09 21:59:30 -0700627static int prepare_to_commit(const char *index_file, const char *prefix,
Junio C Hamano4c28e4a2010-12-20 17:00:36 -0800628 struct wt_status *s,
629 struct strbuf *author_ident)
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500630{
631 struct stat statbuf;
Junio C Hamano4c28e4a2010-12-20 17:00:36 -0800632 struct strbuf committer_ident = STRBUF_INIT;
Junio C Hamanobc5d2482007-11-18 12:01:38 -0800633 int commitable, saved_color_setting;
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500634 struct strbuf sb = STRBUF_INIT;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500635 char *buffer;
Paolo Bonzini8089c852008-02-05 08:04:18 +0100636 const char *hook_arg1 = NULL;
637 const char *hook_arg2 = NULL;
Santi Béjarbb1ae3f2008-05-04 18:04:51 +0200638 int ident_shown = 0;
Boris Faure8b1ae672011-05-08 12:31:02 +0200639 int clean_message_contents = (cleanup_mode != CLEANUP_NONE);
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500640
Paolo Bonziniec84bd02008-02-05 11:01:46 +0100641 if (!no_verify && run_hook(index_file, "pre-commit", NULL))
642 return 0;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500643
Pat Notz89ac1222010-11-02 13:59:11 -0600644 if (squash_message) {
645 /*
646 * Insert the proper subject line before other commit
647 * message options add their content.
648 */
649 if (use_message && !strcmp(use_message, squash_message))
650 strbuf_addstr(&sb, "squash! ");
651 else {
652 struct pretty_print_context ctx = {0};
653 struct commit *c;
654 c = lookup_commit_reference_by_name(squash_message);
655 if (!c)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000656 die(_("could not lookup commit %s"), squash_message);
Pat Notz89ac1222010-11-02 13:59:11 -0600657 ctx.output_encoding = get_commit_output_encoding();
658 format_commit_message(c, "squash! %s\n\n", &sb,
659 &ctx);
660 }
661 }
662
Johannes Schindelinf9568532007-11-11 17:36:39 +0000663 if (message.len) {
664 strbuf_addbuf(&sb, &message);
Paolo Bonzini8089c852008-02-05 08:04:18 +0100665 hook_arg1 = "message";
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500666 } else if (logfile && !strcmp(logfile, "-")) {
667 if (isatty(0))
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000668 fprintf(stderr, _("(reading log message from standard input)\n"));
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500669 if (strbuf_read(&sb, 0, 0) < 0)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000670 die_errno(_("could not read log from standard input"));
Paolo Bonzini8089c852008-02-05 08:04:18 +0100671 hook_arg1 = "message";
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500672 } else if (logfile) {
673 if (strbuf_read_file(&sb, logfile, 0) < 0)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000674 die_errno(_("could not read log file '%s'"),
Thomas Rastd824cbb2009-06-27 17:58:46 +0200675 logfile);
Paolo Bonzini8089c852008-02-05 08:04:18 +0100676 hook_arg1 = "message";
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500677 } else if (use_message) {
678 buffer = strstr(use_message_buffer, "\n\n");
679 if (!buffer || buffer[2] == '\0')
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000680 die(_("commit has empty message"));
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500681 strbuf_add(&sb, buffer + 2, strlen(buffer + 2));
Paolo Bonzini8089c852008-02-05 08:04:18 +0100682 hook_arg1 = "commit";
683 hook_arg2 = use_message;
Pat Notzd71b8ba2010-11-02 13:59:09 -0600684 } else if (fixup_message) {
685 struct pretty_print_context ctx = {0};
686 struct commit *commit;
687 commit = lookup_commit_reference_by_name(fixup_message);
688 if (!commit)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000689 die(_("could not lookup commit %s"), fixup_message);
Pat Notzd71b8ba2010-11-02 13:59:09 -0600690 ctx.output_encoding = get_commit_output_encoding();
691 format_commit_message(commit, "fixup! %s\n\n",
692 &sb, &ctx);
693 hook_arg1 = "message";
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500694 } else if (!stat(git_path("MERGE_MSG"), &statbuf)) {
695 if (strbuf_read_file(&sb, git_path("MERGE_MSG"), 0) < 0)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000696 die_errno(_("could not read MERGE_MSG"));
Paolo Bonzini8089c852008-02-05 08:04:18 +0100697 hook_arg1 = "merge";
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500698 } else if (!stat(git_path("SQUASH_MSG"), &statbuf)) {
699 if (strbuf_read_file(&sb, git_path("SQUASH_MSG"), 0) < 0)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000700 die_errno(_("could not read SQUASH_MSG"));
Paolo Bonzini8089c852008-02-05 08:04:18 +0100701 hook_arg1 = "squash";
Jonathan Nieder2140b142011-02-25 03:07:57 -0600702 } else if (template_file) {
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500703 if (strbuf_read_file(&sb, template_file, 0) < 0)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000704 die_errno(_("could not read '%s'"), template_file);
Paolo Bonzini8089c852008-02-05 08:04:18 +0100705 hook_arg1 = "template";
Boris Faure8b1ae672011-05-08 12:31:02 +0200706 clean_message_contents = 0;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500707 }
708
Paolo Bonzini8089c852008-02-05 08:04:18 +0100709 /*
Jay Soffian37f7a852011-02-19 23:12:29 -0500710 * The remaining cases don't modify the template message, but
711 * just set the argument(s) to the prepare-commit-msg hook.
Paolo Bonzini8089c852008-02-05 08:04:18 +0100712 */
Jay Soffian37f7a852011-02-19 23:12:29 -0500713 else if (whence == FROM_MERGE)
Paolo Bonzini8089c852008-02-05 08:04:18 +0100714 hook_arg1 = "merge";
Jay Soffian37f7a852011-02-19 23:12:29 -0500715 else if (whence == FROM_CHERRY_PICK) {
716 hook_arg1 = "commit";
717 hook_arg2 = "CHERRY_PICK_HEAD";
718 }
Paolo Bonzini8089c852008-02-05 08:04:18 +0100719
Pat Notz89ac1222010-11-02 13:59:11 -0600720 if (squash_message) {
721 /*
722 * If squash_commit was used for the commit subject,
723 * then we're possibly hijacking other commit log options.
724 * Reset the hook args to tell the real story.
725 */
726 hook_arg1 = "message";
727 hook_arg2 = "";
728 }
729
Jonathan Nieder37f30122011-02-25 23:10:49 -0600730 s->fp = fopen(git_path(commit_editmsg), "w");
731 if (s->fp == NULL)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000732 die_errno(_("could not open '%s'"), git_path(commit_editmsg));
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500733
Boris Faure8b1ae672011-05-08 12:31:02 +0200734 if (clean_message_contents)
Alex Riesen5f065732007-12-22 19:46:24 +0100735 stripspace(&sb, 0);
Johannes Schindelin13208572007-11-11 17:35:58 +0000736
737 if (signoff) {
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500738 struct strbuf sob = STRBUF_INIT;
Johannes Schindelin13208572007-11-11 17:35:58 +0000739 int i;
740
Johannes Schindelin13208572007-11-11 17:35:58 +0000741 strbuf_addstr(&sob, sign_off_header);
Junio C Hamanod9ccfe72007-12-02 13:43:34 -0800742 strbuf_addstr(&sob, fmt_name(getenv("GIT_COMMITTER_NAME"),
743 getenv("GIT_COMMITTER_EMAIL")));
Johannes Schindelin13208572007-11-11 17:35:58 +0000744 strbuf_addch(&sob, '\n');
Johannes Schindelin13208572007-11-11 17:35:58 +0000745 for (i = sb.len - 1; i > 0 && sb.buf[i - 1] != '\n'; i--)
746 ; /* do nothing */
Johannes Schindelin21505542007-11-11 17:36:27 +0000747 if (prefixcmp(sb.buf + i, sob.buf)) {
Junio C Hamanoe5138432009-11-06 23:06:06 -0800748 if (!i || !ends_rfc2822_footer(&sb))
Johannes Schindelin21505542007-11-11 17:36:27 +0000749 strbuf_addch(&sb, '\n');
Johannes Schindelin13208572007-11-11 17:35:58 +0000750 strbuf_addbuf(&sb, &sob);
Johannes Schindelin21505542007-11-11 17:36:27 +0000751 }
Johannes Schindelin13208572007-11-11 17:35:58 +0000752 strbuf_release(&sob);
753 }
754
Jonathan Nieder37f30122011-02-25 23:10:49 -0600755 if (fwrite(sb.buf, 1, sb.len, s->fp) < sb.len)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000756 die_errno(_("could not write commit template"));
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500757
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500758 strbuf_release(&sb);
759
Junio C Hamano4c28e4a2010-12-20 17:00:36 -0800760 /* This checks and barfs if author is badly specified */
761 determine_author_info(author_ident);
Santi Béjare83dbe82008-05-04 18:04:50 +0200762
Santi Béjarbb1ae3f2008-05-04 18:04:51 +0200763 /* This checks if committer ident is explicitly given */
Junio C Hamano4c28e4a2010-12-20 17:00:36 -0800764 strbuf_addstr(&committer_ident, git_committer_info(0));
James P. Howard, IIbed575e2009-12-07 17:45:27 -0500765 if (use_editor && include_status) {
Junio C Hamano4c28e4a2010-12-20 17:00:36 -0800766 char *ai_tmp, *ci_tmp;
Jay Soffian37f7a852011-02-19 23:12:29 -0500767 if (whence != FROM_COMMIT)
Jonathan Niederb926c0d2011-02-25 23:11:37 -0600768 status_printf_ln(s, GIT_COLOR_NORMAL,
Ævar Arnfjörð Bjarmasonfe8165c2011-02-22 23:41:46 +0000769 _("\n"
Junio C Hamanof4784b32011-03-19 23:24:19 -0700770 "It looks like you may be committing a %s.\n"
Jonathan Niederb926c0d2011-02-25 23:11:37 -0600771 "If this is not correct, please remove the file\n"
772 " %s\n"
773 "and try again.\n"
Ævar Arnfjörð Bjarmasonfe8165c2011-02-22 23:41:46 +0000774 ""),
Jay Soffian37f7a852011-02-19 23:12:29 -0500775 whence_s(),
776 git_path(whence == FROM_MERGE
777 ? "MERGE_HEAD"
778 : "CHERRY_PICK_HEAD"));
Paolo Bonziniec84bd02008-02-05 11:01:46 +0100779
Jonathan Niederb926c0d2011-02-25 23:11:37 -0600780 fprintf(s->fp, "\n");
781 status_printf(s, GIT_COLOR_NORMAL,
Ævar Arnfjörð Bjarmason0b430a12011-02-22 23:41:48 +0000782 _("Please enter the commit message for your changes."));
Paolo Bonziniec84bd02008-02-05 11:01:46 +0100783 if (cleanup_mode == CLEANUP_ALL)
Jonathan Niederb926c0d2011-02-25 23:11:37 -0600784 status_printf_more(s, GIT_COLOR_NORMAL,
Ævar Arnfjörð Bjarmason0b430a12011-02-22 23:41:48 +0000785 _(" Lines starting\n"
Jonathan Niederb926c0d2011-02-25 23:11:37 -0600786 "with '#' will be ignored, and an empty"
Ævar Arnfjörð Bjarmason0b430a12011-02-22 23:41:48 +0000787 " message aborts the commit.\n"));
Paolo Bonziniec84bd02008-02-05 11:01:46 +0100788 else /* CLEANUP_SPACE, that is. */
Jonathan Niederb926c0d2011-02-25 23:11:37 -0600789 status_printf_more(s, GIT_COLOR_NORMAL,
Ævar Arnfjörð Bjarmason0b430a12011-02-22 23:41:48 +0000790 _(" Lines starting\n"
Jonathan Niederb926c0d2011-02-25 23:11:37 -0600791 "with '#' will be kept; you may remove them"
Jeff Kingfdc7c812008-07-31 03:36:09 -0400792 " yourself if you want to.\n"
Ævar Arnfjörð Bjarmason0b430a12011-02-22 23:41:48 +0000793 "An empty message aborts the commit.\n"));
Paolo Bonziniec84bd02008-02-05 11:01:46 +0100794 if (only_include_assumed)
Jonathan Niederb926c0d2011-02-25 23:11:37 -0600795 status_printf_ln(s, GIT_COLOR_NORMAL,
796 "%s", only_include_assumed);
Paolo Bonziniec84bd02008-02-05 11:01:46 +0100797
Junio C Hamano4c28e4a2010-12-20 17:00:36 -0800798 ai_tmp = cut_ident_timestamp_part(author_ident->buf);
799 ci_tmp = cut_ident_timestamp_part(committer_ident.buf);
800 if (strcmp(author_ident->buf, committer_ident.buf))
Jonathan Niederb926c0d2011-02-25 23:11:37 -0600801 status_printf_ln(s, GIT_COLOR_NORMAL,
Ævar Arnfjörð Bjarmasonfe8165c2011-02-22 23:41:46 +0000802 _("%s"
803 "Author: %s"),
Jonathan Niederb926c0d2011-02-25 23:11:37 -0600804 ident_shown++ ? "" : "\n",
Junio C Hamano4c28e4a2010-12-20 17:00:36 -0800805 author_ident->buf);
Santi Béjare83dbe82008-05-04 18:04:50 +0200806
Junio C Hamano5aeb3a32010-01-17 13:54:28 -0800807 if (!user_ident_sufficiently_given())
Jonathan Niederb926c0d2011-02-25 23:11:37 -0600808 status_printf_ln(s, GIT_COLOR_NORMAL,
Ævar Arnfjörð Bjarmasonfe8165c2011-02-22 23:41:46 +0000809 _("%s"
810 "Committer: %s"),
Jonathan Niederb926c0d2011-02-25 23:11:37 -0600811 ident_shown++ ? "" : "\n",
Junio C Hamano4c28e4a2010-12-20 17:00:36 -0800812 committer_ident.buf);
Santi Béjarbb1ae3f2008-05-04 18:04:51 +0200813
814 if (ident_shown)
Jonathan Niederb926c0d2011-02-25 23:11:37 -0600815 status_printf_ln(s, GIT_COLOR_NORMAL, "");
Santi Béjarbb1ae3f2008-05-04 18:04:51 +0200816
Junio C Hamanod249b092009-08-09 21:59:30 -0700817 saved_color_setting = s->use_color;
818 s->use_color = 0;
Jonathan Nieder37f30122011-02-25 23:10:49 -0600819 commitable = run_status(s->fp, index_file, prefix, 1, s);
Junio C Hamanod249b092009-08-09 21:59:30 -0700820 s->use_color = saved_color_setting;
Junio C Hamano4c28e4a2010-12-20 17:00:36 -0800821
822 *ai_tmp = ' ';
823 *ci_tmp = ' ';
Paolo Bonziniec84bd02008-02-05 11:01:46 +0100824 } else {
Junio C Hamanod616a232007-12-22 19:22:29 -0800825 unsigned char sha1[20];
Junio C Hamanofbcf1182007-12-19 19:23:03 -0800826 const char *parent = "HEAD";
Alex Riesen71686242007-11-28 22:13:08 +0100827
Alex Riesen71686242007-11-28 22:13:08 +0100828 if (!active_nr && read_cache() < 0)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000829 die(_("Cannot read index"));
Alex Riesen71686242007-11-28 22:13:08 +0100830
Junio C Hamanofbcf1182007-12-19 19:23:03 -0800831 if (amend)
832 parent = "HEAD^1";
833
Junio C Hamanod616a232007-12-22 19:22:29 -0800834 if (get_sha1(parent, sha1))
Paolo Bonziniec84bd02008-02-05 11:01:46 +0100835 commitable = !!active_nr;
Stephan Beyer75f3ff22009-02-10 15:30:35 +0100836 else
837 commitable = index_differs_from(parent, 0);
Alex Riesen71686242007-11-28 22:13:08 +0100838 }
Junio C Hamano4c28e4a2010-12-20 17:00:36 -0800839 strbuf_release(&committer_ident);
Alex Riesen71686242007-11-28 22:13:08 +0100840
Jonathan Nieder37f30122011-02-25 23:10:49 -0600841 fclose(s->fp);
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500842
Jay Soffian37f7a852011-02-19 23:12:29 -0500843 /*
844 * Reject an attempt to record a non-merge empty commit without
845 * explicit --allow-empty. In the cherry-pick case, it may be
846 * empty due to conflict resolution, which the user should okay.
847 */
848 if (!commitable && whence != FROM_MERGE && !allow_empty &&
Paolo Bonziniec84bd02008-02-05 11:01:46 +0100849 !(amend && is_a_merge(head_sha1))) {
Junio C Hamanod249b092009-08-09 21:59:30 -0700850 run_status(stdout, index_file, prefix, 0, s);
Jeff Kingf197ed22010-06-06 20:41:46 -0400851 if (amend)
Ævar Arnfjörð Bjarmasonfc88e312011-02-22 23:41:49 +0000852 fputs(_(empty_amend_advice), stderr);
Jay Soffian37f7a852011-02-19 23:12:29 -0500853 else if (whence == FROM_CHERRY_PICK)
Junio C Hamano6c80cd22011-04-01 17:55:55 -0700854 fputs(_(empty_cherry_pick_advice), stderr);
Paolo Bonziniec84bd02008-02-05 11:01:46 +0100855 return 0;
856 }
857
858 /*
859 * Re-read the index as pre-commit hook could have updated it,
860 * and write it out as a tree. We must do this before we invoke
861 * the editor and after we invoke run_status above.
862 */
863 discard_cache();
864 read_cache_from(index_file);
865 if (!active_cache_tree)
866 active_cache_tree = cache_tree();
867 if (cache_tree_update(active_cache_tree,
868 active_cache, active_nr, 0, 0) < 0) {
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000869 error(_("Error building trees"));
Paolo Bonziniec84bd02008-02-05 11:01:46 +0100870 return 0;
871 }
872
Paolo Bonzini8089c852008-02-05 08:04:18 +0100873 if (run_hook(index_file, "prepare-commit-msg",
874 git_path(commit_editmsg), hook_arg1, hook_arg2, NULL))
875 return 0;
876
Paolo Bonziniec84bd02008-02-05 11:01:46 +0100877 if (use_editor) {
878 char index[PATH_MAX];
Gary V. Vaughan66dbfd52010-05-14 09:31:33 +0000879 const char *env[2] = { NULL };
880 env[0] = index;
Paolo Bonziniec84bd02008-02-05 11:01:46 +0100881 snprintf(index, sizeof(index), "GIT_INDEX_FILE=%s", index_file);
Stephan Beyer71982032008-07-25 18:28:42 +0200882 if (launch_editor(git_path(commit_editmsg), NULL, env)) {
883 fprintf(stderr,
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000884 _("Please supply the message using either -m or -F option.\n"));
Stephan Beyer71982032008-07-25 18:28:42 +0200885 exit(1);
886 }
Paolo Bonziniec84bd02008-02-05 11:01:46 +0100887 }
888
889 if (!no_verify &&
890 run_hook(index_file, "commit-msg", git_path(commit_editmsg), NULL)) {
891 return 0;
892 }
893
894 return 1;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500895}
896
897/*
Miklos Vajna6bb6b032008-09-10 22:10:32 +0200898 * Find out if the message in the strbuf contains only whitespace and
899 * Signed-off-by lines.
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500900 */
Miklos Vajna6bb6b032008-09-10 22:10:32 +0200901static int message_is_empty(struct strbuf *sb)
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500902{
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500903 struct strbuf tmpl = STRBUF_INIT;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500904 const char *nl;
Miklos Vajna6bb6b032008-09-10 22:10:32 +0200905 int eol, i, start = 0;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500906
Alex Riesen5f065732007-12-22 19:46:24 +0100907 if (cleanup_mode == CLEANUP_NONE && sb->len)
908 return 0;
909
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500910 /* See if the template is just a prefix of the message. */
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500911 if (template_file && strbuf_read_file(&tmpl, template_file, 0) > 0) {
Alex Riesen5f065732007-12-22 19:46:24 +0100912 stripspace(&tmpl, cleanup_mode == CLEANUP_ALL);
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -0500913 if (start + tmpl.len <= sb->len &&
914 memcmp(tmpl.buf, sb->buf + start, tmpl.len) == 0)
915 start += tmpl.len;
916 }
917 strbuf_release(&tmpl);
918
919 /* Check if the rest is just whitespace and Signed-of-by's. */
920 for (i = start; i < sb->len; i++) {
921 nl = memchr(sb->buf + i, '\n', sb->len - i);
922 if (nl)
923 eol = nl - sb->buf;
924 else
925 eol = sb->len;
926
927 if (strlen(sign_off_header) <= eol - i &&
928 !prefixcmp(sb->buf + i, sign_off_header)) {
929 i = eol;
930 continue;
931 }
932 while (i < eol)
933 if (!isspace(sb->buf[i++]))
934 return 0;
935 }
936
937 return 1;
938}
939
Junio C Hamano146ea062008-08-26 23:13:13 -0700940static const char *find_author_by_nickname(const char *name)
941{
942 struct rev_info revs;
943 struct commit *commit;
944 struct strbuf buf = STRBUF_INIT;
945 const char *av[20];
946 int ac = 0;
947
948 init_revisions(&revs, NULL);
949 strbuf_addf(&buf, "--author=%s", name);
950 av[++ac] = "--all";
951 av[++ac] = "-i";
952 av[++ac] = buf.buf;
953 av[++ac] = NULL;
954 setup_revisions(ac, av, &revs, NULL);
955 prepare_revision_walk(&revs);
956 commit = get_revision(&revs);
957 if (commit) {
Thomas Rastdd2e7942009-10-19 17:48:08 +0200958 struct pretty_print_context ctx = {0};
959 ctx.date_mode = DATE_NORMAL;
Junio C Hamano146ea062008-08-26 23:13:13 -0700960 strbuf_release(&buf);
Thomas Rastdd2e7942009-10-19 17:48:08 +0200961 format_commit_message(commit, "%an <%ae>", &buf, &ctx);
Junio C Hamano146ea062008-08-26 23:13:13 -0700962 return strbuf_detach(&buf, NULL);
963 }
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000964 die(_("No existing author found with '%s'"), name);
Junio C Hamano146ea062008-08-26 23:13:13 -0700965}
966
Junio C Hamano76e2f7c2009-08-07 23:31:57 -0700967
968static void handle_untracked_files_arg(struct wt_status *s)
969{
970 if (!untracked_files_arg)
971 ; /* default already initialized */
972 else if (!strcmp(untracked_files_arg, "no"))
973 s->show_untracked_files = SHOW_NO_UNTRACKED_FILES;
974 else if (!strcmp(untracked_files_arg, "normal"))
975 s->show_untracked_files = SHOW_NORMAL_UNTRACKED_FILES;
976 else if (!strcmp(untracked_files_arg, "all"))
977 s->show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
978 else
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +0000979 die(_("Invalid untracked files mode '%s'"), untracked_files_arg);
Junio C Hamano76e2f7c2009-08-07 23:31:57 -0700980}
981
Jay Soffian37f7a852011-02-19 23:12:29 -0500982static const char *read_commit_message(const char *name)
983{
984 const char *out_enc, *out;
985 struct commit *commit;
986
987 commit = lookup_commit_reference_by_name(name);
988 if (!commit)
Junio C Hamano6c80cd22011-04-01 17:55:55 -0700989 die(_("could not lookup commit %s"), name);
Jay Soffian37f7a852011-02-19 23:12:29 -0500990 out_enc = get_commit_output_encoding();
991 out = logmsg_reencode(commit, out_enc);
992
993 /*
994 * If we failed to reencode the buffer, just copy it
995 * byte for byte so the user can try to fix it up.
996 * This also handles the case where input and output
997 * encodings are identical.
998 */
999 if (out == NULL)
1000 out = xstrdup(commit->buffer);
1001 return out;
1002}
1003
Shawn Bohrer2f02b252007-12-02 23:02:09 -06001004static int parse_and_validate_options(int argc, const char *argv[],
Junio C Hamanodbd0f5c2008-08-06 11:43:47 -07001005 const char * const usage[],
Junio C Hamanod249b092009-08-09 21:59:30 -07001006 const char *prefix,
1007 struct wt_status *s)
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001008{
1009 int f = 0;
1010
Stephen Boyd37782922009-05-23 11:53:12 -07001011 argc = parse_options(argc, argv, prefix, builtin_commit_options, usage,
1012 0);
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001013
Junio C Hamano146ea062008-08-26 23:13:13 -07001014 if (force_author && !strchr(force_author, '>'))
1015 force_author = find_author_by_nickname(force_author);
1016
Erick Mattosc51f6ce2009-11-04 01:20:11 -02001017 if (force_author && renew_authorship)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001018 die(_("Using both --reset-author and --author does not make sense"));
Erick Mattosc51f6ce2009-11-04 01:20:11 -02001019
Pat Notzd71b8ba2010-11-02 13:59:09 -06001020 if (logfile || message.len || use_message || fixup_message)
Junio C Hamano48034662007-12-22 19:25:37 -08001021 use_editor = 0;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001022 if (edit_flag)
Junio C Hamano48034662007-12-22 19:25:37 -08001023 use_editor = 1;
Paolo Bonzini406400c2008-02-05 11:01:45 +01001024 if (!use_editor)
1025 setenv("GIT_EDITOR", ":", 1);
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001026
1027 if (get_sha1("HEAD", head_sha1))
1028 initial_commit = 1;
1029
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001030 /* Sanity check options */
1031 if (amend && initial_commit)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001032 die(_("You have nothing to amend."));
Jay Soffian37f7a852011-02-19 23:12:29 -05001033 if (amend && whence != FROM_COMMIT)
Junio C Hamano6c80cd22011-04-01 17:55:55 -07001034 die(_("You are in the middle of a %s -- cannot amend."), whence_s());
Pat Notz89ac1222010-11-02 13:59:11 -06001035 if (fixup_message && squash_message)
Ævar Arnfjörð Bjarmason9c227652011-02-22 23:41:45 +00001036 die(_("Options --squash and --fixup cannot be used together"));
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001037 if (use_message)
1038 f++;
1039 if (edit_message)
1040 f++;
Pat Notzd71b8ba2010-11-02 13:59:09 -06001041 if (fixup_message)
1042 f++;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001043 if (logfile)
1044 f++;
1045 if (f > 1)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001046 die(_("Only one of -c/-C/-F/--fixup can be used."));
Johannes Schindelinf9568532007-11-11 17:36:39 +00001047 if (message.len && f > 0)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001048 die((_("Option -m cannot be combined with -c/-C/-F/--fixup.")));
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001049 if (edit_message)
1050 use_message = edit_message;
Pat Notzd71b8ba2010-11-02 13:59:09 -06001051 if (amend && !use_message && !fixup_message)
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001052 use_message = "HEAD";
Jay Soffian37f7a852011-02-19 23:12:29 -05001053 if (!use_message && whence != FROM_CHERRY_PICK && renew_authorship)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001054 die(_("--reset-author can be used only with -C, -c or --amend."));
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001055 if (use_message) {
Jay Soffian37f7a852011-02-19 23:12:29 -05001056 use_message_buffer = read_commit_message(use_message);
1057 if (!renew_authorship) {
1058 author_message = use_message;
1059 author_message_buffer = use_message_buffer;
1060 }
1061 }
1062 if (whence == FROM_CHERRY_PICK && !renew_authorship) {
1063 author_message = "CHERRY_PICK_HEAD";
1064 author_message_buffer = read_commit_message(author_message);
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001065 }
1066
Conrad Irwinb4bd4662011-05-07 10:58:07 -07001067 if (patch_interactive)
1068 interactive = 1;
1069
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001070 if (!!also + !!only + !!all + !!interactive > 1)
Conrad Irwinb4bd4662011-05-07 10:58:07 -07001071 die(_("Only one of --include/--only/--all/--interactive/--patch can be used."));
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001072 if (argc == 0 && (also || (only && !amend)))
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001073 die(_("No paths with --include/--only does not make sense."));
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001074 if (argc == 0 && only && amend)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001075 only_include_assumed = _("Clever... amending the last one with dirty index.");
Johannes Sixt3c5283f2008-04-10 13:33:08 +02001076 if (argc > 0 && !also && !only)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001077 only_include_assumed = _("Explicit paths specified without -i nor -o; assuming --only paths...");
Alex Riesen5f065732007-12-22 19:46:24 +01001078 if (!cleanup_arg || !strcmp(cleanup_arg, "default"))
1079 cleanup_mode = use_editor ? CLEANUP_ALL : CLEANUP_SPACE;
1080 else if (!strcmp(cleanup_arg, "verbatim"))
1081 cleanup_mode = CLEANUP_NONE;
1082 else if (!strcmp(cleanup_arg, "whitespace"))
1083 cleanup_mode = CLEANUP_SPACE;
1084 else if (!strcmp(cleanup_arg, "strip"))
1085 cleanup_mode = CLEANUP_ALL;
1086 else
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001087 die(_("Invalid cleanup mode %s"), cleanup_arg);
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001088
Junio C Hamano76e2f7c2009-08-07 23:31:57 -07001089 handle_untracked_files_arg(s);
Marius Storm-Olsen4bfee302008-06-05 10:31:19 +02001090
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001091 if (all && argc > 0)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001092 die(_("Paths with -a does not make sense."));
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001093
Jeff King7c9f7032009-09-05 04:59:56 -04001094 if (null_termination && status_format == STATUS_FORMAT_LONG)
1095 status_format = STATUS_FORMAT_PORCELAIN;
1096 if (status_format != STATUS_FORMAT_LONG)
1097 dry_run = 1;
1098
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001099 return argc;
1100}
1101
Junio C Hamanod249b092009-08-09 21:59:30 -07001102static int dry_run_commit(int argc, const char **argv, const char *prefix,
1103 struct wt_status *s)
Junio C Hamano3a5d13a2009-08-07 23:03:36 -07001104{
1105 int commitable;
1106 const char *index_file;
1107
1108 index_file = prepare_index(argc, argv, prefix, 1);
Junio C Hamanod249b092009-08-09 21:59:30 -07001109 commitable = run_status(stdout, index_file, prefix, 0, s);
Junio C Hamano3a5d13a2009-08-07 23:03:36 -07001110 rollback_index_files();
1111
1112 return commitable ? 0 : 1;
1113}
1114
Junio C Hamanof766b362009-08-09 23:12:19 -07001115static int parse_status_slot(const char *var, int offset)
1116{
1117 if (!strcasecmp(var+offset, "header"))
1118 return WT_STATUS_HEADER;
Aleksi Aalto1d282322010-11-18 01:40:05 +02001119 if (!strcasecmp(var+offset, "branch"))
1120 return WT_STATUS_ONBRANCH;
Junio C Hamanof766b362009-08-09 23:12:19 -07001121 if (!strcasecmp(var+offset, "updated")
1122 || !strcasecmp(var+offset, "added"))
1123 return WT_STATUS_UPDATED;
1124 if (!strcasecmp(var+offset, "changed"))
1125 return WT_STATUS_CHANGED;
1126 if (!strcasecmp(var+offset, "untracked"))
1127 return WT_STATUS_UNTRACKED;
1128 if (!strcasecmp(var+offset, "nobranch"))
1129 return WT_STATUS_NOBRANCH;
1130 if (!strcasecmp(var+offset, "unmerged"))
1131 return WT_STATUS_UNMERGED;
Jeff King8b8e8622009-12-12 07:25:24 -05001132 return -1;
Junio C Hamanof766b362009-08-09 23:12:19 -07001133}
1134
1135static int git_status_config(const char *k, const char *v, void *cb)
1136{
1137 struct wt_status *s = cb;
1138
1139 if (!strcmp(k, "status.submodulesummary")) {
1140 int is_bool;
1141 s->submodule_summary = git_config_bool_or_int(k, v, &is_bool);
1142 if (is_bool && s->submodule_summary)
1143 s->submodule_summary = -1;
1144 return 0;
1145 }
1146 if (!strcmp(k, "status.color") || !strcmp(k, "color.status")) {
1147 s->use_color = git_config_colorbool(k, v, -1);
1148 return 0;
1149 }
1150 if (!prefixcmp(k, "status.color.") || !prefixcmp(k, "color.status.")) {
1151 int slot = parse_status_slot(k, 13);
Jeff King8b8e8622009-12-12 07:25:24 -05001152 if (slot < 0)
1153 return 0;
Junio C Hamanof766b362009-08-09 23:12:19 -07001154 if (!v)
1155 return config_error_nonbool(k);
1156 color_parse(v, k, s->color_palette[slot]);
1157 return 0;
1158 }
1159 if (!strcmp(k, "status.relativepaths")) {
1160 s->relative_paths = git_config_bool(k, v);
1161 return 0;
1162 }
1163 if (!strcmp(k, "status.showuntrackedfiles")) {
1164 if (!v)
1165 return config_error_nonbool(k);
1166 else if (!strcmp(v, "no"))
1167 s->show_untracked_files = SHOW_NO_UNTRACKED_FILES;
1168 else if (!strcmp(v, "normal"))
1169 s->show_untracked_files = SHOW_NORMAL_UNTRACKED_FILES;
1170 else if (!strcmp(v, "all"))
1171 s->show_untracked_files = SHOW_ALL_UNTRACKED_FILES;
1172 else
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001173 return error(_("Invalid untracked files mode '%s'"), v);
Junio C Hamanof766b362009-08-09 23:12:19 -07001174 return 0;
1175 }
1176 return git_diff_ui_config(k, v, NULL);
1177}
1178
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001179int cmd_status(int argc, const char **argv, const char *prefix)
1180{
Junio C Hamanod249b092009-08-09 21:59:30 -07001181 struct wt_status s;
Markus Heidelberg4bb66442010-04-02 23:44:21 +02001182 int fd;
Junio C Hamano76e2f7c2009-08-07 23:31:57 -07001183 unsigned char sha1[20];
Junio C Hamano9e4b7ab2009-08-15 02:27:39 -07001184 static struct option builtin_status_options[] = {
René Scharfefd038812010-11-08 18:56:39 +01001185 OPT__VERBOSE(&verbose, "be verbose"),
Jeff Kingdd2be242009-09-05 04:54:14 -04001186 OPT_SET_INT('s', "short", &status_format,
1187 "show status concisely", STATUS_FORMAT_SHORT),
Daniel Knittl-Frank05a59a02010-05-25 15:45:51 +02001188 OPT_BOOLEAN('b', "branch", &status_show_branch,
1189 "show branch information"),
Jeff King6f157872009-09-05 04:55:37 -04001190 OPT_SET_INT(0, "porcelain", &status_format,
Michael J Gruberba9d7fe2011-02-15 14:09:05 +01001191 "machine-readable output",
Jeff King6f157872009-09-05 04:55:37 -04001192 STATUS_FORMAT_PORCELAIN),
Junio C Hamano173e6c82009-08-04 23:55:22 -07001193 OPT_BOOLEAN('z', "null", &null_termination,
1194 "terminate entries with NUL"),
Junio C Hamano76e2f7c2009-08-07 23:31:57 -07001195 { OPTION_STRING, 'u', "untracked-files", &untracked_files_arg,
1196 "mode",
1197 "show untracked files, optional modes: all, normal, no. (Default: all)",
1198 PARSE_OPT_OPTARG, NULL, (intptr_t)"all" },
Junio C Hamano2381e392010-04-10 00:33:17 -07001199 OPT_BOOLEAN(0, "ignored", &show_ignored_in_status,
1200 "show ignored files"),
Jens Lehmann46a958b2010-06-25 16:56:47 +02001201 { OPTION_STRING, 0, "ignore-submodules", &ignore_submodule_arg, "when",
1202 "ignore changes to submodules, optional when: all, dirty, untracked. (Default: all)",
1203 PARSE_OPT_OPTARG, NULL, (intptr_t)"all" },
Junio C Hamano76e2f7c2009-08-07 23:31:57 -07001204 OPT_END(),
1205 };
1206
Nguyễn Thái Ngọc Duy5d3dd912010-10-22 01:45:47 -05001207 if (argc == 2 && !strcmp(argv[1], "-h"))
1208 usage_with_options(builtin_status_usage, builtin_status_options);
1209
Junio C Hamanod249b092009-08-09 21:59:30 -07001210 wt_status_prepare(&s);
Jens Lehmann302ad7a2010-08-06 00:40:48 +02001211 gitmodules_config();
Junio C Hamanod249b092009-08-09 21:59:30 -07001212 git_config(git_status_config, &s);
Jay Soffian37f7a852011-02-19 23:12:29 -05001213 determine_whence(&s);
Junio C Hamano76e2f7c2009-08-07 23:31:57 -07001214 argc = parse_options(argc, argv, prefix,
Junio C Hamano9e4b7ab2009-08-15 02:27:39 -07001215 builtin_status_options,
1216 builtin_status_usage, 0);
Junio C Hamano6c929722011-06-06 11:40:08 -07001217
1218 if (null_termination && status_format == STATUS_FORMAT_LONG)
1219 status_format = STATUS_FORMAT_PORCELAIN;
1220
Junio C Hamano76e2f7c2009-08-07 23:31:57 -07001221 handle_untracked_files_arg(&s);
Junio C Hamano2381e392010-04-10 00:33:17 -07001222 if (show_ignored_in_status)
1223 s.show_ignored_files = 1;
Junio C Hamano76e2f7c2009-08-07 23:31:57 -07001224 if (*argv)
1225 s.pathspec = get_pathspec(prefix, argv);
1226
Junio C Hamano149794d2010-02-17 12:30:41 -08001227 read_cache_preload(s.pathspec);
Nguyễn Thái Ngọc Duy688cd6d2010-01-14 22:02:21 +07001228 refresh_index(&the_index, REFRESH_QUIET|REFRESH_UNMERGED, s.pathspec, NULL, NULL);
Markus Heidelberg4bb66442010-04-02 23:44:21 +02001229
1230 fd = hold_locked_index(&index_lock, 0);
Junio C Hamanoccdc4ec2011-03-21 10:16:10 -07001231 if (0 <= fd)
1232 update_index_if_able(&the_index, &index_lock);
Markus Heidelberg4bb66442010-04-02 23:44:21 +02001233
Junio C Hamano76e2f7c2009-08-07 23:31:57 -07001234 s.is_initial = get_sha1(s.reference, sha1) ? 1 : 0;
Jens Lehmann46a958b2010-06-25 16:56:47 +02001235 s.ignore_submodule_arg = ignore_submodule_arg;
Junio C Hamano76e2f7c2009-08-07 23:31:57 -07001236 wt_status_collect(&s);
1237
Jeff King86617682009-12-07 00:26:25 -05001238 if (s.relative_paths)
1239 s.prefix = prefix;
Junio C Hamanod249b092009-08-09 21:59:30 -07001240 if (s.use_color == -1)
1241 s.use_color = git_use_color_default;
Markus Heidelberg38920dd2009-01-08 19:53:05 +01001242 if (diff_use_color_default == -1)
1243 diff_use_color_default = git_use_color_default;
1244
Jeff Kingdd2be242009-09-05 04:54:14 -04001245 switch (status_format) {
1246 case STATUS_FORMAT_SHORT:
Daniel Knittl-Frank05a59a02010-05-25 15:45:51 +02001247 wt_shortstatus_print(&s, null_termination, status_show_branch);
Jeff Kingdd2be242009-09-05 04:54:14 -04001248 break;
Jeff King6f157872009-09-05 04:55:37 -04001249 case STATUS_FORMAT_PORCELAIN:
Jeff King4a7cc2f2009-12-07 00:17:15 -05001250 wt_porcelain_print(&s, null_termination);
Jeff King6f157872009-09-05 04:55:37 -04001251 break;
Jeff Kingdd2be242009-09-05 04:54:14 -04001252 case STATUS_FORMAT_LONG:
Junio C Hamano173e6c82009-08-04 23:55:22 -07001253 s.verbose = verbose;
Jens Lehmann46a958b2010-06-25 16:56:47 +02001254 s.ignore_submodule_arg = ignore_submodule_arg;
Junio C Hamano173e6c82009-08-04 23:55:22 -07001255 wt_status_print(&s);
Jeff Kingdd2be242009-09-05 04:54:14 -04001256 break;
Junio C Hamano173e6c82009-08-04 23:55:22 -07001257 }
Junio C Hamano76e2f7c2009-08-07 23:31:57 -07001258 return 0;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001259}
1260
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001261static void print_summary(const char *prefix, const unsigned char *sha1)
1262{
1263 struct rev_info rev;
1264 struct commit *commit;
Jeff King49ff9a72010-01-13 12:39:51 -05001265 struct strbuf format = STRBUF_INIT;
Jeff Kingc85db252008-10-01 18:31:25 -04001266 unsigned char junk_sha1[20];
1267 const char *head = resolve_ref("HEAD", junk_sha1, 0, NULL);
Jeff King49ff9a72010-01-13 12:39:51 -05001268 struct pretty_print_context pctx = {0};
1269 struct strbuf author_ident = STRBUF_INIT;
1270 struct strbuf committer_ident = STRBUF_INIT;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001271
1272 commit = lookup_commit(sha1);
1273 if (!commit)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001274 die(_("couldn't look up newly created commit"));
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001275 if (!commit || parse_commit(commit))
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001276 die(_("could not parse newly created commit"));
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001277
Jeff King49ff9a72010-01-13 12:39:51 -05001278 strbuf_addstr(&format, "format:%h] %s");
1279
1280 format_commit_message(commit, "%an <%ae>", &author_ident, &pctx);
1281 format_commit_message(commit, "%cn <%ce>", &committer_ident, &pctx);
1282 if (strbuf_cmp(&author_ident, &committer_ident)) {
1283 strbuf_addstr(&format, "\n Author: ");
1284 strbuf_addbuf_percentquote(&format, &author_ident);
1285 }
Junio C Hamano1a893062010-01-17 13:59:36 -08001286 if (!user_ident_sufficiently_given()) {
Jeff King49ff9a72010-01-13 12:39:51 -05001287 strbuf_addstr(&format, "\n Committer: ");
1288 strbuf_addbuf_percentquote(&format, &committer_ident);
Jeff Kingb706fcf2010-01-13 15:17:08 -05001289 if (advice_implicit_identity) {
1290 strbuf_addch(&format, '\n');
Ævar Arnfjörð Bjarmasonfc88e312011-02-22 23:41:49 +00001291 strbuf_addstr(&format, _(implicit_ident_advice));
Jeff Kingb706fcf2010-01-13 15:17:08 -05001292 }
Jeff King49ff9a72010-01-13 12:39:51 -05001293 }
1294 strbuf_release(&author_ident);
1295 strbuf_release(&committer_ident);
1296
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001297 init_revisions(&rev, prefix);
1298 setup_revisions(0, NULL, &rev, NULL);
1299
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001300 rev.diff = 1;
1301 rev.diffopt.output_format =
1302 DIFF_FORMAT_SHORTSTAT | DIFF_FORMAT_SUMMARY;
1303
1304 rev.verbose_header = 1;
1305 rev.show_root_diff = 1;
Jeff King49ff9a72010-01-13 12:39:51 -05001306 get_commit_format(format.buf, &rev);
Junio C Hamanobf82a152007-12-10 21:02:26 -08001307 rev.always_show_header = 0;
Junio C Hamano3eb2a152007-12-16 15:05:39 -08001308 rev.diffopt.detect_rename = 1;
Junio C Hamano3eb2a152007-12-16 15:05:39 -08001309 rev.diffopt.break_opt = 0;
Junio C Hamano15964562007-12-16 15:03:58 -08001310 diff_setup_done(&rev.diffopt);
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001311
Santi Béjarc5ee71f2009-01-19 23:45:16 +01001312 printf("[%s%s ",
Jeff Kingc85db252008-10-01 18:31:25 -04001313 !prefixcmp(head, "refs/heads/") ?
1314 head + 11 :
1315 !strcmp(head, "HEAD") ?
Ævar Arnfjörð Bjarmason7f5673d2011-02-22 23:41:47 +00001316 _("detached HEAD") :
Jeff Kingc85db252008-10-01 18:31:25 -04001317 head,
Ævar Arnfjörð Bjarmason7f5673d2011-02-22 23:41:47 +00001318 initial_commit ? _(" (root-commit)") : "");
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001319
Junio C Hamanobf82a152007-12-10 21:02:26 -08001320 if (!log_tree_commit(&rev, commit)) {
Tay Ray Chuana45e1a82010-06-12 22:15:39 +08001321 rev.always_show_header = 1;
1322 rev.use_terminator = 1;
1323 log_tree_commit(&rev, commit);
Junio C Hamanobf82a152007-12-10 21:02:26 -08001324 }
Tay Ray Chuana45e1a82010-06-12 22:15:39 +08001325
Junio C Hamanofc6f19f2010-01-17 00:57:51 -08001326 strbuf_release(&format);
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001327}
1328
Stephan Beyer186458b2008-07-24 01:09:35 +02001329static int git_commit_config(const char *k, const char *v, void *cb)
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001330{
Junio C Hamanod249b092009-08-09 21:59:30 -07001331 struct wt_status *s = cb;
1332
Brian Hetro984c6e72008-07-05 01:24:40 -04001333 if (!strcmp(k, "commit.template"))
Matthieu Moy395de252009-11-17 18:24:25 +01001334 return git_config_pathname(&template_file, k, v);
James P. Howard, IIbed575e2009-12-07 17:45:27 -05001335 if (!strcmp(k, "commit.status")) {
1336 include_status = git_config_bool(k, v);
1337 return 0;
1338 }
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001339
Junio C Hamanod249b092009-08-09 21:59:30 -07001340 return git_status_config(k, v, s);
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001341}
1342
Thomas Rast6f6bee32010-03-12 18:04:28 +01001343static const char post_rewrite_hook[] = "hooks/post-rewrite";
1344
1345static int run_rewrite_hook(const unsigned char *oldsha1,
1346 const unsigned char *newsha1)
1347{
1348 /* oldsha1 SP newsha1 LF NUL */
1349 static char buf[2*40 + 3];
1350 struct child_process proc;
1351 const char *argv[3];
1352 int code;
1353 size_t n;
1354
1355 if (access(git_path(post_rewrite_hook), X_OK) < 0)
1356 return 0;
1357
1358 argv[0] = git_path(post_rewrite_hook);
1359 argv[1] = "amend";
1360 argv[2] = NULL;
1361
1362 memset(&proc, 0, sizeof(proc));
1363 proc.argv = argv;
1364 proc.in = -1;
1365 proc.stdout_to_stderr = 1;
1366
1367 code = start_command(&proc);
1368 if (code)
1369 return code;
1370 n = snprintf(buf, sizeof(buf), "%s %s\n",
1371 sha1_to_hex(oldsha1), sha1_to_hex(newsha1));
1372 write_in_full(proc.in, buf, n);
1373 close(proc.in);
1374 return finish_command(&proc);
1375}
1376
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001377int cmd_commit(int argc, const char **argv, const char *prefix)
1378{
Brandon Caseyf285a2d2008-10-09 14:12:12 -05001379 struct strbuf sb = STRBUF_INIT;
Junio C Hamano4c28e4a2010-12-20 17:00:36 -08001380 struct strbuf author_ident = STRBUF_INIT;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001381 const char *index_file, *reflog_msg;
Kristian Høgsberg99a12692007-11-21 21:54:49 -05001382 char *nl, *p;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001383 unsigned char commit_sha1[20];
1384 struct ref_lock *ref_lock;
Miklos Vajna6bb6b032008-09-10 22:10:32 +02001385 struct commit_list *parents = NULL, **pptr = &parents;
Miklos Vajnacf10f9f2008-10-03 14:04:47 +02001386 struct stat statbuf;
1387 int allow_fast_forward = 1;
Junio C Hamanod249b092009-08-09 21:59:30 -07001388 struct wt_status s;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001389
Nguyễn Thái Ngọc Duy5d3dd912010-10-22 01:45:47 -05001390 if (argc == 2 && !strcmp(argv[1], "-h"))
1391 usage_with_options(builtin_commit_usage, builtin_commit_options);
1392
Junio C Hamanod249b092009-08-09 21:59:30 -07001393 wt_status_prepare(&s);
1394 git_config(git_commit_config, &s);
Jay Soffian37f7a852011-02-19 23:12:29 -05001395 determine_whence(&s);
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001396
Junio C Hamanod249b092009-08-09 21:59:30 -07001397 if (s.use_color == -1)
1398 s.use_color = git_use_color_default;
Junio C Hamanod249b092009-08-09 21:59:30 -07001399 argc = parse_and_validate_options(argc, argv, builtin_commit_usage,
1400 prefix, &s);
Junio C Hamano3fa509d2009-08-15 02:14:14 -07001401 if (dry_run) {
1402 if (diff_use_color_default == -1)
1403 diff_use_color_default = git_use_color_default;
Junio C Hamanod249b092009-08-09 21:59:30 -07001404 return dry_run_commit(argc, argv, prefix, &s);
Junio C Hamano3fa509d2009-08-15 02:14:14 -07001405 }
Junio C Hamano50b7e702009-08-04 23:49:33 -07001406 index_file = prepare_index(argc, argv, prefix, 0);
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001407
Paolo Bonziniec84bd02008-02-05 11:01:46 +01001408 /* Set up everything for writing the commit object. This includes
1409 running hooks, writing the trees, and interacting with the user. */
Junio C Hamano4c28e4a2010-12-20 17:00:36 -08001410 if (!prepare_to_commit(index_file, prefix, &s, &author_ident)) {
Junio C Hamano28886052007-11-18 01:52:55 -08001411 rollback_index_files();
1412 return 1;
1413 }
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001414
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001415 /* Determine parents */
Christian Couder643cb5f2010-06-12 18:05:12 +02001416 reflog_msg = getenv("GIT_REFLOG_ACTION");
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001417 if (initial_commit) {
Christian Couder643cb5f2010-06-12 18:05:12 +02001418 if (!reflog_msg)
1419 reflog_msg = "commit (initial)";
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001420 } else if (amend) {
1421 struct commit_list *c;
1422 struct commit *commit;
1423
Christian Couder643cb5f2010-06-12 18:05:12 +02001424 if (!reflog_msg)
1425 reflog_msg = "commit (amend)";
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001426 commit = lookup_commit(head_sha1);
1427 if (!commit || parse_commit(commit))
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001428 die(_("could not parse HEAD commit"));
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001429
1430 for (c = commit->parents; c; c = c->next)
Miklos Vajna6bb6b032008-09-10 22:10:32 +02001431 pptr = &commit_list_insert(c->item, pptr)->next;
Jay Soffian37f7a852011-02-19 23:12:29 -05001432 } else if (whence == FROM_MERGE) {
Brandon Caseyf285a2d2008-10-09 14:12:12 -05001433 struct strbuf m = STRBUF_INIT;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001434 FILE *fp;
1435
Christian Couder643cb5f2010-06-12 18:05:12 +02001436 if (!reflog_msg)
1437 reflog_msg = "commit (merge)";
Miklos Vajna6bb6b032008-09-10 22:10:32 +02001438 pptr = &commit_list_insert(lookup_commit(head_sha1), pptr)->next;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001439 fp = fopen(git_path("MERGE_HEAD"), "r");
1440 if (fp == NULL)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001441 die_errno(_("could not open '%s' for reading"),
Thomas Rastd824cbb2009-06-27 17:58:46 +02001442 git_path("MERGE_HEAD"));
Linus Torvalds7c3fd252008-01-15 16:12:33 -08001443 while (strbuf_getline(&m, fp, '\n') != EOF) {
1444 unsigned char sha1[20];
1445 if (get_sha1_hex(m.buf, sha1) < 0)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001446 die(_("Corrupt MERGE_HEAD file (%s)"), m.buf);
Miklos Vajna6bb6b032008-09-10 22:10:32 +02001447 pptr = &commit_list_insert(lookup_commit(sha1), pptr)->next;
Linus Torvalds7c3fd252008-01-15 16:12:33 -08001448 }
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001449 fclose(fp);
1450 strbuf_release(&m);
Miklos Vajnacf10f9f2008-10-03 14:04:47 +02001451 if (!stat(git_path("MERGE_MODE"), &statbuf)) {
1452 if (strbuf_read_file(&sb, git_path("MERGE_MODE"), 0) < 0)
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001453 die_errno(_("could not read MERGE_MODE"));
Miklos Vajnacf10f9f2008-10-03 14:04:47 +02001454 if (!strcmp(sb.buf, "no-ff"))
1455 allow_fast_forward = 0;
1456 }
1457 if (allow_fast_forward)
1458 parents = reduce_heads(parents);
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001459 } else {
Christian Couder643cb5f2010-06-12 18:05:12 +02001460 if (!reflog_msg)
Jay Soffian37f7a852011-02-19 23:12:29 -05001461 reflog_msg = (whence == FROM_CHERRY_PICK)
1462 ? "commit (cherry-pick)"
1463 : "commit";
Miklos Vajna6bb6b032008-09-10 22:10:32 +02001464 pptr = &commit_list_insert(lookup_commit(head_sha1), pptr)->next;
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001465 }
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001466
Paolo Bonziniec84bd02008-02-05 11:01:46 +01001467 /* Finally, get the commit message */
Miklos Vajnacf10f9f2008-10-03 14:04:47 +02001468 strbuf_reset(&sb);
Junio C Hamano740001a2007-12-08 23:23:20 -08001469 if (strbuf_read_file(&sb, git_path(commit_editmsg), 0) < 0) {
Thomas Rast0721c312009-06-27 17:58:47 +02001470 int saved_errno = errno;
Junio C Hamano740001a2007-12-08 23:23:20 -08001471 rollback_index_files();
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001472 die(_("could not read commit message: %s"), strerror(saved_errno));
Junio C Hamano740001a2007-12-08 23:23:20 -08001473 }
Kristian Høgsberg99a12692007-11-21 21:54:49 -05001474
1475 /* Truncate the message just before the diff, if any. */
Jeff King0b382272008-11-12 03:25:52 -05001476 if (verbose) {
1477 p = strstr(sb.buf, "\ndiff --git ");
1478 if (p != NULL)
1479 strbuf_setlen(&sb, p - sb.buf + 1);
1480 }
Kristian Høgsberg99a12692007-11-21 21:54:49 -05001481
Alex Riesen5f065732007-12-22 19:46:24 +01001482 if (cleanup_mode != CLEANUP_NONE)
1483 stripspace(&sb, cleanup_mode == CLEANUP_ALL);
Ævar Arnfjörð Bjarmasonc9b5fde2010-04-06 08:40:35 +00001484 if (message_is_empty(&sb) && !allow_empty_message) {
Junio C Hamano28886052007-11-18 01:52:55 -08001485 rollback_index_files();
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001486 fprintf(stderr, _("Aborting commit due to empty commit message.\n"));
Jeff Kingfdc7c812008-07-31 03:36:09 -04001487 exit(1);
Junio C Hamano28886052007-11-18 01:52:55 -08001488 }
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001489
Miklos Vajna6bb6b032008-09-10 22:10:32 +02001490 if (commit_tree(sb.buf, active_cache_tree->sha1, parents, commit_sha1,
Junio C Hamano4c28e4a2010-12-20 17:00:36 -08001491 author_ident.buf)) {
Junio C Hamano28886052007-11-18 01:52:55 -08001492 rollback_index_files();
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001493 die(_("failed to write commit object"));
Junio C Hamano28886052007-11-18 01:52:55 -08001494 }
Junio C Hamano4c28e4a2010-12-20 17:00:36 -08001495 strbuf_release(&author_ident);
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001496
1497 ref_lock = lock_any_ref_for_update("HEAD",
1498 initial_commit ? NULL : head_sha1,
1499 0);
1500
Miklos Vajna6bb6b032008-09-10 22:10:32 +02001501 nl = strchr(sb.buf, '\n');
Johannes Schindelin741707b2007-11-08 12:15:26 +00001502 if (nl)
1503 strbuf_setlen(&sb, nl + 1 - sb.buf);
1504 else
1505 strbuf_addch(&sb, '\n');
Johannes Schindelin741707b2007-11-08 12:15:26 +00001506 strbuf_insert(&sb, 0, reflog_msg, strlen(reflog_msg));
1507 strbuf_insert(&sb, strlen(reflog_msg), ": ", 2);
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001508
Junio C Hamano28886052007-11-18 01:52:55 -08001509 if (!ref_lock) {
1510 rollback_index_files();
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001511 die(_("cannot lock HEAD ref"));
Junio C Hamano28886052007-11-18 01:52:55 -08001512 }
1513 if (write_ref_sha1(ref_lock, commit_sha1, sb.buf) < 0) {
1514 rollback_index_files();
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001515 die(_("cannot update HEAD ref"));
Junio C Hamano28886052007-11-18 01:52:55 -08001516 }
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001517
Jay Soffiand7e5c0c2011-02-19 23:12:27 -05001518 unlink(git_path("CHERRY_PICK_HEAD"));
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001519 unlink(git_path("MERGE_HEAD"));
1520 unlink(git_path("MERGE_MSG"));
Miklos Vajnacf10f9f2008-10-03 14:04:47 +02001521 unlink(git_path("MERGE_MODE"));
Gerrit Pape5a95b852008-02-08 09:53:58 +00001522 unlink(git_path("SQUASH_MSG"));
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001523
Brandon Casey5a9dd392008-01-23 11:21:22 -06001524 if (commit_index_files())
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001525 die (_("Repository has been updated, but unable to write\n"
Brandon Casey5a9dd392008-01-23 11:21:22 -06001526 "new_index file. Check that disk is not full or quota is\n"
Ævar Arnfjörð Bjarmason8a6179b2011-02-22 23:41:44 +00001527 "not exceeded, and then \"git reset HEAD\" to recover."));
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001528
Junio C Hamanocb6020b2009-12-04 00:20:48 -08001529 rerere(0);
Junio C Hamano28886052007-11-18 01:52:55 -08001530 run_hook(get_index_file(), "post-commit", NULL);
Thomas Rast6f6bee32010-03-12 18:04:28 +01001531 if (amend && !no_post_rewrite) {
Thomas Rast6360d342010-03-12 18:04:34 +01001532 struct notes_rewrite_cfg *cfg;
1533 cfg = init_copy_notes_for_rewrite("amend");
1534 if (cfg) {
1535 copy_note_for_rewrite(cfg, head_sha1, commit_sha1);
1536 finish_copy_notes_for_rewrite(cfg);
1537 }
Thomas Rast6f6bee32010-03-12 18:04:28 +01001538 run_rewrite_hook(head_sha1, commit_sha1);
1539 }
Kristian Høgsbergf5bbc322007-11-08 11:59:00 -05001540 if (!quiet)
1541 print_summary(prefix, commit_sha1);
1542
1543 return 0;
1544}