Documentation: refer to gitworkflows(7) from tutorial and git(1)
[git/dscho.git] / Documentation / git-commit.txt
blobb5d81be7ecd60daa1a1d476441ca58e6b732d9ef
1 git-commit(1)
2 =============
4 NAME
5 ----
6 git-commit - Record changes to the repository
8 SYNOPSIS
9 --------
10 [verse]
11 'git commit' [-a | --interactive] [-s] [-v] [-u<mode>] [--amend]
12            [(-c | -C) <commit>] [-F <file> | -m <msg>]
13            [--allow-empty] [--no-verify] [-e] [--author=<author>]
14            [--cleanup=<mode>] [--] [[-i | -o ]<file>...]
16 DESCRIPTION
17 -----------
18 Stores the current contents of the index in a new commit along
19 with a log message from the user describing the changes.
21 The content to be added can be specified in several ways:
23 1. by using 'git-add' to incrementally "add" changes to the
24    index before using the 'commit' command (Note: even modified
25    files must be "added");
27 2. by using 'git-rm' to remove files from the working tree
28    and the index, again before using the 'commit' command;
30 3. by listing files as arguments to the 'commit' command, in which
31    case the commit will ignore changes staged in the index, and instead
32    record the current content of the listed files (which must already
33    be known to git);
35 4. by using the -a switch with the 'commit' command to automatically
36    "add" changes from all known files (i.e. all files that are already
37    listed in the index) and to automatically "rm" files in the index
38    that have been removed from the working tree, and then perform the
39    actual commit;
41 5. by using the --interactive switch with the 'commit' command to decide one
42    by one which files should be part of the commit, before finalizing the
43    operation.  Currently, this is done by invoking 'git-add --interactive'.
45 The 'git-status' command can be used to obtain a
46 summary of what is included by any of the above for the next
47 commit by giving the same set of parameters you would give to
48 this command.
50 If you make a commit and then find a mistake immediately after
51 that, you can recover from it with 'git-reset'.
54 OPTIONS
55 -------
56 -a::
57 --all::
58         Tell the command to automatically stage files that have
59         been modified and deleted, but new files you have not
60         told git about are not affected.
62 -C <commit>::
63 --reuse-message=<commit>::
64         Take an existing commit object, and reuse the log message
65         and the authorship information (including the timestamp)
66         when creating the commit.
68 -c <commit>::
69 --reedit-message=<commit>::
70         Like '-C', but with '-c' the editor is invoked, so that
71         the user can further edit the commit message.
73 -F <file>::
74 --file=<file>::
75         Take the commit message from the given file.  Use '-' to
76         read the message from the standard input.
78 --author=<author>::
79         Override the author name used in the commit.  You can use the
80         standard `A U Thor <author@example.com>` format.  Otherwise,
81         an existing commit that matches the given string and its author
82         name is used.
84 -m <msg>::
85 --message=<msg>::
86         Use the given <msg> as the commit message.
88 -t <file>::
89 --template=<file>::
90         Use the contents of the given file as the initial version
91         of the commit message. The editor is invoked and you can
92         make subsequent changes. If a message is specified using
93         the `-m` or `-F` options, this option has no effect. This
94         overrides the `commit.template` configuration variable.
96 -s::
97 --signoff::
98         Add Signed-off-by line by the committer at the end of the commit
99         log message.
101 -n::
102 --no-verify::
103         This option bypasses the pre-commit and commit-msg hooks.
104         See also linkgit:githooks[5].
106 --allow-empty::
107         Usually recording a commit that has the exact same tree as its
108         sole parent commit is a mistake, and the command prevents you
109         from making such a commit.  This option bypasses the safety, and
110         is primarily for use by foreign scm interface scripts.
112 --cleanup=<mode>::
113         This option sets how the commit message is cleaned up.
114         The  '<mode>' can be one of 'verbatim', 'whitespace', 'strip',
115         and 'default'. The 'default' mode will strip leading and
116         trailing empty lines and #commentary from the commit message
117         only if the message is to be edited. Otherwise only whitespace
118         removed. The 'verbatim' mode does not change message at all,
119         'whitespace' removes just leading/trailing whitespace lines
120         and 'strip' removes both whitespace and commentary.
122 -e::
123 --edit::
124         The message taken from file with `-F`, command line with
125         `-m`, and from file with `-C` are usually used as the
126         commit log message unmodified.  This option lets you
127         further edit the message taken from these sources.
129 --amend::
130         Used to amend the tip of the current branch. Prepare the tree
131         object you would want to replace the latest commit as usual
132         (this includes the usual -i/-o and explicit paths), and the
133         commit log editor is seeded with the commit message from the
134         tip of the current branch. The commit you create replaces the
135         current tip -- if it was a merge, it will have the parents of
136         the current tip as parents -- so the current top commit is
137         discarded.
140 It is a rough equivalent for:
141 ------
142         $ git reset --soft HEAD^
143         $ ... do something else to come up with the right tree ...
144         $ git commit -c ORIG_HEAD
146 ------
147 but can be used to amend a merge commit.
150 You should understand the implications of rewriting history if you
151 amend a commit that has already been published.  (See the "RECOVERING
152 FROM UPSTREAM REBASE" section in linkgit:git-rebase[1].)
154 -i::
155 --include::
156         Before making a commit out of staged contents so far,
157         stage the contents of paths given on the command line
158         as well.  This is usually not what you want unless you
159         are concluding a conflicted merge.
161 -o::
162 --only::
163         Make a commit only from the paths specified on the
164         command line, disregarding any contents that have been
165         staged so far. This is the default mode of operation of
166         'git-commit' if any paths are given on the command line,
167         in which case this option can be omitted.
168         If this option is specified together with '--amend', then
169         no paths need to be specified, which can be used to amend
170         the last commit without committing changes that have
171         already been staged.
173 -u[<mode>]::
174 --untracked-files[=<mode>]::
175         Show untracked files (Default: 'all').
177 The mode parameter is optional, and is used to specify
178 the handling of untracked files. The possible options are:
181         - 'no'     - Show no untracked files
182         - 'normal' - Shows untracked files and directories
183         - 'all'    - Also shows individual files in untracked directories.
186 See linkgit:git-config[1] for configuration variable
187 used to change the default for when the option is not
188 specified.
190 -v::
191 --verbose::
192         Show unified diff between the HEAD commit and what
193         would be committed at the bottom of the commit message
194         template.  Note that this diff output doesn't have its
195         lines prefixed with '#'.
197 -q::
198 --quiet::
199         Suppress commit summary message.
201 \--::
202         Do not interpret any more arguments as options.
204 <file>...::
205         When files are given on the command line, the command
206         commits the contents of the named files, without
207         recording the changes already staged.  The contents of
208         these files are also staged for the next commit on top
209         of what have been staged before.
212 EXAMPLES
213 --------
214 When recording your own work, the contents of modified files in
215 your working tree are temporarily stored to a staging area
216 called the "index" with 'git-add'.  A file can be
217 reverted back, only in the index but not in the working tree,
218 to that of the last commit with `git reset HEAD -- <file>`,
219 which effectively reverts 'git-add' and prevents the changes to
220 this file from participating in the next commit.  After building
221 the state to be committed incrementally with these commands,
222 `git commit` (without any pathname parameter) is used to record what
223 has been staged so far.  This is the most basic form of the
224 command.  An example:
226 ------------
227 $ edit hello.c
228 $ git rm goodbye.c
229 $ git add hello.c
230 $ git commit
231 ------------
233 Instead of staging files after each individual change, you can
234 tell `git commit` to notice the changes to the files whose
235 contents are tracked in
236 your working tree and do corresponding `git add` and `git rm`
237 for you.  That is, this example does the same as the earlier
238 example if there is no other change in your working tree:
240 ------------
241 $ edit hello.c
242 $ rm goodbye.c
243 $ git commit -a
244 ------------
246 The command `git commit -a` first looks at your working tree,
247 notices that you have modified hello.c and removed goodbye.c,
248 and performs necessary `git add` and `git rm` for you.
250 After staging changes to many files, you can alter the order the
251 changes are recorded in, by giving pathnames to `git commit`.
252 When pathnames are given, the command makes a commit that
253 only records the changes made to the named paths:
255 ------------
256 $ edit hello.c hello.h
257 $ git add hello.c hello.h
258 $ edit Makefile
259 $ git commit Makefile
260 ------------
262 This makes a commit that records the modification to `Makefile`.
263 The changes staged for `hello.c` and `hello.h` are not included
264 in the resulting commit.  However, their changes are not lost --
265 they are still staged and merely held back.  After the above
266 sequence, if you do:
268 ------------
269 $ git commit
270 ------------
272 this second commit would record the changes to `hello.c` and
273 `hello.h` as expected.
275 After a merge (initiated by 'git-merge' or 'git-pull') stops
276 because of conflicts, cleanly merged
277 paths are already staged to be committed for you, and paths that
278 conflicted are left in unmerged state.  You would have to first
279 check which paths are conflicting with 'git-status'
280 and after fixing them manually in your working tree, you would
281 stage the result as usual with 'git-add':
283 ------------
284 $ git status | grep unmerged
285 unmerged: hello.c
286 $ edit hello.c
287 $ git add hello.c
288 ------------
290 After resolving conflicts and staging the result, `git ls-files -u`
291 would stop mentioning the conflicted path.  When you are done,
292 run `git commit` to finally record the merge:
294 ------------
295 $ git commit
296 ------------
298 As with the case to record your own changes, you can use `-a`
299 option to save typing.  One difference is that during a merge
300 resolution, you cannot use `git commit` with pathnames to
301 alter the order the changes are committed, because the merge
302 should be recorded as a single commit.  In fact, the command
303 refuses to run when given pathnames (but see `-i` option).
306 DISCUSSION
307 ----------
309 Though not required, it's a good idea to begin the commit message
310 with a single short (less than 50 character) line summarizing the
311 change, followed by a blank line and then a more thorough description.
312 Tools that turn commits into email, for example, use the first line
313 on the Subject: line and the rest of the commit in the body.
315 include::i18n.txt[]
317 ENVIRONMENT AND CONFIGURATION VARIABLES
318 ---------------------------------------
319 The editor used to edit the commit log message will be chosen from the
320 GIT_EDITOR environment variable, the core.editor configuration variable, the
321 VISUAL environment variable, or the EDITOR environment variable (in that
322 order).
324 HOOKS
325 -----
326 This command can run `commit-msg`, `prepare-commit-msg`, `pre-commit`,
327 and `post-commit` hooks.  See linkgit:githooks[5] for more
328 information.
331 SEE ALSO
332 --------
333 linkgit:git-add[1],
334 linkgit:git-rm[1],
335 linkgit:git-mv[1],
336 linkgit:git-merge[1],
337 linkgit:git-commit-tree[1]
339 Author
340 ------
341 Written by Linus Torvalds <torvalds@osdl.org> and
342 Junio C Hamano <gitster@pobox.com>
347 Part of the linkgit:git[1] suite