2005-09-08 02:26:23 +02:00
|
|
|
git-commit(1)
|
|
|
|
=============
|
2005-08-09 02:39:18 +02:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2005-09-08 02:26:23 +02:00
|
|
|
git-commit - Record your changes
|
2005-08-09 02:39:18 +02:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2005-12-31 18:37:15 +01:00
|
|
|
[verse]
|
2006-02-13 08:55:07 +01:00
|
|
|
'git-commit' [-a] [-s] [-v] [(-c | -C) <commit> | -F <file> | -m <msg>]
|
|
|
|
[-e] [--author <author>] [--] [[-i | -o ]<file>...]
|
2005-08-09 02:39:18 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
Updates the index file for given paths, or all modified files if
|
|
|
|
'-a' is specified, and makes a commit object. The command
|
|
|
|
VISUAL and EDITOR environment variables to edit the commit log
|
|
|
|
message.
|
|
|
|
|
2005-09-03 06:19:26 +02:00
|
|
|
This command can run `commit-msg`, `pre-commit`, and
|
|
|
|
`post-commit` hooks. See link:hooks.html[hooks] for more
|
|
|
|
information.
|
|
|
|
|
2005-08-09 02:39:18 +02:00
|
|
|
OPTIONS
|
|
|
|
-------
|
2005-12-09 00:28:05 +01:00
|
|
|
-a|--all::
|
2006-01-13 21:59:21 +01:00
|
|
|
Update all paths in the index file. This flag notices
|
|
|
|
files that have been modified and deleted, but new files
|
2006-01-22 00:54:11 +01:00
|
|
|
you have not told git about are not affected.
|
2005-08-09 02:39:18 +02:00
|
|
|
|
|
|
|
-c or -C <commit>::
|
|
|
|
Take existing commit object, and reuse the log message
|
|
|
|
and the authorship information (including the timestamp)
|
|
|
|
when creating the commit. With '-C', the editor is not
|
|
|
|
invoked; with '-c' the user can further edit the commit
|
|
|
|
message.
|
|
|
|
|
|
|
|
-F <file>::
|
|
|
|
Take the commit message from the given file. Use '-' to
|
|
|
|
read the message from the standard input.
|
|
|
|
|
2006-02-05 09:07:44 +01:00
|
|
|
--author <author>::
|
|
|
|
Override the author name used in the commit. Use
|
|
|
|
`A U Thor <author@example.com>` format.
|
|
|
|
|
2005-08-09 02:39:18 +02:00
|
|
|
-m <msg>::
|
|
|
|
Use the given <msg> as the commit message.
|
|
|
|
|
2005-12-09 00:28:05 +01:00
|
|
|
-s|--signoff::
|
2005-08-15 02:24:36 +02:00
|
|
|
Add Signed-off-by line at the end of the commit message.
|
|
|
|
|
2005-12-09 00:28:05 +01:00
|
|
|
-v|--verify::
|
2005-08-15 02:24:36 +02:00
|
|
|
Look for suspicious lines the commit introduces, and
|
|
|
|
abort committing if there is one. The definition of
|
|
|
|
'suspicious lines' is currently the lines that has
|
|
|
|
trailing whitespaces, and the lines whose indentation
|
|
|
|
has a SP character immediately followed by a TAB
|
2005-12-09 00:28:05 +01:00
|
|
|
character. This is the default.
|
2005-08-15 02:24:36 +02:00
|
|
|
|
2005-12-09 00:28:05 +01:00
|
|
|
-n|--no-verify::
|
|
|
|
The opposite of `--verify`.
|
|
|
|
|
|
|
|
-e|--edit::
|
2005-09-03 06:19:26 +02:00
|
|
|
The message taken from file with `-F`, command line with
|
|
|
|
`-m`, and from file with `-C` are usually used as the
|
|
|
|
commit log message unmodified. This option lets you
|
|
|
|
further edit the message taken from these sources.
|
|
|
|
|
2006-02-05 09:07:44 +01:00
|
|
|
-i|--include::
|
|
|
|
Instead of committing only the files specified on the
|
|
|
|
command line, update them in the index file and then
|
|
|
|
commit the whole index. This is the traditional
|
|
|
|
behaviour.
|
|
|
|
|
2006-02-13 08:55:07 +01:00
|
|
|
-o|--only::
|
2006-02-05 09:07:44 +01:00
|
|
|
Commit only the files specified on the command line.
|
|
|
|
This format cannot be used during a merge, nor when the
|
|
|
|
index and the latest commit does not match on the
|
|
|
|
specified paths to avoid confusion.
|
2005-08-09 02:39:18 +02:00
|
|
|
|
2006-02-13 08:55:07 +01:00
|
|
|
--::
|
|
|
|
Do not interpret any more arguments as options.
|
|
|
|
|
|
|
|
<file>...::
|
|
|
|
Files to be committed. The meaning of these is
|
|
|
|
different between `--include` and `--only`. Without
|
|
|
|
either, it defaults `--only` semantics.
|
|
|
|
|
2005-12-17 03:23:33 +01:00
|
|
|
If you make a commit and then found a mistake immediately after
|
|
|
|
that, you can recover from it with gitlink:git-reset[1].
|
|
|
|
|
|
|
|
|
2006-02-05 09:07:44 +01:00
|
|
|
Discussion
|
|
|
|
----------
|
|
|
|
|
|
|
|
`git commit` without _any_ parameter commits the tree structure
|
|
|
|
recorded by the current index file. This is a whole-tree commit
|
|
|
|
even the command is invoked from a subdirectory.
|
|
|
|
|
|
|
|
`git commit --include paths...` is equivalent to
|
|
|
|
|
|
|
|
git update-index --remove paths...
|
|
|
|
git commit
|
|
|
|
|
|
|
|
That is, update the specified paths to the index and then commit
|
|
|
|
the whole tree.
|
|
|
|
|
|
|
|
`git commit paths...` largely bypasses the index file and
|
|
|
|
commits only the changes made to the specified paths. It has
|
|
|
|
however several safety valves to prevent confusion.
|
|
|
|
|
|
|
|
. It refuses to run during a merge (i.e. when
|
|
|
|
`$GIT_DIR/MERGE_HEAD` exists), and reminds trained git users
|
|
|
|
that the traditional semantics now needs -i flag.
|
|
|
|
|
|
|
|
. It refuses to run if named `paths...` are different in HEAD
|
|
|
|
and the index (ditto about reminding). Added paths are OK.
|
|
|
|
This is because an earlier `git diff` (not `git diff HEAD`)
|
|
|
|
would have shown the differences since the last `git
|
|
|
|
update-index paths...` to the user, and an inexperienced user
|
|
|
|
may mistakenly think that the changes between the index and
|
|
|
|
the HEAD (i.e. earlier changes made before the last `git
|
|
|
|
update-index paths...` was done) are not being committed.
|
|
|
|
|
|
|
|
. It reads HEAD commit into a temporary index file, updates the
|
|
|
|
specified `paths...` and makes a commit. At the same time,
|
|
|
|
the real index file is also updated with the same `paths...`.
|
|
|
|
|
|
|
|
`git commit --all` updates the index file with _all_ changes to
|
|
|
|
the working tree, and makes a whole-tree commit, regardless of
|
|
|
|
which subdirectory the command is invoked in.
|
|
|
|
|
|
|
|
|
2005-08-09 02:39:18 +02:00
|
|
|
Author
|
|
|
|
------
|
2005-08-15 02:24:36 +02:00
|
|
|
Written by Linus Torvalds <torvalds@osdl.org> and
|
|
|
|
Junio C Hamano <junkio@cox.net>
|
|
|
|
|
2005-08-09 02:39:18 +02:00
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2005-09-19 12:10:51 +02:00
|
|
|
Part of the gitlink:git[7] suite
|