Autogenerated manpages for v2.47.0-rc1-33-g90fe38
[git-manpages.git] / man1 / git-commit.1
bloba6884be4ff16d6559f3ad488f9d23ae5ca06f313
1 '\" t
2 .\"     Title: git-commit
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
5 .\"      Date: 2024-10-04
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.47.0.rc1.33.g90fe3800b9
8 .\"  Language: English
9 .\"
10 .TH "GIT\-COMMIT" "1" "2024-10-04" "Git 2\&.47\&.0\&.rc1\&.33\&.g9" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git-commit \- Record changes to the repository
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit commit\fR [\-a | \-\-interactive | \-\-patch] [\-s] [\-v] [\-u<mode>] [\-\-amend]
36            [\-\-dry\-run] [(\-c | \-C | \-\-squash) <commit> | \-\-fixup [(amend|reword):]<commit>]
37            [\-F <file> | \-m <msg>] [\-\-reset\-author] [\-\-allow\-empty]
38            [\-\-allow\-empty\-message] [\-\-no\-verify] [\-e] [\-\-author=<author>]
39            [\-\-date=<date>] [\-\-cleanup=<mode>] [\-\-[no\-]status]
40            [\-i | \-o] [\-\-pathspec\-from\-file=<file> [\-\-pathspec\-file\-nul]]
41            [(\-\-trailer <token>[(=|:)<value>])\&...\:] [\-S[<keyid>]]
42            [\-\-] [<pathspec>\&...\:]
43 .fi
44 .SH "DESCRIPTION"
45 .sp
46 Create a new commit containing the current contents of the index and the given log message describing the changes\&. The new commit is a direct child of HEAD, usually the tip of the current branch, and the branch is updated to point to it (unless no branch is associated with the working tree, in which case HEAD is "detached" as described in \fBgit-checkout\fR(1))\&.
47 .sp
48 The content to be committed can be specified in several ways:
49 .sp
50 .RS 4
51 .ie n \{\
52 \h'-04' 1.\h'+01'\c
53 .\}
54 .el \{\
55 .sp -1
56 .IP "  1." 4.2
57 .\}
58 by using
59 \fBgit-add\fR(1)
60 to incrementally "add" changes to the index before using the
61 \fIcommit\fR
62 command (Note: even modified files must be "added");
63 .RE
64 .sp
65 .RS 4
66 .ie n \{\
67 \h'-04' 2.\h'+01'\c
68 .\}
69 .el \{\
70 .sp -1
71 .IP "  2." 4.2
72 .\}
73 by using
74 \fBgit-rm\fR(1)
75 to remove files from the working tree and the index, again before using the
76 \fIcommit\fR
77 command;
78 .RE
79 .sp
80 .RS 4
81 .ie n \{\
82 \h'-04' 3.\h'+01'\c
83 .\}
84 .el \{\
85 .sp -1
86 .IP "  3." 4.2
87 .\}
88 by listing files as arguments to the
89 \fIcommit\fR
90 command (without \-\-interactive or \-\-patch switch), in which case the commit will ignore changes staged in the index, and instead record the current content of the listed files (which must already be known to Git);
91 .RE
92 .sp
93 .RS 4
94 .ie n \{\
95 \h'-04' 4.\h'+01'\c
96 .\}
97 .el \{\
98 .sp -1
99 .IP "  4." 4.2
101 by using the \-a switch with the
102 \fIcommit\fR
103 command to automatically "add" changes from all known files (i\&.e\&. all files that are already listed in the index) and to automatically "rm" files in the index that have been removed from the working tree, and then perform the actual commit;
106 .RS 4
107 .ie n \{\
108 \h'-04' 5.\h'+01'\c
110 .el \{\
111 .sp -1
112 .IP "  5." 4.2
114 by using the \-\-interactive or \-\-patch switches with the
115 \fIcommit\fR
116 command to decide one by one which files or hunks should be part of the commit in addition to contents in the index, before finalizing the operation\&. See the
117 \(lqInteractive Mode\(rq
118 section of
119 \fBgit-add\fR(1)
120 to learn how to operate these modes\&.
123 The \fB\-\-dry\-run\fR option can be used to obtain a summary of what is included by any of the above for the next commit by giving the same set of parameters (options and paths)\&.
125 If you make a commit and then find a mistake immediately after that, you can recover from it with \fIgit reset\fR\&.
126 .SH "OPTIONS"
128 \-a, \-\-all
129 .RS 4
130 Tell the command to automatically stage files that have been modified and deleted, but new files you have not told Git about are not affected\&.
133 \-p, \-\-patch
134 .RS 4
135 Use the interactive patch selection interface to choose which changes to commit\&. See
136 \fBgit-add\fR(1)
137 for details\&.
140 \-C <commit>, \-\-reuse\-message=<commit>
141 .RS 4
142 Take an existing commit object, and reuse the log message and the authorship information (including the timestamp) when creating the commit\&.
145 \-c <commit>, \-\-reedit\-message=<commit>
146 .RS 4
147 Like
148 \fI\-C\fR, but with
149 \fB\-c\fR
150 the editor is invoked, so that the user can further edit the commit message\&.
153 \-\-fixup=[(amend|reword):]<commit>
154 .RS 4
155 Create a new commit which "fixes up"
156 \fB<commit>\fR
157 when applied with
158 \fBgit rebase \-\-autosquash\fR\&. Plain
159 \fB\-\-fixup=<commit>\fR
160 creates a "fixup!" commit which changes the content of
161 \fB<commit>\fR
162 but leaves its log message untouched\&.
163 \fB\-\-fixup=amend:<commit>\fR
164 is similar but creates an "amend!" commit which also replaces the log message of
165 \fB<commit>\fR
166 with the log message of the "amend!" commit\&.
167 \fB\-\-fixup=reword:<commit>\fR
168 creates an "amend!" commit which replaces the log message of
169 \fB<commit>\fR
170 with its own log message but makes no changes to the content of
171 \fB<commit>\fR\&.
173 The commit created by plain
174 \fB\-\-fixup=<commit>\fR
175 has a subject composed of "fixup!" followed by the subject line from <commit>, and is recognized specially by
176 \fBgit rebase \-\-autosquash\fR\&. The
177 \fB\-m\fR
178 option may be used to supplement the log message of the created commit, but the additional commentary will be thrown away once the "fixup!" commit is squashed into
179 \fB<commit>\fR
181 \fBgit rebase \-\-autosquash\fR\&.
183 The commit created by
184 \fB\-\-fixup=amend:<commit>\fR
185 is similar but its subject is instead prefixed with "amend!"\&. The log message of <commit> is copied into the log message of the "amend!" commit and opened in an editor so it can be refined\&. When
186 \fBgit rebase \-\-autosquash\fR
187 squashes the "amend!" commit into
188 \fB<commit>\fR, the log message of
189 \fB<commit>\fR
190 is replaced by the refined log message from the "amend!" commit\&. It is an error for the "amend!" commit\(cqs log message to be empty unless
191 \fB\-\-allow\-empty\-message\fR
192 is specified\&.
194 \fB\-\-fixup=reword:<commit>\fR
195 is shorthand for
196 \fB\-\-fixup=amend:<commit> \-\-only\fR\&. It creates an "amend!" commit with only a log message (ignoring any changes staged in the index)\&. When squashed by
197 \fBgit rebase \-\-autosquash\fR, it replaces the log message of
198 \fB<commit>\fR
199 without making any other changes\&.
201 Neither "fixup!" nor "amend!" commits change authorship of
202 \fB<commit>\fR
203 when applied by
204 \fBgit rebase \-\-autosquash\fR\&. See
205 \fBgit-rebase\fR(1)
206 for details\&.
209 \-\-squash=<commit>
210 .RS 4
211 Construct a commit message for use with
212 \fBrebase \-\-autosquash\fR\&. The commit message subject line is taken from the specified commit with a prefix of "squash! "\&. Can be used with additional commit message options (\fB\-m\fR/\fB\-c\fR/\fB\-C\fR/\fB\-F\fR)\&. See
213 \fBgit-rebase\fR(1)
214 for details\&.
217 \-\-reset\-author
218 .RS 4
219 When used with \-C/\-c/\-\-amend options, or when committing after a conflicting cherry\-pick, declare that the authorship of the resulting commit now belongs to the committer\&. This also renews the author timestamp\&.
222 \-\-short
223 .RS 4
224 When doing a dry\-run, give the output in the short\-format\&. See
225 \fBgit-status\fR(1)
226 for details\&. Implies
227 \fB\-\-dry\-run\fR\&.
230 \-\-branch
231 .RS 4
232 Show the branch and tracking info even in short\-format\&.
235 \-\-porcelain
236 .RS 4
237 When doing a dry\-run, give the output in a porcelain\-ready format\&. See
238 \fBgit-status\fR(1)
239 for details\&. Implies
240 \fB\-\-dry\-run\fR\&.
243 \-\-long
244 .RS 4
245 When doing a dry\-run, give the output in the long\-format\&. Implies
246 \fB\-\-dry\-run\fR\&.
249 \-z, \-\-null
250 .RS 4
251 When showing
252 \fBshort\fR
254 \fBporcelain\fR
255 status output, print the filename verbatim and terminate the entries with NUL, instead of LF\&. If no format is given, implies the
256 \fB\-\-porcelain\fR
257 output format\&. Without the
258 \fB\-z\fR
259 option, filenames with "unusual" characters are quoted as explained for the configuration variable
260 \fBcore\&.quotePath\fR
261 (see
262 \fBgit-config\fR(1))\&.
265 \-F <file>, \-\-file=<file>
266 .RS 4
267 Take the commit message from the given file\&. Use
268 \fI\-\fR
269 to read the message from the standard input\&.
272 \-\-author=<author>
273 .RS 4
274 Override the commit author\&. Specify an explicit author using the standard
275 \fBA U Thor <author@example\&.com>\fR
276 format\&. Otherwise <author> is assumed to be a pattern and is used to search for an existing commit by that author (i\&.e\&. rev\-list \-\-all \-i \-\-author=<author>); the commit author is then copied from the first such commit found\&.
279 \-\-date=<date>
280 .RS 4
281 Override the author date used in the commit\&.
284 \-m <msg>, \-\-message=<msg>
285 .RS 4
286 Use the given <msg> as the commit message\&. If multiple
287 \fB\-m\fR
288 options are given, their values are concatenated as separate paragraphs\&.
291 \fB\-m\fR
292 option is mutually exclusive with
293 \fB\-c\fR,
294 \fB\-C\fR, and
295 \fB\-F\fR\&.
298 \-t <file>, \-\-template=<file>
299 .RS 4
300 When editing the commit message, start the editor with the contents in the given file\&. The
301 \fBcommit\&.template\fR
302 configuration variable is often used to give this option implicitly to the command\&. This mechanism can be used by projects that want to guide participants with some hints on what to write in the message in what order\&. If the user exits the editor without editing the message, the commit is aborted\&. This has no effect when a message is given by other means, e\&.g\&. with the
303 \fB\-m\fR
305 \fB\-F\fR
306 options\&.
309 \-s, \-\-signoff, \-\-no\-signoff
310 .RS 4
311 Add a
312 \fBSigned\-off\-by\fR
313 trailer by the committer at the end of the commit log message\&. The meaning of a signoff depends on the project to which you\(cqre committing\&. For example, it may certify that the committer has the rights to submit the work under the project\(cqs license or agrees to some contributor representation, such as a Developer Certificate of Origin\&. (See
314 \m[blue]\fBhttps://developercertificate\&.org\fR\m[]
315 for the one used by the Linux kernel and Git projects\&.) Consult the documentation or leadership of the project to which you\(cqre contributing to understand how the signoffs are used in that project\&.
317 The \-\-no\-signoff option can be used to countermand an earlier \-\-signoff option on the command line\&.
320 \-\-trailer <token>[(=|:)<value>]
321 .RS 4
322 Specify a (<token>, <value>) pair that should be applied as a trailer\&. (e\&.g\&.
323 \fBgit commit \-\-trailer "Signed\-off\-by:C O Mitter \e <committer@example\&.com>" \-\-trailer "Helped\-by:C O Mitter \e <committer@example\&.com>"\fR
324 will add the "Signed\-off\-by" trailer and the "Helped\-by" trailer to the commit message\&.) The
325 \fBtrailer\&.*\fR
326 configuration variables (\fBgit-interpret-trailers\fR(1)) can be used to define if a duplicated trailer is omitted, where in the run of trailers each trailer would appear, and other details\&.
329 \-n, \-\-[no\-]verify
330 .RS 4
331 By default, the pre\-commit and commit\-msg hooks are run\&. When any of
332 \fB\-\-no\-verify\fR
334 \fB\-n\fR
335 is given, these are bypassed\&. See also
336 \fBgithooks\fR(5)\&.
339 \-\-allow\-empty
340 .RS 4
341 Usually recording a commit that has the exact same tree as its sole parent commit is a mistake, and the command prevents you from making such a commit\&. This option bypasses the safety, and is primarily for use by foreign SCM interface scripts\&.
344 \-\-allow\-empty\-message
345 .RS 4
346 Like \-\-allow\-empty this command is primarily for use by foreign SCM interface scripts\&. It allows you to create a commit with an empty commit message without using plumbing commands like
347 \fBgit-commit-tree\fR(1)\&.
350 \-\-cleanup=<mode>
351 .RS 4
352 This option determines how the supplied commit message should be cleaned up before committing\&. The
353 \fI<mode>\fR
354 can be
355 \fBstrip\fR,
356 \fBwhitespace\fR,
357 \fBverbatim\fR,
358 \fBscissors\fR
360 \fBdefault\fR\&.
362 strip
363 .RS 4
364 Strip leading and trailing empty lines, trailing whitespace, commentary and collapse consecutive empty lines\&.
367 whitespace
368 .RS 4
369 Same as
370 \fBstrip\fR
371 except #commentary is not removed\&.
374 verbatim
375 .RS 4
376 Do not change the message at all\&.
379 scissors
380 .RS 4
381 Same as
382 \fBwhitespace\fR
383 except that everything from (and including) the line found below is truncated, if the message is to be edited\&. "\fB#\fR" can be customized with core\&.commentChar\&.
385 .if n \{\
386 .RS 4
389 # \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- >8 \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
391 .if n \{\
396 default
397 .RS 4
398 Same as
399 \fBstrip\fR
400 if the message is to be edited\&. Otherwise
401 \fBwhitespace\fR\&.
404 The default can be changed by the
405 \fBcommit\&.cleanup\fR
406 configuration variable (see
407 \fBgit-config\fR(1))\&.
410 \-e, \-\-edit
411 .RS 4
412 The message taken from file with
413 \fB\-F\fR, command line with
414 \fB\-m\fR, and from commit object with
415 \fB\-C\fR
416 are usually used as the commit log message unmodified\&. This option lets you further edit the message taken from these sources\&.
419 \-\-no\-edit
420 .RS 4
421 Use the selected commit message without launching an editor\&. For example,
422 \fBgit commit \-\-amend \-\-no\-edit\fR
423 amends a commit without changing its commit message\&.
426 \-\-amend
427 .RS 4
428 Replace the tip of the current branch by creating a new commit\&. The recorded tree is prepared as usual (including the effect of the
429 \fB\-i\fR
431 \fB\-o\fR
432 options and explicit pathspec), and the message from the original commit is used as the starting point, instead of an empty message, when no other message is specified from the command line via options such as
433 \fB\-m\fR,
434 \fB\-F\fR,
435 \fB\-c\fR, etc\&. The new commit has the same parents and author as the current one (the
436 \fB\-\-reset\-author\fR
437 option can countermand this)\&.
439 It is a rough equivalent for:
441 .if n \{\
442 .RS 4
445         $ git reset \-\-soft HEAD^
446         $ \&.\&.\&. do something else to come up with the right tree \&.\&.\&.
447         $ git commit \-c ORIG_HEAD
449 .if n \{\
453 but can be used to amend a merge commit\&.
455 You should understand the implications of rewriting history if you amend a commit that has already been published\&. (See the "RECOVERING FROM UPSTREAM REBASE" section in
456 \fBgit-rebase\fR(1)\&.)
459 \-\-no\-post\-rewrite
460 .RS 4
461 Bypass the post\-rewrite hook\&.
464 \-i, \-\-include
465 .RS 4
466 Before making a commit out of staged contents so far, stage the contents of paths given on the command line as well\&. This is usually not what you want unless you are concluding a conflicted merge\&.
469 \-o, \-\-only
470 .RS 4
471 Make a commit by taking the updated working tree contents of the paths specified on the command line, disregarding any contents that have been staged for other paths\&. This is the default mode of operation of
472 \fIgit commit\fR
473 if any paths are given on the command line, in which case this option can be omitted\&. If this option is specified together with
474 \fB\-\-amend\fR, then no paths need to be specified, which can be used to amend the last commit without committing changes that have already been staged\&. If used together with
475 \fB\-\-allow\-empty\fR
476 paths are also not required, and an empty commit will be created\&.
479 \-\-pathspec\-from\-file=<file>
480 .RS 4
481 Pathspec is passed in
482 \fB<file>\fR
483 instead of commandline args\&. If
484 \fB<file>\fR
485 is exactly
486 \fB\-\fR
487 then standard input is used\&. Pathspec elements are separated by LF or CR/LF\&. Pathspec elements can be quoted as explained for the configuration variable
488 \fBcore\&.quotePath\fR
489 (see
490 \fBgit-config\fR(1))\&. See also
491 \fB\-\-pathspec\-file\-nul\fR
492 and global
493 \fB\-\-literal\-pathspecs\fR\&.
496 \-\-pathspec\-file\-nul
497 .RS 4
498 Only meaningful with
499 \fB\-\-pathspec\-from\-file\fR\&. Pathspec elements are separated with NUL character and all other characters are taken literally (including newlines and quotes)\&.
502 \-u[<mode>], \-\-untracked\-files[=<mode>]
503 .RS 4
504 Show untracked files\&.
506 The mode parameter is optional (defaults to
507 \fIall\fR), and is used to specify the handling of untracked files; when \-u is not used, the default is
508 \fInormal\fR, i\&.e\&. show untracked files and directories\&.
510 The possible options are:
512 .RS 4
513 .ie n \{\
514 \h'-04'\(bu\h'+03'\c
516 .el \{\
517 .sp -1
518 .IP \(bu 2.3
520 \fIno\fR
521 \- Show no untracked files
524 .RS 4
525 .ie n \{\
526 \h'-04'\(bu\h'+03'\c
528 .el \{\
529 .sp -1
530 .IP \(bu 2.3
532 \fInormal\fR
533 \- Shows untracked files and directories
536 .RS 4
537 .ie n \{\
538 \h'-04'\(bu\h'+03'\c
540 .el \{\
541 .sp -1
542 .IP \(bu 2.3
544 \fIall\fR
545 \- Also shows individual files in untracked directories\&.
548 All usual spellings for Boolean value
549 \fBtrue\fR
550 are taken as
551 \fBnormal\fR
553 \fBfalse\fR
555 \fBno\fR\&. The default can be changed using the status\&.showUntrackedFiles configuration variable documented in
556 \fBgit-config\fR(1)\&.
559 \-v, \-\-verbose
560 .RS 4
561 Show unified diff between the HEAD commit and what would be committed at the bottom of the commit message template to help the user describe the commit by reminding what changes the commit has\&. Note that this diff output doesn\(cqt have its lines prefixed with
562 \fI#\fR\&. This diff will not be a part of the commit message\&. See the
563 \fBcommit\&.verbose\fR
564 configuration variable in
565 \fBgit-config\fR(1)\&.
567 If specified twice, show in addition the unified diff between what would be committed and the worktree files, i\&.e\&. the unstaged changes to tracked files\&.
570 \-q, \-\-quiet
571 .RS 4
572 Suppress commit summary message\&.
575 \-\-dry\-run
576 .RS 4
577 Do not create a commit, but show a list of paths that are to be committed, paths with local changes that will be left uncommitted and paths that are untracked\&.
580 \-\-status
581 .RS 4
582 Include the output of
583 \fBgit-status\fR(1)
584 in the commit message template when using an editor to prepare the commit message\&. Defaults to on, but can be used to override configuration variable commit\&.status\&.
587 \-\-no\-status
588 .RS 4
589 Do not include the output of
590 \fBgit-status\fR(1)
591 in the commit message template when using an editor to prepare the default commit message\&.
594 \-S[<keyid>], \-\-gpg\-sign[=<keyid>], \-\-no\-gpg\-sign
595 .RS 4
596 GPG\-sign commits\&. The
597 \fBkeyid\fR
598 argument is optional and defaults to the committer identity; if specified, it must be stuck to the option without a space\&.
599 \fB\-\-no\-gpg\-sign\fR
600 is useful to countermand both
601 \fBcommit\&.gpgSign\fR
602 configuration variable, and earlier
603 \fB\-\-gpg\-sign\fR\&.
606 \-\-
607 .RS 4
608 Do not interpret any more arguments as options\&.
611 <pathspec>\&...\:
612 .RS 4
613 When pathspec is given on the command line, commit the contents of the files that match the pathspec without recording the changes already added to the index\&. The contents of these files are also staged for the next commit on top of what have been staged before\&.
615 For more details, see the
616 \fIpathspec\fR
617 entry in
618 \fBgitglossary\fR(7)\&.
620 .SH "EXAMPLES"
622 When recording your own work, the contents of modified files in your working tree are temporarily stored to a staging area called the "index" with \fIgit add\fR\&. A file can be reverted back, only in the index but not in the working tree, to that of the last commit with \fBgit restore \-\-staged <file>\fR, which effectively reverts \fIgit add\fR and prevents the changes to this file from participating in the next commit\&. After building the state to be committed incrementally with these commands, \fBgit commit\fR (without any pathname parameter) is used to record what has been staged so far\&. This is the most basic form of the command\&. An example:
624 .if n \{\
625 .RS 4
628 $ edit hello\&.c
629 $ git rm goodbye\&.c
630 $ git add hello\&.c
631 $ git commit
633 .if n \{\
637 Instead of staging files after each individual change, you can tell \fBgit commit\fR to notice the changes to the files whose contents are tracked in your working tree and do corresponding \fBgit add\fR and \fBgit rm\fR for you\&. That is, this example does the same as the earlier example if there is no other change in your working tree:
639 .if n \{\
640 .RS 4
643 $ edit hello\&.c
644 $ rm goodbye\&.c
645 $ git commit \-a
647 .if n \{\
651 The command \fBgit commit \-a\fR first looks at your working tree, notices that you have modified hello\&.c and removed goodbye\&.c, and performs necessary \fBgit add\fR and \fBgit rm\fR for you\&.
653 After staging changes to many files, you can alter the order the changes are recorded in, by giving pathnames to \fBgit commit\fR\&. When pathnames are given, the command makes a commit that only records the changes made to the named paths:
655 .if n \{\
656 .RS 4
659 $ edit hello\&.c hello\&.h
660 $ git add hello\&.c hello\&.h
661 $ edit Makefile
662 $ git commit Makefile
664 .if n \{\
668 This makes a commit that records the modification to \fBMakefile\fR\&. The changes staged for \fBhello\&.c\fR and \fBhello\&.h\fR are not included in the resulting commit\&. However, their changes are not lost \(em they are still staged and merely held back\&. After the above sequence, if you do:
670 .if n \{\
671 .RS 4
674 $ git commit
676 .if n \{\
680 this second commit would record the changes to \fBhello\&.c\fR and \fBhello\&.h\fR as expected\&.
682 After a merge (initiated by \fIgit merge\fR or \fIgit pull\fR) stops because of conflicts, cleanly merged paths are already staged to be committed for you, and paths that conflicted are left in unmerged state\&. You would have to first check which paths are conflicting with \fIgit status\fR and after fixing them manually in your working tree, you would stage the result as usual with \fIgit add\fR:
684 .if n \{\
685 .RS 4
688 $ git status | grep unmerged
689 unmerged: hello\&.c
690 $ edit hello\&.c
691 $ git add hello\&.c
693 .if n \{\
697 After resolving conflicts and staging the result, \fBgit ls\-files \-u\fR would stop mentioning the conflicted path\&. When you are done, run \fBgit commit\fR to finally record the merge:
699 .if n \{\
700 .RS 4
703 $ git commit
705 .if n \{\
709 As with the case to record your own changes, you can use \fB\-a\fR option to save typing\&. One difference is that during a merge resolution, you cannot use \fBgit commit\fR with pathnames to alter the order the changes are committed, because the merge should be recorded as a single commit\&. In fact, the command refuses to run when given pathnames (but see \fB\-i\fR option)\&.
710 .SH "COMMIT INFORMATION"
712 Author and committer information is taken from the following environment variables, if set:
714 .if n \{\
715 .RS 4
718 GIT_AUTHOR_NAME
719 GIT_AUTHOR_EMAIL
720 GIT_AUTHOR_DATE
721 GIT_COMMITTER_NAME
722 GIT_COMMITTER_EMAIL
723 GIT_COMMITTER_DATE
725 .if n \{\
729 (nb "<", ">" and "\en"s are stripped)
731 The author and committer names are by convention some form of a personal name (that is, the name by which other humans refer to you), although Git does not enforce or require any particular form\&. Arbitrary Unicode may be used, subject to the constraints listed above\&. This name has no effect on authentication; for that, see the \fBcredential\&.username\fR variable in \fBgit-config\fR(1)\&.
733 In case (some of) these environment variables are not set, the information is taken from the configuration items \fBuser\&.name\fR and \fBuser\&.email\fR, or, if not present, the environment variable EMAIL, or, if that is not set, system user name and the hostname used for outgoing mail (taken from \fB/etc/mailname\fR and falling back to the fully qualified hostname when that file does not exist)\&.
735 The \fBauthor\&.name\fR and \fBcommitter\&.name\fR and their corresponding email options override \fBuser\&.name\fR and \fBuser\&.email\fR if set and are overridden themselves by the environment variables\&.
737 The typical usage is to set just the \fBuser\&.name\fR and \fBuser\&.email\fR variables; the other options are provided for more complex use cases\&.
738 .SH "DATE FORMATS"
740 The \fBGIT_AUTHOR_DATE\fR and \fBGIT_COMMITTER_DATE\fR environment variables support the following date formats:
742 Git internal format
743 .RS 4
744 It is
745 \fB<unix\-timestamp> <time\-zone\-offset>\fR, where
746 \fB<unix\-timestamp>\fR
747 is the number of seconds since the UNIX epoch\&.
748 \fB<time\-zone\-offset>\fR
749 is a positive or negative offset from UTC\&. For example CET (which is 1 hour ahead of UTC) is
750 \fB+0100\fR\&.
753 RFC 2822
754 .RS 4
755 The standard date format as described by RFC 2822, for example
756 \fBThu, 07 Apr 2005 22:13:13 +0200\fR\&.
759 ISO 8601
760 .RS 4
761 Time and date specified by the ISO 8601 standard, for example
762 \fB2005\-04\-07T22:13:13\fR\&. The parser accepts a space instead of the
763 \fBT\fR
764 character as well\&. Fractional parts of a second will be ignored, for example
765 \fB2005\-04\-07T22:13:13\&.019\fR
766 will be treated as
767 \fB2005\-04\-07T22:13:13\fR\&.
768 .if n \{\
771 .RS 4
772 .it 1 an-trap
773 .nr an-no-space-flag 1
774 .nr an-break-flag 1
776 .ps +1
777 \fBNote\fR
778 .ps -1
780 In addition, the date part is accepted in the following formats:
781 \fBYYYY\&.MM\&.DD\fR,
782 \fBMM/DD/YYYY\fR
784 \fBDD\&.MM\&.YYYY\fR\&.
785 .sp .5v
789 In addition to recognizing all date formats above, the \fB\-\-date\fR option will also try to make sense of other, more human\-centric date formats, such as relative dates like "yesterday" or "last Friday at noon"\&.
790 .SH "DISCUSSION"
792 Though not required, it\(cqs a good idea to begin the commit message with a single short (no more than 50 characters) line summarizing the change, followed by a blank line and then a more thorough description\&. The text up to the first blank line in a commit message is treated as the commit title, and that title is used throughout Git\&. For example, \fBgit-format-patch\fR(1) turns a commit into email, and it uses the title on the Subject line and the rest of the commit in the body\&.
794 Git is to some extent character encoding agnostic\&.
796 .RS 4
797 .ie n \{\
798 \h'-04'\(bu\h'+03'\c
800 .el \{\
801 .sp -1
802 .IP \(bu 2.3
804 The contents of the blob objects are uninterpreted sequences of bytes\&. There is no encoding translation at the core level\&.
807 .RS 4
808 .ie n \{\
809 \h'-04'\(bu\h'+03'\c
811 .el \{\
812 .sp -1
813 .IP \(bu 2.3
815 Path names are encoded in UTF\-8 normalization form C\&. This applies to tree objects, the index file, ref names, as well as path names in command line arguments, environment variables and config files (\fB\&.git/config\fR
816 (see
817 \fBgit-config\fR(1)),
818 \fBgitignore\fR(5),
819 \fBgitattributes\fR(5)
821 \fBgitmodules\fR(5))\&.
823 Note that Git at the core level treats path names simply as sequences of non\-NUL bytes, there are no path name encoding conversions (except on Mac and Windows)\&. Therefore, using non\-ASCII path names will mostly work even on platforms and file systems that use legacy extended ASCII encodings\&. However, repositories created on such systems will not work properly on UTF\-8\-based systems (e\&.g\&. Linux, Mac, Windows) and vice versa\&. Additionally, many Git\-based tools simply assume path names to be UTF\-8 and will fail to display other encodings correctly\&.
826 .RS 4
827 .ie n \{\
828 \h'-04'\(bu\h'+03'\c
830 .el \{\
831 .sp -1
832 .IP \(bu 2.3
834 Commit log messages are typically encoded in UTF\-8, but other extended ASCII encodings are also supported\&. This includes ISO\-8859\-x, CP125x and many others, but
835 \fInot\fR
836 UTF\-16/32, EBCDIC and CJK multi\-byte encodings (GBK, Shift\-JIS, Big5, EUC\-x, CP9xx etc\&.)\&.
839 Although we encourage that the commit log messages are encoded in UTF\-8, both the core and Git Porcelain are designed not to force UTF\-8 on projects\&. If all participants of a particular project find it more convenient to use legacy encodings, Git does not forbid it\&. However, there are a few things to keep in mind\&.
841 .RS 4
842 .ie n \{\
843 \h'-04' 1.\h'+01'\c
845 .el \{\
846 .sp -1
847 .IP "  1." 4.2
849 \fIgit commit\fR
851 \fIgit commit\-tree\fR
852 issue a warning if the commit log message given to it does not look like a valid UTF\-8 string, unless you explicitly say your project uses a legacy encoding\&. The way to say this is to have
853 \fBi18n\&.commitEncoding\fR
855 \fB\&.git/config\fR
856 file, like this:
858 .if n \{\
859 .RS 4
862 [i18n]
863         commitEncoding = ISO\-8859\-1
865 .if n \{\
869 Commit objects created with the above setting record the value of
870 \fBi18n\&.commitEncoding\fR
871 in their
872 \fBencoding\fR
873 header\&. This is to help other people who look at them later\&. Lack of this header implies that the commit log message is encoded in UTF\-8\&.
876 .RS 4
877 .ie n \{\
878 \h'-04' 2.\h'+01'\c
880 .el \{\
881 .sp -1
882 .IP "  2." 4.2
884 \fIgit log\fR,
885 \fIgit show\fR,
886 \fIgit blame\fR
887 and friends look at the
888 \fBencoding\fR
889 header of a commit object, and try to re\-code the log message into UTF\-8 unless otherwise specified\&. You can specify the desired output encoding with
890 \fBi18n\&.logOutputEncoding\fR
892 \fB\&.git/config\fR
893 file, like this:
895 .if n \{\
896 .RS 4
899 [i18n]
900         logOutputEncoding = ISO\-8859\-1
902 .if n \{\
906 If you do not have this configuration variable, the value of
907 \fBi18n\&.commitEncoding\fR
908 is used instead\&.
911 Note that we deliberately chose not to re\-code the commit log message when a commit is made to force UTF\-8 at the commit object level, because re\-coding to UTF\-8 is not necessarily a reversible operation\&.
912 .SH "ENVIRONMENT AND CONFIGURATION VARIABLES"
914 The editor used to edit the commit log message will be chosen from the \fBGIT_EDITOR\fR environment variable, the core\&.editor configuration variable, the \fBVISUAL\fR environment variable, or the \fBEDITOR\fR environment variable (in that order)\&. See \fBgit-var\fR(1) for details\&.
916 Everything above this line in this section isn\(cqt included from the \fBgit-config\fR(1) documentation\&. The content that follows is the same as what\(cqs found there:
918 commit\&.cleanup
919 .RS 4
920 This setting overrides the default of the
921 \fB\-\-cleanup\fR
922 option in
923 \fBgit commit\fR\&. See
924 \fBgit-commit\fR(1)
925 for details\&. Changing the default can be useful when you always want to keep lines that begin with the comment character
926 \fB#\fR
927 in your log message, in which case you would do
928 \fBgit config commit\&.cleanup whitespace\fR
929 (note that you will have to remove the help lines that begin with
930 \fB#\fR
931 in the commit log template yourself, if you do this)\&.
934 commit\&.gpgSign
935 .RS 4
936 A boolean to specify whether all commits should be GPG signed\&. Use of this option when doing operations such as rebase can result in a large number of commits being signed\&. It may be convenient to use an agent to avoid typing your GPG passphrase several times\&.
939 commit\&.status
940 .RS 4
941 A boolean to enable/disable inclusion of status information in the commit message template when using an editor to prepare the commit message\&. Defaults to true\&.
944 commit\&.template
945 .RS 4
946 Specify the pathname of a file to use as the template for new commit messages\&.
949 commit\&.verbose
950 .RS 4
951 A boolean or int to specify the level of verbosity with
952 \fBgit commit\fR\&. See
953 \fBgit-commit\fR(1)\&.
955 .SH "HOOKS"
957 This command can run \fBcommit\-msg\fR, \fBprepare\-commit\-msg\fR, \fBpre\-commit\fR, \fBpost\-commit\fR and \fBpost\-rewrite\fR hooks\&. See \fBgithooks\fR(5) for more information\&.
958 .SH "FILES"
960 \fB$GIT_DIR/COMMIT_EDITMSG\fR
961 .RS 4
962 This file contains the commit message of a commit in progress\&. If
963 \fBgit commit\fR
964 exits due to an error before creating a commit, any commit message that has been provided by the user (e\&.g\&., in an editor session) will be available in this file, but will be overwritten by the next invocation of
965 \fBgit commit\fR\&.
967 .SH "SEE ALSO"
969 \fBgit-add\fR(1), \fBgit-rm\fR(1), \fBgit-mv\fR(1), \fBgit-merge\fR(1), \fBgit-commit-tree\fR(1)
970 .SH "GIT"
972 Part of the \fBgit\fR(1) suite