commit: add --trailer option
[git] / Documentation / git-commit.txt
1 git-commit(1)
2 =============
3
4 NAME
5 ----
6 git-commit - Record changes to the repository
7
8 SYNOPSIS
9 --------
10 [verse]
11 'git commit' [-a | --interactive | --patch] [-s] [-v] [-u<mode>] [--amend]
12            [--dry-run] [(-c | -C | --fixup | --squash) <commit>]
13            [-F <file> | -m <msg>] [--reset-author] [--allow-empty]
14            [--allow-empty-message] [--no-verify] [-e] [--author=<author>]
15            [--date=<date>] [--cleanup=<mode>] [--[no-]status]
16            [-i | -o] [--pathspec-from-file=<file> [--pathspec-file-nul]]
17            [(--trailer <token>[(=|:)<value>])...] [-S[<keyid>]]
18            [--] [<pathspec>...]
19
20 DESCRIPTION
21 -----------
22 Create a new commit containing the current contents of the index and
23 the given log message describing the changes. The new commit is a
24 direct child of HEAD, usually the tip of the current branch, and the
25 branch is updated to point to it (unless no branch is associated with
26 the working tree, in which case HEAD is "detached" as described in
27 linkgit:git-checkout[1]).
28
29 The content to be committed can be specified in several ways:
30
31 1. by using linkgit:git-add[1] to incrementally "add" changes to the
32    index before using the 'commit' command (Note: even modified files
33    must be "added");
34
35 2. by using linkgit:git-rm[1] to remove files from the working tree
36    and the index, again before using the 'commit' command;
37
38 3. by listing files as arguments to the 'commit' command
39    (without --interactive or --patch switch), in which
40    case the commit will ignore changes staged in the index, and instead
41    record the current content of the listed files (which must already
42    be known to Git);
43
44 4. by using the -a switch with the 'commit' command to automatically
45    "add" changes from all known files (i.e. all files that are already
46    listed in the index) and to automatically "rm" files in the index
47    that have been removed from the working tree, and then perform the
48    actual commit;
49
50 5. by using the --interactive or --patch switches with the 'commit' command
51    to decide one by one which files or hunks should be part of the commit
52    in addition to contents in the index,
53    before finalizing the operation. See the ``Interactive Mode'' section of
54    linkgit:git-add[1] to learn how to operate these modes.
55
56 The `--dry-run` option can be used to obtain a
57 summary of what is included by any of the above for the next
58 commit by giving the same set of parameters (options and paths).
59
60 If you make a commit and then find a mistake immediately after
61 that, you can recover from it with 'git reset'.
62
63 :git-commit: 1
64
65 OPTIONS
66 -------
67 -a::
68 --all::
69         Tell the command to automatically stage files that have
70         been modified and deleted, but new files you have not
71         told Git about are not affected.
72
73 -p::
74 --patch::
75         Use the interactive patch selection interface to chose
76         which changes to commit. See linkgit:git-add[1] for
77         details.
78
79 -C <commit>::
80 --reuse-message=<commit>::
81         Take an existing commit object, and reuse the log message
82         and the authorship information (including the timestamp)
83         when creating the commit.
84
85 -c <commit>::
86 --reedit-message=<commit>::
87         Like '-C', but with `-c` the editor is invoked, so that
88         the user can further edit the commit message.
89
90 --fixup=<commit>::
91         Construct a commit message for use with `rebase --autosquash`.
92         The commit message will be the subject line from the specified
93         commit with a prefix of "fixup! ".  See linkgit:git-rebase[1]
94         for details.
95
96 --squash=<commit>::
97         Construct a commit message for use with `rebase --autosquash`.
98         The commit message subject line is taken from the specified
99         commit with a prefix of "squash! ".  Can be used with additional
100         commit message options (`-m`/`-c`/`-C`/`-F`). See
101         linkgit:git-rebase[1] for details.
102
103 --reset-author::
104         When used with -C/-c/--amend options, or when committing after a
105         conflicting cherry-pick, declare that the authorship of the
106         resulting commit now belongs to the committer. This also renews
107         the author timestamp.
108
109 --short::
110         When doing a dry-run, give the output in the short-format. See
111         linkgit:git-status[1] for details. Implies `--dry-run`.
112
113 --branch::
114         Show the branch and tracking info even in short-format.
115
116 --porcelain::
117         When doing a dry-run, give the output in a porcelain-ready
118         format. See linkgit:git-status[1] for details. Implies
119         `--dry-run`.
120
121 --long::
122         When doing a dry-run, give the output in the long-format.
123         Implies `--dry-run`.
124
125 -z::
126 --null::
127         When showing `short` or `porcelain` status output, print the
128         filename verbatim and terminate the entries with NUL, instead of LF.
129         If no format is given, implies the `--porcelain` output format.
130         Without the `-z` option, filenames with "unusual" characters are
131         quoted as explained for the configuration variable `core.quotePath`
132         (see linkgit:git-config[1]).
133
134 -F <file>::
135 --file=<file>::
136         Take the commit message from the given file.  Use '-' to
137         read the message from the standard input.
138
139 --author=<author>::
140         Override the commit author. Specify an explicit author using the
141         standard `A U Thor <author@example.com>` format. Otherwise <author>
142         is assumed to be a pattern and is used to search for an existing
143         commit by that author (i.e. rev-list --all -i --author=<author>);
144         the commit author is then copied from the first such commit found.
145
146 --date=<date>::
147         Override the author date used in the commit.
148
149 -m <msg>::
150 --message=<msg>::
151         Use the given <msg> as the commit message.
152         If multiple `-m` options are given, their values are
153         concatenated as separate paragraphs.
154 +
155 The `-m` option is mutually exclusive with `-c`, `-C`, and `-F`.
156
157 -t <file>::
158 --template=<file>::
159         When editing the commit message, start the editor with the
160         contents in the given file.  The `commit.template` configuration
161         variable is often used to give this option implicitly to the
162         command.  This mechanism can be used by projects that want to
163         guide participants with some hints on what to write in the message
164         in what order.  If the user exits the editor without editing the
165         message, the commit is aborted.  This has no effect when a message
166         is given by other means, e.g. with the `-m` or `-F` options.
167
168 include::signoff-option.txt[]
169
170 --trailer <token>[(=|:)<value>]::
171         Specify a (<token>, <value>) pair that should be applied as a
172         trailer. (e.g. `git commit --trailer "Signed-off-by:C O Mitter \
173         <committer@example.com>" --trailer "Helped-by:C O Mitter \
174         <committer@example.com>"` will add the "Signed-off-by" trailer
175         and the "Helped-by" trailer to the commit message.)
176         The `trailer.*` configuration variables
177         (linkgit:git-interpret-trailers[1]) can be used to define if
178         a duplicated trailer is omitted, where in the run of trailers
179         each trailer would appear, and other details.
180
181 -n::
182 --no-verify::
183         This option bypasses the pre-commit and commit-msg hooks.
184         See also linkgit:githooks[5].
185
186 --allow-empty::
187         Usually recording a commit that has the exact same tree as its
188         sole parent commit is a mistake, and the command prevents you
189         from making such a commit.  This option bypasses the safety, and
190         is primarily for use by foreign SCM interface scripts.
191
192 --allow-empty-message::
193        Like --allow-empty this command is primarily for use by foreign
194        SCM interface scripts. It allows you to create a commit with an
195        empty commit message without using plumbing commands like
196        linkgit:git-commit-tree[1].
197
198 --cleanup=<mode>::
199         This option determines how the supplied commit message should be
200         cleaned up before committing.  The '<mode>' can be `strip`,
201         `whitespace`, `verbatim`, `scissors` or `default`.
202 +
203 --
204 strip::
205         Strip leading and trailing empty lines, trailing whitespace,
206         commentary and collapse consecutive empty lines.
207 whitespace::
208         Same as `strip` except #commentary is not removed.
209 verbatim::
210         Do not change the message at all.
211 scissors::
212         Same as `whitespace` except that everything from (and including)
213         the line found below is truncated, if the message is to be edited.
214         "`#`" can be customized with core.commentChar.
215
216                 # ------------------------ >8 ------------------------
217
218 default::
219         Same as `strip` if the message is to be edited.
220         Otherwise `whitespace`.
221 --
222 +
223 The default can be changed by the `commit.cleanup` configuration
224 variable (see linkgit:git-config[1]).
225
226 -e::
227 --edit::
228         The message taken from file with `-F`, command line with
229         `-m`, and from commit object with `-C` are usually used as
230         the commit log message unmodified. This option lets you
231         further edit the message taken from these sources.
232
233 --no-edit::
234         Use the selected commit message without launching an editor.
235         For example, `git commit --amend --no-edit` amends a commit
236         without changing its commit message.
237
238 --amend::
239         Replace the tip of the current branch by creating a new
240         commit. The recorded tree is prepared as usual (including
241         the effect of the `-i` and `-o` options and explicit
242         pathspec), and the message from the original commit is used
243         as the starting point, instead of an empty message, when no
244         other message is specified from the command line via options
245         such as `-m`, `-F`, `-c`, etc.  The new commit has the same
246         parents and author as the current one (the `--reset-author`
247         option can countermand this).
248 +
249 --
250 It is a rough equivalent for:
251 ------
252         $ git reset --soft HEAD^
253         $ ... do something else to come up with the right tree ...
254         $ git commit -c ORIG_HEAD
255
256 ------
257 but can be used to amend a merge commit.
258 --
259 +
260 You should understand the implications of rewriting history if you
261 amend a commit that has already been published.  (See the "RECOVERING
262 FROM UPSTREAM REBASE" section in linkgit:git-rebase[1].)
263
264 --no-post-rewrite::
265         Bypass the post-rewrite hook.
266
267 -i::
268 --include::
269         Before making a commit out of staged contents so far,
270         stage the contents of paths given on the command line
271         as well.  This is usually not what you want unless you
272         are concluding a conflicted merge.
273
274 -o::
275 --only::
276         Make a commit by taking the updated working tree contents
277         of the paths specified on the
278         command line, disregarding any contents that have been
279         staged for other paths. This is the default mode of operation of
280         'git commit' if any paths are given on the command line,
281         in which case this option can be omitted.
282         If this option is specified together with `--amend`, then
283         no paths need to be specified, which can be used to amend
284         the last commit without committing changes that have
285         already been staged. If used together with `--allow-empty`
286         paths are also not required, and an empty commit will be created.
287
288 --pathspec-from-file=<file>::
289         Pathspec is passed in `<file>` instead of commandline args. If
290         `<file>` is exactly `-` then standard input is used. Pathspec
291         elements are separated by LF or CR/LF. Pathspec elements can be
292         quoted as explained for the configuration variable `core.quotePath`
293         (see linkgit:git-config[1]). See also `--pathspec-file-nul` and
294         global `--literal-pathspecs`.
295
296 --pathspec-file-nul::
297         Only meaningful with `--pathspec-from-file`. Pathspec elements are
298         separated with NUL character and all other characters are taken
299         literally (including newlines and quotes).
300
301 -u[<mode>]::
302 --untracked-files[=<mode>]::
303         Show untracked files.
304 +
305 --
306 The mode parameter is optional (defaults to 'all'), and is used to
307 specify the handling of untracked files; when -u is not used, the
308 default is 'normal', i.e. show untracked files and directories.
309
310 The possible options are:
311
312         - 'no'     - Show no untracked files
313         - 'normal' - Shows untracked files and directories
314         - 'all'    - Also shows individual files in untracked directories.
315
316 The default can be changed using the status.showUntrackedFiles
317 configuration variable documented in linkgit:git-config[1].
318 --
319
320 -v::
321 --verbose::
322         Show unified diff between the HEAD commit and what
323         would be committed at the bottom of the commit message
324         template to help the user describe the commit by reminding
325         what changes the commit has.
326         Note that this diff output doesn't have its
327         lines prefixed with '#'. This diff will not be a part
328         of the commit message. See the `commit.verbose` configuration
329         variable in linkgit:git-config[1].
330 +
331 If specified twice, show in addition the unified diff between
332 what would be committed and the worktree files, i.e. the unstaged
333 changes to tracked files.
334
335 -q::
336 --quiet::
337         Suppress commit summary message.
338
339 --dry-run::
340         Do not create a commit, but show a list of paths that are
341         to be committed, paths with local changes that will be left
342         uncommitted and paths that are untracked.
343
344 --status::
345         Include the output of linkgit:git-status[1] in the commit
346         message template when using an editor to prepare the commit
347         message.  Defaults to on, but can be used to override
348         configuration variable commit.status.
349
350 --no-status::
351         Do not include the output of linkgit:git-status[1] in the
352         commit message template when using an editor to prepare the
353         default commit message.
354
355 -S[<keyid>]::
356 --gpg-sign[=<keyid>]::
357 --no-gpg-sign::
358         GPG-sign commits. The `keyid` argument is optional and
359         defaults to the committer identity; if specified, it must be
360         stuck to the option without a space. `--no-gpg-sign` is useful to
361         countermand both `commit.gpgSign` configuration variable, and
362         earlier `--gpg-sign`.
363
364 \--::
365         Do not interpret any more arguments as options.
366
367 <pathspec>...::
368         When pathspec is given on the command line, commit the contents of
369         the files that match the pathspec without recording the changes
370         already added to the index. The contents of these files are also
371         staged for the next commit on top of what have been staged before.
372 +
373 For more details, see the 'pathspec' entry in linkgit:gitglossary[7].
374
375 EXAMPLES
376 --------
377 When recording your own work, the contents of modified files in
378 your working tree are temporarily stored to a staging area
379 called the "index" with 'git add'.  A file can be
380 reverted back, only in the index but not in the working tree,
381 to that of the last commit with `git restore --staged <file>`,
382 which effectively reverts 'git add' and prevents the changes to
383 this file from participating in the next commit.  After building
384 the state to be committed incrementally with these commands,
385 `git commit` (without any pathname parameter) is used to record what
386 has been staged so far.  This is the most basic form of the
387 command.  An example:
388
389 ------------
390 $ edit hello.c
391 $ git rm goodbye.c
392 $ git add hello.c
393 $ git commit
394 ------------
395
396 Instead of staging files after each individual change, you can
397 tell `git commit` to notice the changes to the files whose
398 contents are tracked in
399 your working tree and do corresponding `git add` and `git rm`
400 for you.  That is, this example does the same as the earlier
401 example if there is no other change in your working tree:
402
403 ------------
404 $ edit hello.c
405 $ rm goodbye.c
406 $ git commit -a
407 ------------
408
409 The command `git commit -a` first looks at your working tree,
410 notices that you have modified hello.c and removed goodbye.c,
411 and performs necessary `git add` and `git rm` for you.
412
413 After staging changes to many files, you can alter the order the
414 changes are recorded in, by giving pathnames to `git commit`.
415 When pathnames are given, the command makes a commit that
416 only records the changes made to the named paths:
417
418 ------------
419 $ edit hello.c hello.h
420 $ git add hello.c hello.h
421 $ edit Makefile
422 $ git commit Makefile
423 ------------
424
425 This makes a commit that records the modification to `Makefile`.
426 The changes staged for `hello.c` and `hello.h` are not included
427 in the resulting commit.  However, their changes are not lost --
428 they are still staged and merely held back.  After the above
429 sequence, if you do:
430
431 ------------
432 $ git commit
433 ------------
434
435 this second commit would record the changes to `hello.c` and
436 `hello.h` as expected.
437
438 After a merge (initiated by 'git merge' or 'git pull') stops
439 because of conflicts, cleanly merged
440 paths are already staged to be committed for you, and paths that
441 conflicted are left in unmerged state.  You would have to first
442 check which paths are conflicting with 'git status'
443 and after fixing them manually in your working tree, you would
444 stage the result as usual with 'git add':
445
446 ------------
447 $ git status | grep unmerged
448 unmerged: hello.c
449 $ edit hello.c
450 $ git add hello.c
451 ------------
452
453 After resolving conflicts and staging the result, `git ls-files -u`
454 would stop mentioning the conflicted path.  When you are done,
455 run `git commit` to finally record the merge:
456
457 ------------
458 $ git commit
459 ------------
460
461 As with the case to record your own changes, you can use `-a`
462 option to save typing.  One difference is that during a merge
463 resolution, you cannot use `git commit` with pathnames to
464 alter the order the changes are committed, because the merge
465 should be recorded as a single commit.  In fact, the command
466 refuses to run when given pathnames (but see `-i` option).
467
468 COMMIT INFORMATION
469 ------------------
470
471 Author and committer information is taken from the following environment
472 variables, if set:
473
474         GIT_AUTHOR_NAME
475         GIT_AUTHOR_EMAIL
476         GIT_AUTHOR_DATE
477         GIT_COMMITTER_NAME
478         GIT_COMMITTER_EMAIL
479         GIT_COMMITTER_DATE
480
481 (nb "<", ">" and "\n"s are stripped)
482
483 The author and committer names are by convention some form of a personal name
484 (that is, the name by which other humans refer to you), although Git does not
485 enforce or require any particular form. Arbitrary Unicode may be used, subject
486 to the constraints listed above. This name has no effect on authentication; for
487 that, see the `credential.username` variable in linkgit:git-config[1].
488
489 In case (some of) these environment variables are not set, the information
490 is taken from the configuration items `user.name` and `user.email`, or, if not
491 present, the environment variable EMAIL, or, if that is not set,
492 system user name and the hostname used for outgoing mail (taken
493 from `/etc/mailname` and falling back to the fully qualified hostname when
494 that file does not exist).
495
496 The `author.name` and `committer.name` and their corresponding email options
497 override `user.name` and `user.email` if set and are overridden themselves by
498 the environment variables.
499
500 The typical usage is to set just the `user.name` and `user.email` variables;
501 the other options are provided for more complex use cases.
502
503 :git-commit: 1
504 include::date-formats.txt[]
505
506 DISCUSSION
507 ----------
508
509 Though not required, it's a good idea to begin the commit message
510 with a single short (less than 50 character) line summarizing the
511 change, followed by a blank line and then a more thorough description.
512 The text up to the first blank line in a commit message is treated
513 as the commit title, and that title is used throughout Git.
514 For example, linkgit:git-format-patch[1] turns a commit into email, and it uses
515 the title on the Subject line and the rest of the commit in the body.
516
517 include::i18n.txt[]
518
519 ENVIRONMENT AND CONFIGURATION VARIABLES
520 ---------------------------------------
521 The editor used to edit the commit log message will be chosen from the
522 `GIT_EDITOR` environment variable, the core.editor configuration variable, the
523 `VISUAL` environment variable, or the `EDITOR` environment variable (in that
524 order).  See linkgit:git-var[1] for details.
525
526 HOOKS
527 -----
528 This command can run `commit-msg`, `prepare-commit-msg`, `pre-commit`,
529 `post-commit` and `post-rewrite` hooks.  See linkgit:githooks[5] for more
530 information.
531
532 FILES
533 -----
534
535 `$GIT_DIR/COMMIT_EDITMSG`::
536         This file contains the commit message of a commit in progress.
537         If `git commit` exits due to an error before creating a commit,
538         any commit message that has been provided by the user (e.g., in
539         an editor session) will be available in this file, but will be
540         overwritten by the next invocation of `git commit`.
541
542 SEE ALSO
543 --------
544 linkgit:git-add[1],
545 linkgit:git-rm[1],
546 linkgit:git-mv[1],
547 linkgit:git-merge[1],
548 linkgit:git-commit-tree[1]
549
550 GIT
551 ---
552 Part of the linkgit:git[1] suite