You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.8 KiB
73 lines
1.8 KiB
19 years ago
|
git-commit(1)
|
||
|
=============
|
||
20 years ago
|
v0.99.4, Aug 2005
|
||
|
|
||
|
NAME
|
||
|
----
|
||
19 years ago
|
git-commit - Record your changes
|
||
20 years ago
|
|
||
|
SYNOPSIS
|
||
|
--------
|
||
19 years ago
|
'git commit' [-a] [-s] [-v] [(-c | -C) <commit> | -F <file> | -m <msg>] [-e] <file>...
|
||
20 years ago
|
|
||
|
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.
|
||
|
|
||
19 years ago
|
This command can run `commit-msg`, `pre-commit`, and
|
||
|
`post-commit` hooks. See link:hooks.html[hooks] for more
|
||
|
information.
|
||
|
|
||
20 years ago
|
OPTIONS
|
||
|
-------
|
||
|
-a::
|
||
|
Update all paths in the index file.
|
||
|
|
||
|
-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.
|
||
|
|
||
|
-m <msg>::
|
||
|
Use the given <msg> as the commit message.
|
||
|
|
||
19 years ago
|
-s::
|
||
|
Add Signed-off-by line at the end of the commit message.
|
||
|
|
||
|
-v::
|
||
|
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
|
||
|
character.
|
||
|
|
||
19 years ago
|
-e::
|
||
|
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.
|
||
|
|
||
20 years ago
|
<file>...::
|
||
19 years ago
|
Update specified paths in the index file before committing.
|
||
20 years ago
|
|
||
|
|
||
|
Author
|
||
|
------
|
||
19 years ago
|
Written by Linus Torvalds <torvalds@osdl.org> and
|
||
|
Junio C Hamano <junkio@cox.net>
|
||
|
|
||
20 years ago
|
|
||
|
GIT
|
||
|
---
|
||
|
Part of the link:git.html[git] suite
|