6 git-commit - Record your changes
11 'git-commit' [-a] [-i] [-s] [-v] [(-c | -C) <commit> | -F <file> | -m <msg>]
12 [-e] [--author <author>] [--] <file>...
16 Updates the index file for given paths, or all modified files if
17 '-a' is specified, and makes a commit object. The command
18 VISUAL and EDITOR environment variables to edit the commit log
21 This command can run `commit-msg`, `pre-commit`, and
22 `post-commit` hooks. See link:hooks.html[hooks] for more
28 Update all paths in the index file. This flag notices
29 files that have been modified and deleted, but new files
30 you have not told git about are not affected.
33 Take existing commit object, and reuse the log message
34 and the authorship information (including the timestamp)
35 when creating the commit. With '-C', the editor is not
36 invoked; with '-c' the user can further edit the commit
40 Take the commit message from the given file. Use '-' to
41 read the message from the standard input.
44 Override the author name used in the commit. Use
45 `A U Thor <author@example.com>` format.
48 Use the given <msg> as the commit message.
51 Add Signed-off-by line at the end of the commit message.
54 Look for suspicious lines the commit introduces, and
55 abort committing if there is one. The definition of
56 'suspicious lines' is currently the lines that has
57 trailing whitespaces, and the lines whose indentation
58 has a SP character immediately followed by a TAB
59 character. This is the default.
62 The opposite of `--verify`.
65 The message taken from file with `-F`, command line with
66 `-m`, and from file with `-C` are usually used as the
67 commit log message unmodified. This option lets you
68 further edit the message taken from these sources.
71 Instead of committing only the files specified on the
72 command line, update them in the index file and then
73 commit the whole index. This is the traditional
77 Do not interpret any more arguments as options.
80 Commit only the files specified on the command line.
81 This format cannot be used during a merge, nor when the
82 index and the latest commit does not match on the
83 specified paths to avoid confusion.
85 If you make a commit and then found a mistake immediately after
86 that, you can recover from it with gitlink:git-reset[1].
92 `git commit` without _any_ parameter commits the tree structure
93 recorded by the current index file. This is a whole-tree commit
94 even the command is invoked from a subdirectory.
96 `git commit --include paths...` is equivalent to
98 git update-index --remove paths...
101 That is, update the specified paths to the index and then commit
104 `git commit paths...` largely bypasses the index file and
105 commits only the changes made to the specified paths. It has
106 however several safety valves to prevent confusion.
108 . It refuses to run during a merge (i.e. when
109 `$GIT_DIR/MERGE_HEAD` exists), and reminds trained git users
110 that the traditional semantics now needs -i flag.
112 . It refuses to run if named `paths...` are different in HEAD
113 and the index (ditto about reminding). Added paths are OK.
114 This is because an earlier `git diff` (not `git diff HEAD`)
115 would have shown the differences since the last `git
116 update-index paths...` to the user, and an inexperienced user
117 may mistakenly think that the changes between the index and
118 the HEAD (i.e. earlier changes made before the last `git
119 update-index paths...` was done) are not being committed.
121 . It reads HEAD commit into a temporary index file, updates the
122 specified `paths...` and makes a commit. At the same time,
123 the real index file is also updated with the same `paths...`.
125 `git commit --all` updates the index file with _all_ changes to
126 the working tree, and makes a whole-tree commit, regardless of
127 which subdirectory the command is invoked in.
132 Written by Linus Torvalds <torvalds@osdl.org> and
133 Junio C Hamano <junkio@cox.net>
138 Part of the gitlink:git[7] suite