4 * Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>
5 * Based on git-commit.sh by Junio C Hamano and Linus Torvalds
9 #include "cache-tree.h"
15 #include "wt-status.h"
16 #include "run-command.h"
21 #include "parse-options.h"
23 static const char * const builtin_commit_usage
[] = {
24 "git-commit [options] [--] <filepattern>...",
28 static unsigned char head_sha1
[20], merge_head_sha1
[20];
29 static char *use_message_buffer
;
30 static const char commit_editmsg
[] = "COMMIT_EDITMSG";
31 static struct lock_file lock_file
;
33 static char *logfile
, *force_author
, *message
, *template_file
;
34 static char *edit_message
, *use_message
;
35 static int all
, edit_flag
, also
, interactive
, only
, amend
, signoff
;
36 static int quiet
, verbose
, untracked_files
, no_verify
;
38 static int no_edit
, initial_commit
, in_merge
;
39 const char *only_include_assumed
;
41 static struct option builtin_commit_options
[] = {
43 OPT__VERBOSE(&verbose
),
44 OPT_GROUP("Commit message options"),
46 OPT_STRING('F', "file", &logfile
, "FILE", "read log from file"),
47 OPT_STRING(0, "author", &force_author
, "AUTHOR", "override author for commit"),
48 OPT_STRING('m', "message", &message
, "MESSAGE", "specify commit message"),
49 OPT_STRING('c', "reedit-message", &edit_message
, "COMMIT", "reuse and edit message from specified commit "),
50 OPT_STRING('C', "reuse-message", &use_message
, "COMMIT", "reuse message from specified commit"),
51 OPT_BOOLEAN('s', "signoff", &signoff
, "add Signed-off-by: header"),
52 OPT_STRING('t', "template", &template_file
, "FILE", "use specified template file"),
53 OPT_BOOLEAN('e', "edit", &edit_flag
, "force edit of commit"),
55 OPT_GROUP("Commit contents options"),
56 OPT_BOOLEAN('a', "all", &all
, "commit all changed files"),
57 OPT_BOOLEAN('i', "include", &also
, "add specified files to index for commit"),
58 OPT_BOOLEAN(0, "interactive", &interactive
, "interactively add files"),
59 OPT_BOOLEAN('o', "only", &only
, ""),
60 OPT_BOOLEAN('n', "no-verify", &no_verify
, "bypass pre-commit hook"),
61 OPT_BOOLEAN(0, "amend", &amend
, "amend previous commit"),
62 OPT_BOOLEAN(0, "untracked-files", &untracked_files
, "show all untracked files"),
67 static char *prepare_index(const char **files
, const char *prefix
)
71 struct lock_file
*next_index_lock
;
75 return get_index_file();
78 fd
= hold_locked_index(&lock_file
, 1);
80 die("index file corrupt");
83 add_files_to_cache(verbose
, also
? prefix
: NULL
, files
);
84 refresh_cache(REFRESH_QUIET
);
85 if (write_cache(fd
, active_cache
, active_nr
) || close(fd
))
86 die("unable to write new_index file");
87 return lock_file
.filename
;
91 /* Commit index as-is. */
92 rollback_lock_file(&lock_file
);
93 return get_index_file();
96 /* update the user index file */
97 add_files_to_cache(verbose
, prefix
, files
);
98 if (write_cache(fd
, active_cache
, active_nr
) || close(fd
))
99 die("unable to write new_index file");
101 if (!initial_commit
) {
102 tree
= parse_tree_indirect(head_sha1
);
104 die("failed to unpack HEAD tree object");
105 if (read_tree(tree
, 0, NULL
))
106 die("failed to read HEAD tree object");
109 /* Use a lock file to garbage collect the temporary index file. */
110 next_index_lock
= xmalloc(sizeof(*next_index_lock
));
111 fd
= hold_lock_file_for_update(next_index_lock
,
112 git_path("next-index-%d", getpid()), 1);
113 add_files_to_cache(verbose
, prefix
, files
);
114 refresh_cache(REFRESH_QUIET
);
115 if (write_cache(fd
, active_cache
, active_nr
) || close(fd
))
116 die("unable to write new_index file");
118 return next_index_lock
->filename
;
121 static int run_status(FILE *fp
, const char *index_file
, const char *prefix
)
125 wt_status_prepare(&s
);
130 s
.reference
= "HEAD^1";
133 s
.untracked
= untracked_files
;
134 s
.index_file
= index_file
;
142 static const char sign_off_header
[] = "Signed-off-by: ";
144 static int prepare_log_message(const char *index_file
, const char *prefix
)
154 strbuf_add(&sb
, message
, strlen(message
));
155 } else if (logfile
&& !strcmp(logfile
, "-")) {
157 fprintf(stderr
, "(reading log message from standard input)\n");
158 if (strbuf_read(&sb
, 0, 0) < 0)
159 die("could not read log from standard input");
160 } else if (logfile
) {
161 if (strbuf_read_file(&sb
, logfile
, 0) < 0)
162 die("could not read log file '%s': %s",
163 logfile
, strerror(errno
));
164 } else if (use_message
) {
165 buffer
= strstr(use_message_buffer
, "\n\n");
166 if (!buffer
|| buffer
[2] == '\0')
167 die("commit has empty message");
168 strbuf_add(&sb
, buffer
+ 2, strlen(buffer
+ 2));
169 } else if (!stat(git_path("MERGE_MSG"), &statbuf
)) {
170 if (strbuf_read_file(&sb
, git_path("MERGE_MSG"), 0) < 0)
171 die("could not read MERGE_MSG: %s", strerror(errno
));
172 } else if (!stat(git_path("SQUASH_MSG"), &statbuf
)) {
173 if (strbuf_read_file(&sb
, git_path("SQUASH_MSG"), 0) < 0)
174 die("could not read SQUASH_MSG: %s", strerror(errno
));
175 } else if (template_file
&& !stat(template_file
, &statbuf
)) {
176 if (strbuf_read_file(&sb
, template_file
, 0) < 0)
177 die("could not read %s: %s",
178 template_file
, strerror(errno
));
181 fp
= fopen(git_path(commit_editmsg
), "w");
183 die("could not open %s\n", git_path(commit_editmsg
));
186 if (fwrite(sb
.buf
, 1, sb
.len
, fp
) < sb
.len
)
187 die("could not write commit template: %s\n",
191 const char *info
, *bol
;
193 info
= git_committer_info(1);
194 strbuf_addch(&sb
, '\0');
195 bol
= strrchr(sb
.buf
+ sb
.len
- 1, '\n');
196 if (!bol
|| prefixcmp(bol
, sign_off_header
))
198 fprintf(fp
, "%s%s\n", sign_off_header
, git_committer_info(1));
203 if (in_merge
&& !no_edit
)
206 "# It looks like you may be committing a MERGE.\n"
207 "# If this is not correct, please remove the file\n"
211 git_path("MERGE_HEAD"));
215 "# Please enter the commit message for your changes.\n"
216 "# (Comment lines starting with '#' will not be included)\n");
217 if (only_include_assumed
)
218 fprintf(fp
, "# %s\n", only_include_assumed
);
220 commitable
= run_status(fp
, index_file
, prefix
);
228 * Find out if the message starting at position 'start' in the strbuf
229 * contains only whitespace and Signed-off-by lines.
231 static int message_is_empty(struct strbuf
*sb
, int start
)
237 /* See if the template is just a prefix of the message. */
238 strbuf_init(&tmpl
, 0);
239 if (template_file
&& strbuf_read_file(&tmpl
, template_file
, 0) > 0) {
240 stripspace(&tmpl
, 1);
241 if (start
+ tmpl
.len
<= sb
->len
&&
242 memcmp(tmpl
.buf
, sb
->buf
+ start
, tmpl
.len
) == 0)
245 strbuf_release(&tmpl
);
247 /* Check if the rest is just whitespace and Signed-of-by's. */
248 for (i
= start
; i
< sb
->len
; i
++) {
249 nl
= memchr(sb
->buf
+ i
, '\n', sb
->len
- i
);
255 if (strlen(sign_off_header
) <= eol
- i
&&
256 !prefixcmp(sb
->buf
+ i
, sign_off_header
)) {
261 if (!isspace(sb
->buf
[i
++]))
268 static void determine_author_info(struct strbuf
*sb
)
270 char *name
, *email
, *date
;
272 name
= getenv("GIT_AUTHOR_NAME");
273 email
= getenv("GIT_AUTHOR_EMAIL");
274 date
= getenv("GIT_AUTHOR_DATE");
277 const char *a
, *lb
, *rb
, *eol
;
279 a
= strstr(use_message_buffer
, "\nauthor ");
281 die("invalid commit: %s\n", use_message
);
283 lb
= strstr(a
+ 8, " <");
284 rb
= strstr(a
+ 8, "> ");
285 eol
= strchr(a
+ 8, '\n');
286 if (!lb
|| !rb
|| !eol
)
287 die("invalid commit: %s\n", use_message
);
289 name
= xstrndup(a
+ 8, lb
- (a
+ 8));
290 email
= xstrndup(lb
+ 2, rb
- (lb
+ 2));
291 date
= xstrndup(rb
+ 2, eol
- (rb
+ 2));
295 const char *lb
= strstr(force_author
, " <");
296 const char *rb
= strchr(force_author
, '>');
299 die("malformed --author parameter\n");
300 name
= xstrndup(force_author
, lb
- force_author
);
301 email
= xstrndup(lb
+ 2, rb
- (lb
+ 2));
304 strbuf_addf(sb
, "author %s\n", fmt_ident(name
, email
, date
, 1));
307 static int parse_and_validate_options(int argc
, const char *argv
[])
311 argc
= parse_options(argc
, argv
, builtin_commit_options
,
312 builtin_commit_usage
, 0);
314 if (logfile
|| message
|| use_message
)
319 if (get_sha1("HEAD", head_sha1
))
322 if (!get_sha1("MERGE_HEAD", merge_head_sha1
))
325 /* Sanity check options */
326 if (amend
&& initial_commit
)
327 die("You have nothing to amend.");
328 if (amend
&& in_merge
)
329 die("You are in the middle of a merger -- cannot amend.");
338 die("Only one of -c/-C/-F can be used.");
339 if (message
&& f
> 0)
340 die("Option -m cannot be combined with -c/-C/-F.");
342 use_message
= edit_message
;
344 use_message
= "HEAD";
346 unsigned char sha1
[20];
347 static char utf8
[] = "UTF-8";
350 struct commit
*commit
;
352 if (get_sha1(use_message
, sha1
))
353 die("could not lookup commit %s", use_message
);
354 commit
= lookup_commit(sha1
);
355 if (!commit
|| parse_commit(commit
))
356 die("could not parse commit %s", use_message
);
358 enc
= strstr(commit
->buffer
, "\nencoding");
360 end
= strchr(enc
+ 10, '\n');
361 enc
= xstrndup(enc
+ 10, end
- (enc
+ 10));
365 out_enc
= git_commit_encoding
? git_commit_encoding
: utf8
;
367 if (strcmp(out_enc
, enc
))
369 reencode_string(commit
->buffer
, out_enc
, enc
);
372 * If we failed to reencode the buffer, just copy it
373 * byte for byte so the user can try to fix it up.
374 * This also handles the case where input and output
375 * encodings are identical.
377 if (use_message_buffer
== NULL
)
378 use_message_buffer
= xstrdup(commit
->buffer
);
383 if (!!also
+ !!only
+ !!all
+ !!interactive
> 1)
384 die("Only one of --include/--only/--all/--interactive can be used.");
385 if (argc
== 0 && (also
|| (only
&& !amend
)))
386 die("No paths with --include/--only does not make sense.");
387 if (argc
== 0 && only
&& amend
)
388 only_include_assumed
= "Clever... amending the last one with dirty index.";
389 if (argc
> 0 && !also
&& !only
) {
390 only_include_assumed
= "Explicit paths specified without -i nor -o; assuming --only paths...";
395 die("Paths with -a does not make sense.");
396 else if (interactive
&& argc
> 0)
397 die("Paths with --interactive does not make sense.");
402 int cmd_status(int argc
, const char **argv
, const char *prefix
)
404 const char *index_file
;
407 git_config(git_status_config
);
409 argc
= parse_and_validate_options(argc
, argv
);
411 index_file
= prepare_index(argv
, prefix
);
413 commitable
= run_status(stdout
, index_file
, prefix
);
415 rollback_lock_file(&lock_file
);
417 return commitable
? 0 : 1;
420 static int run_hook(const char *index_file
, const char *name
, const char *arg
)
422 struct child_process hook
;
423 const char *argv
[3], *env
[2];
424 char index
[PATH_MAX
];
426 argv
[0] = git_path("hooks/%s", name
);
429 snprintf(index
, sizeof(index
), "GIT_INDEX_FILE=%s", index_file
);
433 if (access(argv
[0], X_OK
) < 0)
436 memset(&hook
, 0, sizeof(hook
));
439 hook
.stdout_to_stderr
= 1;
442 return run_command(&hook
);
445 static void print_summary(const char *prefix
, const unsigned char *sha1
)
448 struct commit
*commit
;
450 commit
= lookup_commit(sha1
);
452 die("couldn't look up newly created commit\n");
453 if (!commit
|| parse_commit(commit
))
454 die("could not parse newly created commit");
456 init_revisions(&rev
, prefix
);
457 setup_revisions(0, NULL
, &rev
, NULL
);
461 rev
.diffopt
.output_format
=
462 DIFF_FORMAT_SHORTSTAT
| DIFF_FORMAT_SUMMARY
;
464 rev
.verbose_header
= 1;
465 rev
.show_root_diff
= 1;
466 rev
.commit_format
= get_commit_format("format:%h: %s");
467 rev
.always_show_header
= 1;
469 printf("Created %scommit ", initial_commit
? "initial " : "");
471 log_tree_commit(&rev
, commit
);
474 int git_commit_config(const char *k
, const char *v
)
476 if (!strcmp(k
, "commit.template")) {
477 template_file
= xstrdup(v
);
481 return git_status_config(k
, v
);
484 static const char commit_utf8_warn
[] =
485 "Warning: commit message does not conform to UTF-8.\n"
486 "You may want to amend it after fixing the message, or set the config\n"
487 "variable i18n.commitencoding to the encoding your project uses.\n";
489 int cmd_commit(int argc
, const char **argv
, const char *prefix
)
491 int header_len
, parent_count
= 0;
493 const char *index_file
, *reflog_msg
;
495 unsigned char commit_sha1
[20];
496 struct ref_lock
*ref_lock
;
498 git_config(git_commit_config
);
500 argc
= parse_and_validate_options(argc
, argv
);
502 index_file
= prepare_index(argv
, prefix
);
504 if (!no_verify
&& run_hook(index_file
, "pre-commit", NULL
))
507 if (!prepare_log_message(index_file
, prefix
) && !in_merge
) {
508 run_status(stdout
, index_file
, prefix
);
509 unlink(commit_editmsg
);
515 /* Start building up the commit header */
516 read_cache_from(index_file
);
517 active_cache_tree
= cache_tree();
518 if (cache_tree_update(active_cache_tree
,
519 active_cache
, active_nr
, 0, 0) < 0)
520 die("Error building trees");
521 strbuf_addf(&sb
, "tree %s\n",
522 sha1_to_hex(active_cache_tree
->sha1
));
524 /* Determine parents */
525 if (initial_commit
) {
526 reflog_msg
= "commit (initial)";
529 struct commit_list
*c
;
530 struct commit
*commit
;
532 reflog_msg
= "commit (amend)";
533 commit
= lookup_commit(head_sha1
);
534 if (!commit
|| parse_commit(commit
))
535 die("could not parse HEAD commit");
537 for (c
= commit
->parents
; c
; c
= c
->next
)
538 strbuf_addf(&sb
, "parent %s\n",
539 sha1_to_hex(c
->item
->object
.sha1
));
540 } else if (in_merge
) {
544 reflog_msg
= "commit (merge)";
545 strbuf_addf(&sb
, "parent %s\n", sha1_to_hex(head_sha1
));
547 fp
= fopen(git_path("MERGE_HEAD"), "r");
549 die("could not open %s for reading: %s",
550 git_path("MERGE_HEAD"), strerror(errno
));
551 while (strbuf_getline(&m
, fp
, '\n') != EOF
)
552 strbuf_addf(&sb
, "parent %s\n", m
.buf
);
556 reflog_msg
= "commit";
557 strbuf_addf(&sb
, "parent %s\n", sha1_to_hex(head_sha1
));
560 determine_author_info(&sb
);
561 strbuf_addf(&sb
, "committer %s\n", git_committer_info(1));
562 if (!is_encoding_utf8(git_commit_encoding
))
563 strbuf_addf(&sb
, "encoding %s\n", git_commit_encoding
);
564 strbuf_addch(&sb
, '\n');
566 /* Get the commit message and validate it */
569 fprintf(stderr
, "launching editor, log %s\n", logfile
);
570 launch_editor(git_path(commit_editmsg
), &sb
);
571 } else if (strbuf_read_file(&sb
, git_path(commit_editmsg
), 0) < 0)
572 die("could not read commit message\n");
573 if (run_hook(index_file
, "commit-msg", commit_editmsg
))
576 if (sb
.len
< header_len
||
577 message_is_empty(&sb
, header_len
))
578 die("* no commit message? aborting commit.");
579 strbuf_addch(&sb
, '\0');
580 if (is_encoding_utf8(git_commit_encoding
) && !is_utf8(sb
.buf
))
581 fprintf(stderr
, commit_utf8_warn
);
583 if (write_sha1_file(sb
.buf
, sb
.len
- 1, commit_type
, commit_sha1
))
584 die("failed to write commit object");
586 ref_lock
= lock_any_ref_for_update("HEAD",
587 initial_commit
? NULL
: head_sha1
,
590 nl
= strchr(sb
.buf
+ header_len
, '\n');
592 strbuf_setlen(&sb
, nl
+ 1 - sb
.buf
);
594 strbuf_addch(&sb
, '\n');
595 strbuf_remove(&sb
, 0, header_len
);
596 strbuf_insert(&sb
, 0, reflog_msg
, strlen(reflog_msg
));
597 strbuf_insert(&sb
, strlen(reflog_msg
), ": ", 2);
600 die("cannot lock HEAD ref");
601 if (write_ref_sha1(ref_lock
, commit_sha1
, sb
.buf
) < 0)
602 die("cannot update HEAD ref");
604 unlink(git_path("MERGE_HEAD"));
605 unlink(git_path("MERGE_MSG"));
607 if (lock_file
.filename
[0] && commit_locked_index(&lock_file
))
608 die("failed to write new index");
612 run_hook(index_file
, "post-commit", NULL
);
615 print_summary(prefix
, commit_sha1
);