6 git-commit - Record changes to the repository
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>] [--status | --no-status]
16 [-i | -o] [-S[<keyid>]] [--] [<file>...]
20 Stores the current contents of the index in a new commit along
21 with a log message from the user describing the changes.
23 The content to be added can be specified in several ways:
25 1. by using 'git add' to incrementally "add" changes to the
26 index before using the 'commit' command (Note: even modified
27 files must be "added");
29 2. by using 'git rm' to remove files from the working tree
30 and the index, again before using the 'commit' command;
32 3. by listing files as arguments to the 'commit' command, in which
33 case the commit will ignore changes staged in the index, and instead
34 record the current content of the listed files (which must already
37 4. by using the -a switch with the 'commit' command to automatically
38 "add" changes from all known files (i.e. all files that are already
39 listed in the index) and to automatically "rm" files in the index
40 that have been removed from the working tree, and then perform the
43 5. by using the --interactive or --patch switches with the 'commit' command
44 to decide one by one which files or hunks should be part of the commit,
45 before finalizing the operation. See the ``Interactive Mode'' section of
46 linkgit:git-add[1] to learn how to operate these modes.
48 The `--dry-run` option can be used to obtain a
49 summary of what is included by any of the above for the next
50 commit by giving the same set of parameters (options and paths).
52 If you make a commit and then find a mistake immediately after
53 that, you can recover from it with 'git reset'.
60 Tell the command to automatically stage files that have
61 been modified and deleted, but new files you have not
62 told Git about are not affected.
66 Use the interactive patch selection interface to chose
67 which changes to commit. See linkgit:git-add[1] for
71 --reuse-message=<commit>::
72 Take an existing commit object, and reuse the log message
73 and the authorship information (including the timestamp)
74 when creating the commit.
77 --reedit-message=<commit>::
78 Like '-C', but with '-c' the editor is invoked, so that
79 the user can further edit the commit message.
82 Construct a commit message for use with `rebase --autosquash`.
83 The commit message will be the subject line from the specified
84 commit with a prefix of "fixup! ". See linkgit:git-rebase[1]
88 Construct a commit message for use with `rebase --autosquash`.
89 The commit message subject line is taken from the specified
90 commit with a prefix of "squash! ". Can be used with additional
91 commit message options (`-m`/`-c`/`-C`/`-F`). See
92 linkgit:git-rebase[1] for details.
95 When used with -C/-c/--amend options, or when committing after a
96 a conflicting cherry-pick, declare that the authorship of the
97 resulting commit now belongs of the committer. This also renews
101 When doing a dry-run, give the output in the short-format. See
102 linkgit:git-status[1] for details. Implies `--dry-run`.
105 Show the branch and tracking info even in short-format.
108 When doing a dry-run, give the output in a porcelain-ready
109 format. See linkgit:git-status[1] for details. Implies
113 When doing a dry-run, give the output in a the long-format.
118 When showing `short` or `porcelain` status output, terminate
119 entries in the status output with NUL, instead of LF. If no
120 format is given, implies the `--porcelain` output format.
124 Take the commit message from the given file. Use '-' to
125 read the message from the standard input.
128 Override the commit author. Specify an explicit author using the
129 standard `A U Thor <author@example.com>` format. Otherwise <author>
130 is assumed to be a pattern and is used to search for an existing
131 commit by that author (i.e. rev-list --all -i --author=<author>);
132 the commit author is then copied from the first such commit found.
135 Override the author date used in the commit.
139 Use the given <msg> as the commit message.
143 When editing the commit message, start the editor with the
144 contents in the given file. The `commit.template` configuration
145 variable is often used to give this option implicitly to the
146 command. This mechanism can be used by projects that want to
147 guide participants with some hints on what to write in the message
148 in what order. If the user exits the editor without editing the
149 message, the commit is aborted. This has no effect when a message
150 is given by other means, e.g. with the `-m` or `-F` options.
154 Add Signed-off-by line by the committer at the end of the commit
159 This option bypasses the pre-commit and commit-msg hooks.
160 See also linkgit:githooks[5].
163 Usually recording a commit that has the exact same tree as its
164 sole parent commit is a mistake, and the command prevents you
165 from making such a commit. This option bypasses the safety, and
166 is primarily for use by foreign SCM interface scripts.
168 --allow-empty-message::
169 Like --allow-empty this command is primarily for use by foreign
170 SCM interface scripts. It allows you to create a commit with an
171 empty commit message without using plumbing commands like
172 linkgit:git-commit-tree[1].
175 This option determines how the supplied commit message should be
176 cleaned up before committing. The '<mode>' can be `strip`,
177 `whitespace`, `verbatim`, or `default`.
181 Strip leading and trailing empty lines, trailing whitespace, and
182 #commentary and collapse consecutive empty lines.
184 Same as `strip` except #commentary is not removed.
186 Do not change the message at all.
188 Same as `strip` if the message is to be edited.
189 Otherwise `whitespace`.
192 The default can be changed by the 'commit.cleanup' configuration
193 variable (see linkgit:git-config[1]).
197 The message taken from file with `-F`, command line with
198 `-m`, and from file with `-C` are usually used as the
199 commit log message unmodified. This option lets you
200 further edit the message taken from these sources.
203 Use the selected commit message without launching an editor.
204 For example, `git commit --amend --no-edit` amends a commit
205 without changing its commit message.
208 Used to amend the tip of the current branch. Prepare the tree
209 object you would want to replace the latest commit as usual
210 (this includes the usual -i/-o and explicit paths), and the
211 commit log editor is seeded with the commit message from the
212 tip of the current branch. The commit you create replaces the
213 current tip -- if it was a merge, it will have the parents of
214 the current tip as parents -- so the current top commit is
218 It is a rough equivalent for:
220 $ git reset --soft HEAD^
221 $ ... do something else to come up with the right tree ...
222 $ git commit -c ORIG_HEAD
225 but can be used to amend a merge commit.
228 You should understand the implications of rewriting history if you
229 amend a commit that has already been published. (See the "RECOVERING
230 FROM UPSTREAM REBASE" section in linkgit:git-rebase[1].)
233 Bypass the post-rewrite hook.
237 Before making a commit out of staged contents so far,
238 stage the contents of paths given on the command line
239 as well. This is usually not what you want unless you
240 are concluding a conflicted merge.
244 Make a commit only from the paths specified on the
245 command line, disregarding any contents that have been
246 staged so far. This is the default mode of operation of
247 'git commit' if any paths are given on the command line,
248 in which case this option can be omitted.
249 If this option is specified together with '--amend', then
250 no paths need to be specified, which can be used to amend
251 the last commit without committing changes that have
255 --untracked-files[=<mode>]::
256 Show untracked files.
258 The mode parameter is optional (defaults to 'all'), and is used to
259 specify the handling of untracked files; when -u is not used, the
260 default is 'normal', i.e. show untracked files and directories.
262 The possible options are:
264 - 'no' - Show no untracked files
265 - 'normal' - Shows untracked files and directories
266 - 'all' - Also shows individual files in untracked directories.
268 The default can be changed using the status.showUntrackedFiles
269 configuration variable documented in linkgit:git-config[1].
273 Show unified diff between the HEAD commit and what
274 would be committed at the bottom of the commit message
275 template. Note that this diff output doesn't have its
276 lines prefixed with '#'.
280 Suppress commit summary message.
283 Do not create a commit, but show a list of paths that are
284 to be committed, paths with local changes that will be left
285 uncommitted and paths that are untracked.
288 Include the output of linkgit:git-status[1] in the commit
289 message template when using an editor to prepare the commit
290 message. Defaults to on, but can be used to override
291 configuration variable commit.status.
294 Do not include the output of linkgit:git-status[1] in the
295 commit message template when using an editor to prepare the
296 default commit message.
299 --gpg-sign[=<keyid>]::
303 Do not interpret any more arguments as options.
306 When files are given on the command line, the command
307 commits the contents of the named files, without
308 recording the changes already staged. The contents of
309 these files are also staged for the next commit on top
310 of what have been staged before.
313 include::date-formats.txt[]
317 When recording your own work, the contents of modified files in
318 your working tree are temporarily stored to a staging area
319 called the "index" with 'git add'. A file can be
320 reverted back, only in the index but not in the working tree,
321 to that of the last commit with `git reset HEAD -- <file>`,
322 which effectively reverts 'git add' and prevents the changes to
323 this file from participating in the next commit. After building
324 the state to be committed incrementally with these commands,
325 `git commit` (without any pathname parameter) is used to record what
326 has been staged so far. This is the most basic form of the
336 Instead of staging files after each individual change, you can
337 tell `git commit` to notice the changes to the files whose
338 contents are tracked in
339 your working tree and do corresponding `git add` and `git rm`
340 for you. That is, this example does the same as the earlier
341 example if there is no other change in your working tree:
349 The command `git commit -a` first looks at your working tree,
350 notices that you have modified hello.c and removed goodbye.c,
351 and performs necessary `git add` and `git rm` for you.
353 After staging changes to many files, you can alter the order the
354 changes are recorded in, by giving pathnames to `git commit`.
355 When pathnames are given, the command makes a commit that
356 only records the changes made to the named paths:
359 $ edit hello.c hello.h
360 $ git add hello.c hello.h
362 $ git commit Makefile
365 This makes a commit that records the modification to `Makefile`.
366 The changes staged for `hello.c` and `hello.h` are not included
367 in the resulting commit. However, their changes are not lost --
368 they are still staged and merely held back. After the above
375 this second commit would record the changes to `hello.c` and
376 `hello.h` as expected.
378 After a merge (initiated by 'git merge' or 'git pull') stops
379 because of conflicts, cleanly merged
380 paths are already staged to be committed for you, and paths that
381 conflicted are left in unmerged state. You would have to first
382 check which paths are conflicting with 'git status'
383 and after fixing them manually in your working tree, you would
384 stage the result as usual with 'git add':
387 $ git status | grep unmerged
393 After resolving conflicts and staging the result, `git ls-files -u`
394 would stop mentioning the conflicted path. When you are done,
395 run `git commit` to finally record the merge:
401 As with the case to record your own changes, you can use `-a`
402 option to save typing. One difference is that during a merge
403 resolution, you cannot use `git commit` with pathnames to
404 alter the order the changes are committed, because the merge
405 should be recorded as a single commit. In fact, the command
406 refuses to run when given pathnames (but see `-i` option).
412 Though not required, it's a good idea to begin the commit message
413 with a single short (less than 50 character) line summarizing the
414 change, followed by a blank line and then a more thorough description.
415 The text up to the first blank line in a commit message is treated
416 as the commit title, and that title is used throughout Git.
417 For example, linkgit:git-format-patch[1] turns a commit into email, and it uses
418 the title on the Subject line and the rest of the commit in the body.
422 ENVIRONMENT AND CONFIGURATION VARIABLES
423 ---------------------------------------
424 The editor used to edit the commit log message will be chosen from the
425 GIT_EDITOR environment variable, the core.editor configuration variable, the
426 VISUAL environment variable, or the EDITOR environment variable (in that
427 order). See linkgit:git-var[1] for details.
431 This command can run `commit-msg`, `prepare-commit-msg`, `pre-commit`,
432 and `post-commit` hooks. See linkgit:githooks[5] for more
438 `$GIT_DIR/COMMIT_EDITMSG`::
439 This file contains the commit message of a commit in progress.
440 If `git commit` exits due to an error before creating a commit,
441 any commit message that has been provided by the user (e.g., in
442 an editor session) will be available in this file, but will be
443 overwritten by the next invocation of `git commit`.
450 linkgit:git-merge[1],
451 linkgit:git-commit-tree[1]
455 Part of the linkgit:git[1] suite