7 git-commit-script - Record your changes
11 'git commit' [-a] [-s] [-v] [(-c | -C) <commit> | -F <file> | -m <msg>] <file>...
15 Updates the index file for given paths, or all modified files if
16 '-a' is specified, and makes a commit object. The command
17 VISUAL and EDITOR environment variables to edit the commit log
23 Update all paths in the index file.
26 Take existing commit object, and reuse the log message
27 and the authorship information (including the timestamp)
28 when creating the commit. With '-C', the editor is not
29 invoked; with '-c' the user can further edit the commit
33 Take the commit message from the given file. Use '-' to
34 read the message from the standard input.
37 Use the given <msg> as the commit message.
40 Add Signed-off-by line at the end of the commit message.
43 Look for suspicious lines the commit introduces, and
44 abort committing if there is one. The definition of
45 'suspicious lines' is currently the lines that has
46 trailing whitespaces, and the lines whose indentation
47 has a SP character immediately followed by a TAB
51 Update specified paths in the index file.
56 Written by Linus Torvalds <torvalds@osdl.org> and
57 Junio C Hamano <junkio@cox.net>
62 Part of the link:git.html[git] suite