1git-commit(1) 2============= 3 4NAME 5---- 6git-commit - Record changes to the repository 7 8SYNOPSIS 9-------- 10[verse] 11'git-commit' [-a | --interactive] [-s] [-v] [-u] 12 [(-c | -C) <commit> | -F <file> | -m <msg> | --amend] 13 [--no-verify] [-e] [--author <author>] 14 [--] [[-i | -o ]<file>...] 15 16DESCRIPTION 17----------- 18Use 'git commit' when you want to record your changes into the repository 19along with a log message describing what the commit is about. All changes 20to be committed must be explicitly identified using one of the following 21methods: 22 231. by using gitlink:git-add[1] to incrementally "add" changes to the 24 next commit before using the 'commit' command (Note: even modified 25 files must be "added"); 26 272. by using gitlink:git-rm[1] to identify content removal for the next 28 commit, again before using the 'commit' command; 29 303. by directly listing files containing changes to be committed as arguments 31 to the 'commit' command, in which cases only those files alone will be 32 considered for the commit; 33 344. by using the -a switch with the 'commit' command to automatically "add" 35 changes from all known files i.e. files that have already been committed 36 before, and to automatically "rm" files that have been 37 removed from the working tree, and perform the actual commit. 38 395. by using the --interactive switch with the 'commit' command to decide one 40 by one which files should be part of the commit, before finalizing the 41 operation. Currently, this is done by invoking `git-add --interactive`. 42 43The gitlink:git-status[1] command can be used to obtain a 44summary of what is included by any of the above for the next 45commit by giving the same set of parameters you would give to 46this command. 47 48If you make a commit and then found a mistake immediately after 49that, you can recover from it with gitlink:git-reset[1]. 50 51 52OPTIONS 53------- 54-a|--all:: 55 Tell the command to automatically stage files that have 56 been modified and deleted, but new files you have not 57 told git about are not affected. 58 59-c or -C <commit>:: 60 Take existing commit object, and reuse the log message 61 and the authorship information (including the timestamp) 62 when creating the commit. With '-C', the editor is not 63 invoked; with '-c' the user can further edit the commit 64 message. 65 66-F <file>:: 67 Take the commit message from the given file. Use '-' to 68 read the message from the standard input. 69 70--author <author>:: 71 Override the author name used in the commit. Use 72 `A U Thor <author@example.com>` format. 73 74-m <msg>|--message=<msg>:: 75 Use the given <msg> as the commit message. 76 77-s|--signoff:: 78 Add Signed-off-by line at the end of the commit message. 79 80--no-verify:: 81 This option bypasses the pre-commit hook. 82 See also link:hooks.html[hooks]. 83 84-e|--edit:: 85 The message taken from file with `-F`, command line with 86 `-m`, and from file with `-C` are usually used as the 87 commit log message unmodified. This option lets you 88 further edit the message taken from these sources. 89 90--amend:: 91 92 Used to amend the tip of the current branch. Prepare the tree 93 object you would want to replace the latest commit as usual 94 (this includes the usual -i/-o and explicit paths), and the 95 commit log editor is seeded with the commit message from the 96 tip of the current branch. The commit you create replaces the 97 current tip -- if it was a merge, it will have the parents of 98 the current tip as parents -- so the current top commit is 99 discarded. 100+ 101-- 102It is a rough equivalent for: 103------ 104 $ git reset --soft HEAD^ 105 $ ... do something else to come up with the right tree ... 106 $ git commit -c ORIG_HEAD 107 108------ 109but can be used to amend a merge commit. 110-- 111 112-i|--include:: 113 Before making a commit out of staged contents so far, 114 stage the contents of paths given on the command line 115 as well. This is usually not what you want unless you 116 are concluding a conflicted merge. 117 118-u|--untracked-files:: 119 Show all untracked files, also those in uninteresting 120 directories, in the "Untracked files:" section of commit 121 message template. Without this option only its name and 122 a trailing slash are displayed for each untracked 123 directory. 124 125-v|--verbose:: 126 Show unified diff between the HEAD commit and what 127 would be committed at the bottom of the commit message 128 template. Note that this diff output doesn't have its 129 lines prefixed with '#'. 130 131-q|--quiet:: 132 Suppress commit summary message. 133 134\--:: 135 Do not interpret any more arguments as options. 136 137<file>...:: 138 When files are given on the command line, the command 139 commits the contents of the named files, without 140 recording the changes already staged. The contents of 141 these files are also staged for the next commit on top 142 of what have been staged before. 143 144 145EXAMPLES 146-------- 147When recording your own work, the contents of modified files in 148your working tree are temporarily stored to a staging area 149called the "index" with gitlink:git-add[1]. Removal 150of a file is staged with gitlink:git-rm[1]. After building the 151state to be committed incrementally with these commands, `git 152commit` (without any pathname parameter) is used to record what 153has been staged so far. This is the most basic form of the 154command. An example: 155 156------------ 157$ edit hello.c 158$ git rm goodbye.c 159$ git add hello.c 160$ git commit 161------------ 162 163Instead of staging files after each individual change, you can 164tell `git commit` to notice the changes to the files whose 165contents are tracked in 166your working tree and do corresponding `git add` and `git rm` 167for you. That is, this example does the same as the earlier 168example if there is no other change in your working tree: 169 170------------ 171$ edit hello.c 172$ rm goodbye.c 173$ git commit -a 174------------ 175 176The command `git commit -a` first looks at your working tree, 177notices that you have modified hello.c and removed goodbye.c, 178and performs necessary `git add` and `git rm` for you. 179 180After staging changes to many files, you can alter the order the 181changes are recorded in, by giving pathnames to `git commit`. 182When pathnames are given, the command makes a commit that 183only records the changes made to the named paths: 184 185------------ 186$ edit hello.c hello.h 187$ git add hello.c hello.h 188$ edit Makefile 189$ git commit Makefile 190------------ 191 192This makes a commit that records the modification to `Makefile`. 193The changes staged for `hello.c` and `hello.h` are not included 194in the resulting commit. However, their changes are not lost -- 195they are still staged and merely held back. After the above 196sequence, if you do: 197 198------------ 199$ git commit 200------------ 201 202this second commit would record the changes to `hello.c` and 203`hello.h` as expected. 204 205After a merge (initiated by either gitlink:git-merge[1] or 206gitlink:git-pull[1]) stops because of conflicts, cleanly merged 207paths are already staged to be committed for you, and paths that 208conflicted are left in unmerged state. You would have to first 209check which paths are conflicting with gitlink:git-status[1] 210and after fixing them manually in your working tree, you would 211stage the result as usual with gitlink:git-add[1]: 212 213------------ 214$ git status | grep unmerged 215unmerged: hello.c 216$ edit hello.c 217$ git add hello.c 218------------ 219 220After resolving conflicts and staging the result, `git ls-files -u` 221would stop mentioning the conflicted path. When you are done, 222run `git commit` to finally record the merge: 223 224------------ 225$ git commit 226------------ 227 228As with the case to record your own changes, you can use `-a` 229option to save typing. One difference is that during a merge 230resolution, you cannot use `git commit` with pathnames to 231alter the order the changes are committed, because the merge 232should be recorded as a single commit. In fact, the command 233refuses to run when given pathnames (but see `-i` option). 234 235 236DISCUSSION 237---------- 238 239Though not required, it's a good idea to begin the commit message 240with a single short (less than 50 character) line summarizing the 241change, followed by a blank line and then a more thorough description. 242Tools that turn commits into email, for example, use the first line 243on the Subject: line and the rest of the commit in the body. 244 245include::i18n.txt[] 246 247ENVIRONMENT VARIABLES 248--------------------- 249The command specified by either the VISUAL or EDITOR environment 250variables is used to edit the commit log message. 251 252HOOKS 253----- 254This command can run `commit-msg`, `pre-commit`, and 255`post-commit` hooks. See link:hooks.html[hooks] for more 256information. 257 258 259SEE ALSO 260-------- 261gitlink:git-add[1], 262gitlink:git-rm[1], 263gitlink:git-mv[1], 264gitlink:git-merge[1], 265gitlink:git-commit-tree[1] 266 267Author 268------ 269Written by Linus Torvalds <torvalds@osdl.org> and 270Junio C Hamano <junkio@cox.net> 271 272 273GIT 274--- 275Part of the gitlink:git[7] suite