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/>
7 .\" Source: Git 2.47.0.305.g4083a6f052
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 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
25 .\" disable justification (adjust text to left margin only)
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
31 git-commit \- Record changes to the repository
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>\&...\:]
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))\&.
48 The content to be committed can be specified in several ways:
60 to incrementally "add" changes to the index before using the
62 command (Note: even modified files must be "added");
75 to remove files from the working tree and the index, again before using the
88 by listing files as arguments to the
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);
101 by using the \-a switch with the
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;
114 by using the \-\-interactive or \-\-patch switches with the
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
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\&.
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\&.
135 Use the interactive patch selection interface to choose which changes to commit\&. See
140 \-C <commit>, \-\-reuse\-message=<commit>
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>
150 the editor is invoked, so that the user can further edit the commit message\&.
153 \-\-fixup=[(amend|reword):]<commit>
155 Create a new commit which "fixes up"
160 \fB\-\-autosquash\fR\&. Plain
161 \fB\-\-fixup=\fR\fI<commit>\fR
162 creates a "fixup!" commit which changes the content of
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
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
172 with its own log message but makes no changes to the content of
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
180 \fB\-\-autosquash\fR\&. The
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
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
195 squashes the "amend!" commit into
196 \fI<commit>\fR, the log message of
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
202 \fB\-\-fixup=reword:\fR\fI<commit>\fR
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
208 \fB\-\-autosquash\fR, it replaces the log message of
210 without making any other changes\&.
212 Neither "fixup!" nor "amend!" commits change authorship of
217 \fB\-\-autosquash\fR\&. See
224 Construct a commit message for use with
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
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\&.
238 When doing a dry\-run, give the output in the short\-format\&. See
240 for details\&. Implies
241 \fB\-\-dry\-run\fR\&.
246 Show the branch and tracking info even in short\-format\&.
251 When doing a dry\-run, give the output in a porcelain\-ready format\&. See
253 for details\&. Implies
254 \fB\-\-dry\-run\fR\&.
259 When doing a dry\-run, give the output in the long\-format\&. Implies
260 \fB\-\-dry\-run\fR\&.
269 status output, print the filename verbatim and terminate the entries with NUL, instead of LF\&. If no format is given, implies the
271 output format\&. Without the
273 option, filenames with "unusual" characters are quoted as explained for the configuration variable
274 \fBcore\&.quotePath\fR
276 \fBgit-config\fR(1))\&.
279 \-F <file>, \-\-file=<file>
281 Take the commit message from the given file\&. Use
283 to read the message from the standard input\&.
288 Override the commit author\&. Specify an explicit author using the standard
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\&.
297 Override the author date used in the commit\&.
300 \-m <msg>, \-\-message=<msg>
302 Use the given <msg> as the commit message\&. If multiple
304 options are given, their values are concatenated as separate paragraphs\&.
308 option is mutually exclusive with
314 \-t <file>, \-\-template=<file>
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
325 \-s, \-\-signoff, \-\-no\-signoff
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>]
338 Specify a (<token>, <value>) pair that should be applied as a trailer\&. (e\&.g\&.
345 \e <committer@example\&.\fBcom\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
356 By default, the pre\-commit and commit\-msg hooks are run\&. When any of
360 is given, these are bypassed\&. See also
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
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)\&.
377 This option determines how the supplied commit message should be cleaned up before committing\&. The
389 Strip leading and trailing empty lines, trailing whitespace, commentary and collapse consecutive empty lines\&.
396 except #commentary is not removed\&.
401 Do not change the message at all\&.
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\&.
414 # \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- >8 \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
425 if the message is to be edited\&. Otherwise
429 The default can be changed by the
430 \fBcommit\&.cleanup\fR
431 configuration variable (see
432 \fBgit-config\fR(1))\&.
437 The message taken from file with
438 \fB\-F\fR, command line with
439 \fB\-m\fR, and from commit object with
441 are usually used as the commit log message unmodified\&. This option lets you further edit the message taken from these sources\&.
446 Use the selected commit message without launching an editor\&. For example,
451 amends a commit without changing its commit message\&.
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
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
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:
473 $ git reset \-\-soft HEAD^
474 $ \&.\&.\&. do something else to come up with the right tree \&.\&.\&.
475 $ git commit \-c ORIG_HEAD
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
489 Bypass the post\-rewrite hook\&.
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\&.
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
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>
509 Pathspec is passed in
511 instead of commandline args\&. If
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
518 \fBgit-config\fR(1))\&. See also
519 \fB\-\-pathspec\-file\-nul\fR
521 \fB\-\-literal\-pathspecs\fR\&.
524 \-\-pathspec\-file\-nul
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>]
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:
549 \- Show no untracked files
561 \- Shows untracked files and directories
573 \- Also shows individual files in untracked directories\&.
576 All usual spellings for Boolean value
583 \fBno\fR\&. The default can be changed using the status\&.showUntrackedFiles configuration variable documented in
584 \fBgit-config\fR(1)\&.
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\&.
600 Suppress commit summary message\&.
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\&.
610 Include the output of
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\&.
617 Do not include the output of
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
624 GPG\-sign commits\&. The
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\&.
636 Do not interpret any more arguments as options\&.
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
646 \fBgitglossary\fR(7)\&.
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:
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:
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:
687 $ edit hello\&.c hello\&.h
688 $ git add hello\&.c hello\&.h
690 $ git commit Makefile
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:
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:
716 $ git status | grep unmerged
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:
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:
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\&.
768 The \fBGIT_AUTHOR_DATE\fR and \fBGIT_COMMITTER_DATE\fR environment variables support the following date formats:
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
784 The standard date format as described by RFC 2822, for example
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
798 character as well\&. Fractional parts of a second will be ignored, for example
799 \fB2005\-04\-07T22:13:13\&.019\fR
801 \fB2005\-04\-07T22:13:13\fR\&.
807 .nr an-no-space-flag 1
814 In addition, the date part is accepted in the following formats:
815 \fBYYYY\&.MM\&.DD\fR,
818 \fBDD\&.MM\&.YYYY\fR\&.
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"\&.
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\&.
838 The contents of the blob objects are uninterpreted sequences of bytes\&. There is no encoding translation at the core level\&.
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
851 \fBgit-config\fR(1)),
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\&.
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
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\&.
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
896 commitEncoding = ISO\-8859\-1
902 Commit objects created with the above setting record the value of
903 \fBi18n\&.commitEncoding\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\&.
920 and friends look at the
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
932 logOutputEncoding = ISO\-8859\-1
938 If you do not have this configuration variable, the value of
939 \fBi18n\&.commitEncoding\fR
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:
952 This setting overrides the default of the
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
961 \fBcommit\&.cleanup\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)\&.
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\&.
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\&.
978 Specify the pathname of a file to use as the template for new commit messages\&.
983 A boolean or int to specify the level of verbosity with
986 \fBgit-commit\fR(1)\&.
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\&.
993 \fB$GIT_DIR/COMMIT_EDITMSG\fR
995 This file contains the commit message of a commit in progress\&. If
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
1004 \fBgit-add\fR(1), \fBgit-rm\fR(1), \fBgit-mv\fR(1), \fBgit-merge\fR(1), \fBgit-commit-tree\fR(1)
1007 Part of the \fBgit\fR(1) suite