Autogenerated manpages for v2.47.0-305-g4083a
[git-manpages.git] / man1 / git-commit.1
blob0578dc79f1a1eb656f98e47b135d17bb530e12cb
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-11-20
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.47.0.305.g4083a6f052
8 .\"  Language: English
9 .\"
10 .TH "GIT\-COMMIT" "1" "2024-11-20" "Git 2\&.47\&.0\&.305\&.g4083a6" "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 \fI<commit>\fR
157 when applied with
158 \fBgit\fR
159 \fBrebase\fR
160 \fB\-\-autosquash\fR\&. Plain
161 \fB\-\-fixup=\fR\fI<commit>\fR
162 creates a "fixup!" commit which changes the content of
163 \fI<commit>\fR
164 but leaves its log message untouched\&.
165 \fB\-\-fixup=amend:\fR\fI<commit>\fR
166 is similar but creates an "amend!" commit which also replaces the log message of
167 \fI<commit>\fR
168 with the log message of the "amend!" commit\&.
169 \fB\-\-fixup=reword:\fR\fI<commit>\fR
170 creates an "amend!" commit which replaces the log message of
171 \fI<commit>\fR
172 with its own log message but makes no changes to the content of
173 \fI<commit>\fR\&.
175 The commit created by plain
176 \fB\-\-fixup=\fR\fI<commit>\fR
177 has a subject composed of "fixup!" followed by the subject line from <commit>, and is recognized specially by
178 \fBgit\fR
179 \fBrebase\fR
180 \fB\-\-autosquash\fR\&. The
181 \fB\-m\fR
182 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
183 \fI<commit>\fR
185 \fBgit\fR
186 \fBrebase\fR
187 \fB\-\-autosquash\fR\&.
189 The commit created by
190 \fB\-\-fixup=amend:\fR\fI<commit>\fR
191 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
192 \fBgit\fR
193 \fBrebase\fR
194 \fB\-\-autosquash\fR
195 squashes the "amend!" commit into
196 \fI<commit>\fR, the log message of
197 \fI<commit>\fR
198 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
199 \fB\-\-allow\-empty\-message\fR
200 is specified\&.
202 \fB\-\-fixup=reword:\fR\fI<commit>\fR
203 is shorthand for
204 \fB\-\-fixup=amend:\fR\fI<commit>\fR
205 \fB\-\-only\fR\&. It creates an "amend!" commit with only a log message (ignoring any changes staged in the index)\&. When squashed by
206 \fBgit\fR
207 \fBrebase\fR
208 \fB\-\-autosquash\fR, it replaces the log message of
209 \fI<commit>\fR
210 without making any other changes\&.
212 Neither "fixup!" nor "amend!" commits change authorship of
213 \fI<commit>\fR
214 when applied by
215 \fBgit\fR
216 \fBrebase\fR
217 \fB\-\-autosquash\fR\&. See
218 \fBgit-rebase\fR(1)
219 for details\&.
222 \-\-squash=<commit>
223 .RS 4
224 Construct a commit message for use with
225 \fBrebase\fR
226 \fB\-\-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
227 \fBgit-rebase\fR(1)
228 for details\&.
231 \-\-reset\-author
232 .RS 4
233 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\&.
236 \-\-short
237 .RS 4
238 When doing a dry\-run, give the output in the short\-format\&. See
239 \fBgit-status\fR(1)
240 for details\&. Implies
241 \fB\-\-dry\-run\fR\&.
244 \-\-branch
245 .RS 4
246 Show the branch and tracking info even in short\-format\&.
249 \-\-porcelain
250 .RS 4
251 When doing a dry\-run, give the output in a porcelain\-ready format\&. See
252 \fBgit-status\fR(1)
253 for details\&. Implies
254 \fB\-\-dry\-run\fR\&.
257 \-\-long
258 .RS 4
259 When doing a dry\-run, give the output in the long\-format\&. Implies
260 \fB\-\-dry\-run\fR\&.
263 \-z, \-\-null
264 .RS 4
265 When showing
266 \fBshort\fR
268 \fBporcelain\fR
269 status output, print the filename verbatim and terminate the entries with NUL, instead of LF\&. If no format is given, implies the
270 \fB\-\-porcelain\fR
271 output format\&. Without the
272 \fB\-z\fR
273 option, filenames with "unusual" characters are quoted as explained for the configuration variable
274 \fBcore\&.quotePath\fR
275 (see
276 \fBgit-config\fR(1))\&.
279 \-F <file>, \-\-file=<file>
280 .RS 4
281 Take the commit message from the given file\&. Use
282 \fI\-\fR
283 to read the message from the standard input\&.
286 \-\-author=<author>
287 .RS 4
288 Override the commit author\&. Specify an explicit author using the standard
289 \fBA\fR
290 \fBU\fR
291 \fBThor\fR
292 <author@example\&.\fBcom\fR> 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\&.
295 \-\-date=<date>
296 .RS 4
297 Override the author date used in the commit\&.
300 \-m <msg>, \-\-message=<msg>
301 .RS 4
302 Use the given <msg> as the commit message\&. If multiple
303 \fB\-m\fR
304 options are given, their values are concatenated as separate paragraphs\&.
307 \fB\-m\fR
308 option is mutually exclusive with
309 \fB\-c\fR,
310 \fB\-C\fR, and
311 \fB\-F\fR\&.
314 \-t <file>, \-\-template=<file>
315 .RS 4
316 When editing the commit message, start the editor with the contents in the given file\&. The
317 \fBcommit\&.template\fR
318 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
319 \fB\-m\fR
321 \fB\-F\fR
322 options\&.
325 \-s, \-\-signoff, \-\-no\-signoff
326 .RS 4
327 Add a
328 \fBSigned\-off\-by\fR
329 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
330 \m[blue]\fBhttps://developercertificate\&.org\fR\m[]
331 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\&.
333 The \-\-no\-signoff option can be used to countermand an earlier \-\-signoff option on the command line\&.
336 \-\-trailer <token>[(=|:)<value>]
337 .RS 4
338 Specify a (<token>, <value>) pair that should be applied as a trailer\&. (e\&.g\&.
339 \fBgit\fR
340 \fBcommit\fR
341 \fB\-\-trailer\fR
342 "Signed\-off\-by:C
343 \fBO\fR
344 \fBMitter\fR
345 \e <committer@example\&.\fBcom\fR>"
346 \fB\-\-trailer\fR
347 "Helped\-by:C
348 \fBO\fR
349 \fBMitter\fR
350 \e <committer@example\&.\fBcom\fR>" will add the "Signed\-off\-by" trailer and the "Helped\-by" trailer to the commit message\&.) The
351 \fBtrailer\&.\fR* 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\&.
354 \-n, \-\-[no\-]verify
355 .RS 4
356 By default, the pre\-commit and commit\-msg hooks are run\&. When any of
357 \fB\-\-no\-verify\fR
359 \fB\-n\fR
360 is given, these are bypassed\&. See also
361 \fBgithooks\fR(5)\&.
364 \-\-allow\-empty
365 .RS 4
366 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\&.
369 \-\-allow\-empty\-message
370 .RS 4
371 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
372 \fBgit-commit-tree\fR(1)\&.
375 \-\-cleanup=<mode>
376 .RS 4
377 This option determines how the supplied commit message should be cleaned up before committing\&. The
378 \fI<mode>\fR
379 can be
380 \fBstrip\fR,
381 \fBwhitespace\fR,
382 \fBverbatim\fR,
383 \fBscissors\fR
385 \fBdefault\fR\&.
387 strip
388 .RS 4
389 Strip leading and trailing empty lines, trailing whitespace, commentary and collapse consecutive empty lines\&.
392 whitespace
393 .RS 4
394 Same as
395 \fBstrip\fR
396 except #commentary is not removed\&.
399 verbatim
400 .RS 4
401 Do not change the message at all\&.
404 scissors
405 .RS 4
406 Same as
407 \fBwhitespace\fR
408 except that everything from (and including) the line found below is truncated, if the message is to be edited\&. "#" can be customized with core\&.commentChar\&.
410 .if n \{\
411 .RS 4
414 # \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- >8 \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
416 .if n \{\
421 default
422 .RS 4
423 Same as
424 \fBstrip\fR
425 if the message is to be edited\&. Otherwise
426 \fBwhitespace\fR\&.
429 The default can be changed by the
430 \fBcommit\&.cleanup\fR
431 configuration variable (see
432 \fBgit-config\fR(1))\&.
435 \-e, \-\-edit
436 .RS 4
437 The message taken from file with
438 \fB\-F\fR, command line with
439 \fB\-m\fR, and from commit object with
440 \fB\-C\fR
441 are usually used as the commit log message unmodified\&. This option lets you further edit the message taken from these sources\&.
444 \-\-no\-edit
445 .RS 4
446 Use the selected commit message without launching an editor\&. For example,
447 \fBgit\fR
448 \fBcommit\fR
449 \fB\-\-amend\fR
450 \fB\-\-no\-edit\fR
451 amends a commit without changing its commit message\&.
454 \-\-amend
455 .RS 4
456 Replace the tip of the current branch by creating a new commit\&. The recorded tree is prepared as usual (including the effect of the
457 \fB\-i\fR
459 \fB\-o\fR
460 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
461 \fB\-m\fR,
462 \fB\-F\fR,
463 \fB\-c\fR, etc\&. The new commit has the same parents and author as the current one (the
464 \fB\-\-reset\-author\fR
465 option can countermand this)\&.
467 It is a rough equivalent for:
469 .if n \{\
470 .RS 4
473         $ git reset \-\-soft HEAD^
474         $ \&.\&.\&. do something else to come up with the right tree \&.\&.\&.
475         $ git commit \-c ORIG_HEAD
477 .if n \{\
481 but can be used to amend a merge commit\&.
483 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
484 \fBgit-rebase\fR(1)\&.)
487 \-\-no\-post\-rewrite
488 .RS 4
489 Bypass the post\-rewrite hook\&.
492 \-i, \-\-include
493 .RS 4
494 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\&.
497 \-o, \-\-only
498 .RS 4
499 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
500 \fIgit commit\fR
501 if any paths are given on the command line, in which case this option can be omitted\&. If this option is specified together with
502 \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
503 \fB\-\-allow\-empty\fR
504 paths are also not required, and an empty commit will be created\&.
507 \-\-pathspec\-from\-file=<file>
508 .RS 4
509 Pathspec is passed in
510 \fI<file>\fR
511 instead of commandline args\&. If
512 \fI<file>\fR
513 is exactly
514 \fB\-\fR
515 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
516 \fBcore\&.quotePath\fR
517 (see
518 \fBgit-config\fR(1))\&. See also
519 \fB\-\-pathspec\-file\-nul\fR
520 and global
521 \fB\-\-literal\-pathspecs\fR\&.
524 \-\-pathspec\-file\-nul
525 .RS 4
526 Only meaningful with
527 \fB\-\-pathspec\-from\-file\fR\&. Pathspec elements are separated with NUL character and all other characters are taken literally (including newlines and quotes)\&.
530 \-u[<mode>], \-\-untracked\-files[=<mode>]
531 .RS 4
532 Show untracked files\&.
534 The mode parameter is optional (defaults to
535 \fIall\fR), and is used to specify the handling of untracked files; when \-u is not used, the default is
536 \fInormal\fR, i\&.e\&. show untracked files and directories\&.
538 The possible options are:
540 .RS 4
541 .ie n \{\
542 \h'-04'\(bu\h'+03'\c
544 .el \{\
545 .sp -1
546 .IP \(bu 2.3
548 \fIno\fR
549 \- Show no untracked files
552 .RS 4
553 .ie n \{\
554 \h'-04'\(bu\h'+03'\c
556 .el \{\
557 .sp -1
558 .IP \(bu 2.3
560 \fInormal\fR
561 \- Shows untracked files and directories
564 .RS 4
565 .ie n \{\
566 \h'-04'\(bu\h'+03'\c
568 .el \{\
569 .sp -1
570 .IP \(bu 2.3
572 \fIall\fR
573 \- Also shows individual files in untracked directories\&.
576 All usual spellings for Boolean value
577 \fBtrue\fR
578 are taken as
579 \fBnormal\fR
581 \fBfalse\fR
583 \fBno\fR\&. The default can be changed using the status\&.showUntrackedFiles configuration variable documented in
584 \fBgit-config\fR(1)\&.
587 \-v, \-\-verbose
588 .RS 4
589 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
590 \fI#\fR\&. This diff will not be a part of the commit message\&. See the
591 \fBcommit\&.verbose\fR
592 configuration variable in
593 \fBgit-config\fR(1)\&.
595 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\&.
598 \-q, \-\-quiet
599 .RS 4
600 Suppress commit summary message\&.
603 \-\-dry\-run
604 .RS 4
605 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\&.
608 \-\-status
609 .RS 4
610 Include the output of
611 \fBgit-status\fR(1)
612 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\&.
615 \-\-no\-status
616 .RS 4
617 Do not include the output of
618 \fBgit-status\fR(1)
619 in the commit message template when using an editor to prepare the default commit message\&.
622 \-S[<keyid>], \-\-gpg\-sign[=<keyid>], \-\-no\-gpg\-sign
623 .RS 4
624 GPG\-sign commits\&. The
625 \fBkeyid\fR
626 argument is optional and defaults to the committer identity; if specified, it must be stuck to the option without a space\&.
627 \fB\-\-no\-gpg\-sign\fR
628 is useful to countermand both
629 \fBcommit\&.gpgSign\fR
630 configuration variable, and earlier
631 \fB\-\-gpg\-sign\fR\&.
634 \-\-
635 .RS 4
636 Do not interpret any more arguments as options\&.
639 <pathspec>\&...\:
640 .RS 4
641 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\&.
643 For more details, see the
644 \fIpathspec\fR
645 entry in
646 \fBgitglossary\fR(7)\&.
648 .SH "EXAMPLES"
650 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\fR \fBrestore\fR \fB\-\-staged\fR \fI<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\fR \fBcommit\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:
652 .if n \{\
653 .RS 4
656 $ edit hello\&.c
657 $ git rm goodbye\&.c
658 $ git add hello\&.c
659 $ git commit
661 .if n \{\
665 Instead of staging files after each individual change, you can tell \fBgit\fR \fBcommit\fR to notice the changes to the files whose contents are tracked in your working tree and do corresponding \fBgit\fR \fBadd\fR and \fBgit\fR \fBrm\fR for you\&. That is, this example does the same as the earlier example if there is no other change in your working tree:
667 .if n \{\
668 .RS 4
671 $ edit hello\&.c
672 $ rm goodbye\&.c
673 $ git commit \-a
675 .if n \{\
679 The command \fBgit\fR \fBcommit\fR \fB\-a\fR first looks at your working tree, notices that you have modified hello\&.c and removed goodbye\&.c, and performs necessary \fBgit\fR \fBadd\fR and \fBgit\fR \fBrm\fR for you\&.
681 After staging changes to many files, you can alter the order the changes are recorded in, by giving pathnames to \fBgit\fR \fBcommit\fR\&. When pathnames are given, the command makes a commit that only records the changes made to the named paths:
683 .if n \{\
684 .RS 4
687 $ edit hello\&.c hello\&.h
688 $ git add hello\&.c hello\&.h
689 $ edit Makefile
690 $ git commit Makefile
692 .if n \{\
696 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:
698 .if n \{\
699 .RS 4
702 $ git commit
704 .if n \{\
708 this second commit would record the changes to \fBhello\&.c\fR and \fBhello\&.h\fR as expected\&.
710 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:
712 .if n \{\
713 .RS 4
716 $ git status | grep unmerged
717 unmerged: hello\&.c
718 $ edit hello\&.c
719 $ git add hello\&.c
721 .if n \{\
725 After resolving conflicts and staging the result, \fBgit\fR \fBls\-files\fR \fB\-u\fR would stop mentioning the conflicted path\&. When you are done, run \fBgit\fR \fBcommit\fR to finally record the merge:
727 .if n \{\
728 .RS 4
731 $ git commit
733 .if n \{\
737 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\fR \fBcommit\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)\&.
738 .SH "COMMIT INFORMATION"
740 Author and committer information is taken from the following environment variables, if set:
742 .if n \{\
743 .RS 4
746 GIT_AUTHOR_NAME
747 GIT_AUTHOR_EMAIL
748 GIT_AUTHOR_DATE
749 GIT_COMMITTER_NAME
750 GIT_COMMITTER_EMAIL
751 GIT_COMMITTER_DATE
753 .if n \{\
757 (nb "<", ">" and "\en"s are stripped)
759 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)\&.
761 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)\&.
763 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\&.
765 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\&.
766 .SH "DATE FORMATS"
768 The \fBGIT_AUTHOR_DATE\fR and \fBGIT_COMMITTER_DATE\fR environment variables support the following date formats:
770 Git internal format
771 .RS 4
772 It is
773 \fI<unix\-timestamp>\fR
774 \fI<time\-zone\-offset>\fR, where
775 \fI<unix\-timestamp>\fR
776 is the number of seconds since the UNIX epoch\&.
777 \fI<time\-zone\-offset>\fR
778 is a positive or negative offset from UTC\&. For example CET (which is 1 hour ahead of UTC) is
779 \fB+0100\fR\&.
782 RFC 2822
783 .RS 4
784 The standard date format as described by RFC 2822, for example
785 \fBThu,\fR
786 \fB07\fR
787 \fBApr\fR
788 \fB2005\fR
789 \fB22:13:13\fR
790 \fB+0200\fR\&.
793 ISO 8601
794 .RS 4
795 Time and date specified by the ISO 8601 standard, for example
796 \fB2005\-04\-07T22:13:13\fR\&. The parser accepts a space instead of the
797 \fBT\fR
798 character as well\&. Fractional parts of a second will be ignored, for example
799 \fB2005\-04\-07T22:13:13\&.019\fR
800 will be treated as
801 \fB2005\-04\-07T22:13:13\fR\&.
802 .if n \{\
805 .RS 4
806 .it 1 an-trap
807 .nr an-no-space-flag 1
808 .nr an-break-flag 1
810 .ps +1
811 \fBNote\fR
812 .ps -1
814 In addition, the date part is accepted in the following formats:
815 \fBYYYY\&.MM\&.DD\fR,
816 \fBMM/DD/YYYY\fR
818 \fBDD\&.MM\&.YYYY\fR\&.
819 .sp .5v
823 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"\&.
824 .SH "DISCUSSION"
826 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\&.
828 Git is to some extent character encoding agnostic\&.
830 .RS 4
831 .ie n \{\
832 \h'-04'\(bu\h'+03'\c
834 .el \{\
835 .sp -1
836 .IP \(bu 2.3
838 The contents of the blob objects are uninterpreted sequences of bytes\&. There is no encoding translation at the core level\&.
841 .RS 4
842 .ie n \{\
843 \h'-04'\(bu\h'+03'\c
845 .el \{\
846 .sp -1
847 .IP \(bu 2.3
849 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 (\&.\fBgit/config\fR
850 (see
851 \fBgit-config\fR(1)),
852 \fBgitignore\fR(5),
853 \fBgitattributes\fR(5)
855 \fBgitmodules\fR(5))\&.
857 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\&.
860 .RS 4
861 .ie n \{\
862 \h'-04'\(bu\h'+03'\c
864 .el \{\
865 .sp -1
866 .IP \(bu 2.3
868 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
869 \fInot\fR
870 UTF\-16/32, EBCDIC and CJK multi\-byte encodings (GBK, Shift\-JIS, Big5, EUC\-x, CP9xx etc\&.)\&.
873 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\&.
875 .RS 4
876 .ie n \{\
877 \h'-04' 1.\h'+01'\c
879 .el \{\
880 .sp -1
881 .IP "  1." 4.2
883 \fIgit commit\fR
885 \fIgit commit\-tree\fR
886 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
887 \fBi18n\&.commitEncoding\fR
888 in \&.\fBgit/config\fR
889 file, like this:
891 .if n \{\
892 .RS 4
895 [i18n]
896         commitEncoding = ISO\-8859\-1
898 .if n \{\
902 Commit objects created with the above setting record the value of
903 \fBi18n\&.commitEncoding\fR
904 in their
905 \fBencoding\fR
906 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\&.
909 .RS 4
910 .ie n \{\
911 \h'-04' 2.\h'+01'\c
913 .el \{\
914 .sp -1
915 .IP "  2." 4.2
917 \fIgit log\fR,
918 \fIgit show\fR,
919 \fIgit blame\fR
920 and friends look at the
921 \fBencoding\fR
922 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
923 \fBi18n\&.logOutputEncoding\fR
924 in \&.\fBgit/config\fR
925 file, like this:
927 .if n \{\
928 .RS 4
931 [i18n]
932         logOutputEncoding = ISO\-8859\-1
934 .if n \{\
938 If you do not have this configuration variable, the value of
939 \fBi18n\&.commitEncoding\fR
940 is used instead\&.
943 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\&.
944 .SH "ENVIRONMENT AND CONFIGURATION VARIABLES"
946 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\&.
948 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:
950 commit\&.cleanup
951 .RS 4
952 This setting overrides the default of the
953 \fB\-\-cleanup\fR
954 option in
955 \fBgit\fR
956 \fBcommit\fR\&. See
957 \fBgit-commit\fR(1)
958 for details\&. Changing the default can be useful when you always want to keep lines that begin with the comment character # in your log message, in which case you would do
959 \fBgit\fR
960 \fBconfig\fR
961 \fBcommit\&.cleanup\fR
962 \fBwhitespace\fR
963 (note that you will have to remove the help lines that begin with # in the commit log template yourself, if you do this)\&.
966 commit\&.gpgSign
967 .RS 4
968 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\&.
971 commit\&.status
972 .RS 4
973 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\&.
976 commit\&.template
977 .RS 4
978 Specify the pathname of a file to use as the template for new commit messages\&.
981 commit\&.verbose
982 .RS 4
983 A boolean or int to specify the level of verbosity with
984 \fBgit\fR
985 \fBcommit\fR\&. See
986 \fBgit-commit\fR(1)\&.
988 .SH "HOOKS"
990 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\&.
991 .SH "FILES"
993 \fB$GIT_DIR/COMMIT_EDITMSG\fR
994 .RS 4
995 This file contains the commit message of a commit in progress\&. If
996 \fBgit\fR
997 \fBcommit\fR
998 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
999 \fBgit\fR
1000 \fBcommit\fR\&.
1002 .SH "SEE ALSO"
1004 \fBgit-add\fR(1), \fBgit-rm\fR(1), \fBgit-mv\fR(1), \fBgit-merge\fR(1), \fBgit-commit-tree\fR(1)
1005 .SH "GIT"
1007 Part of the \fBgit\fR(1) suite