6 git-commit - Trage Änderungen im Projektarchiv (repository) ein
11 'git commit' [-a | --interactive] [-s] [-v] [-u<mode>] [--amend]
12 [(-c | -C) <commit>] [-F <file> | -m <msg>]
13 [--allow-empty] [--no-verify] [-e] [--author=<author>]
14 [--cleanup=<mode>] [--] [[-i | -o ]<file>...]
18 Speichere den aktuellen Inhalt des Index gemeinsam mit einer die Änderungen
19 des Benutzers beschreibenden Log Nachricht als neue Eintragung (commit) im
22 Der neue Inhalt kann auf verschiedene Arten angegeben werden:
24 1. Durch Verwendung von 'git-add', um Änderungen, vor Aufruf des
25 'git commit' Befehls, schrittweise zum Index hinzuzufügen (Anmerkung:
26 auch lediglich modifizierte Dateien müssen "hinzugefügt" werden);
28 2. Durch Verwendung von 'git-rm' um Dateien, vor Aufruf des 'git commit'
29 Befehls, aus dem Arbeitsbereich, und dem Index zu entfernen,
31 3. Durch die Angabe von Dateien als Argumente des 'git commit' Befehls,
32 wodurch die Eintragung (commit) aller im Index vorgemerkten Änderungen
33 ignoriert wird, und statt dessen der aktuelle Inhalt der aufgezählten
34 Dateien im Projektarchiv (repository) eingetragen wird.
36 4. Durch Verwendung des -a Schalters des 'git commit' Befehls, um zuvor
37 automatisch die Änderungen aller bekannten Dateien (also aller Dateien
38 die im Index bereits bekannt sind) hinzuzufügen ('git add'), und um
39 automatisch alle Dateien die aus dem Arbeitsbereich gelöscht wurden zu
42 5. Durch Verwendung des --interactive Schalters des 'git commit' Befehls,
43 um zuvor für jede Datei einzeln zu entscheiden ob diese Teil der
44 Eintragung (commit) sein soll. Dies wird derzeit durch
45 'git-add --interactive' bewerkstelligt.
47 Der 'git-status' Befehl kann, durch Angabe der selben Parameter die man
48 für 'git commit' benutzen würde, dazu verwendet werden, um einen Überblick
49 darüber zu erhalten, welche Dateien bei jeder der obigen Optionen in der
50 nächsten Eintragung (commit) beinhaltet sein würden.
52 Wurde eine Eintragung (commit) durchgeführt und unmittelbar danach
53 ein Fehler erkannt, so kann diese mit 'git-reset' rückgängig gemacht werden.
60 Führe die Bereitstellung (staging) und Eintragung (commit) aller
61 modifizierten und gelöschten Dateien durch.
62 Es werden ausschließlich Dateien behandelt die in git bekannt
63 sind, alle für git neuen Dateien werden somit nicht eingetragen.
67 --reuse-message=<commit>::
68 Nimm eine existierende Eintragung (commit) und verwende die
69 Eintragungsbemerkung (commit message) und die Autoreninformation
70 (inklusive Zeitstempel) für die aktuelle Eintragung.
73 --reedit-message=<commit>::
74 Ähnlich wie '-C' allerdings wird mit '-c' der Editor
75 aufgerufen, wodurch der Benutzer die Eintragungsbemerkung
76 vor der Eintragung überarbeiten kann.
80 Nimm die Eintragungsbemerkung (commit message) der spezifizierten
81 Datei. Mit '-' wird die Bemerkung von der Standard Eingabe gelesen.
84 Überschreibe den Namen des in der Eintragung verwendeten Authors.
85 Benutze das `A U Thor <author@example.com>` Format.
89 Verwende die angegebene <msg> als Eintragungsbemerkung
94 Verwende den Inhalt der angegebenen Datei als initiale
95 Version der Eintragungsbemerkung. Der Editor wird aufgerufen
96 um weitere Änderungen vornehmen zu können. Wird eine Bemerkung
97 mittels der Optionen '-m' oder '-F' angegeben, so hat die
98 '-t' Option keine Auswirkung. Diese Angabe überschreibt die
99 'commit.template' Konfigurationsvariable.
103 Füge eine Unterschriftenzeile am Ende der Eintragungsbemerkung
104 (commit message) hinzu.
108 Diese Option schaltet die pre-commit und commit-msg
109 Einsprungspunkte (hooks) aus. Siehe auch linkgit:githooks[5].
112 Normalerweise ist das Aufzeichnen einer Eintragung welche exakt
113 den gleichen Inhalt wie sein Vorgänger hat ein Fehler, und
114 'git commit' verhindert eine derartige Eintragung. Mit dieser
115 Option kann diese Sicherheitsvorkehrung ausgeschalten werden,
116 was hauptsächlich für fremde SCM Schnittstellen-Skripte
120 Diese Option bestimmt, wie Eintragungsbemerkungen (commit
121 message) 'aufgeräumt' werden. Der '<mode>' kann sein:
122 'verbatim', 'whitespace', 'strip', oder 'default'.
123 Der 'default' Modus entfernt führende und am Ende befindliche
124 Leerzeilen und #Bemerkungen wenn die Eintragungsbemerkung
125 editiert wurde. Ansonst werden nur Leerzeichen (whitespaces)
126 entfernt. Der 'verbatim' Modusläßt die Eintragungsbemerkung
127 gänzlich unverändert, 'whitespace' entfernt vorne und hinten
128 die Leerzeichen und 'strip' entfernt sowohl Leerzeichen
129 wie auch Kommentare (Zeilen die mit '#' beginnen).
133 Die Eintragungsbemerkungen (commit message) einer Datei ('-F'),
134 der Befehlszeile ('-m') oder einer Eintragung ('-C') werden
135 normalerweise nicht weiter bearbeitet. Diese Option ermöglicht
136 das weitere Editieren dieser Bemerkung bevor die Eintragung
137 (commit) durchgeführt wird.
140 Used to amend the tip of the current branch. Prepare the tree
141 object you would want to replace the latest commit as usual
142 (this includes the usual -i/-o and explicit paths), and the
143 commit log editor is seeded with the commit message from the
144 tip of the current branch. The commit you create replaces the
145 current tip -- if it was a merge, it will have the parents of
146 the current tip as parents -- so the current top commit is
150 It is a rough equivalent for:
152 $ git reset --soft HEAD^
153 $ ... do something else to come up with the right tree ...
154 $ git commit -c ORIG_HEAD
157 but can be used to amend a merge commit.
162 Before making a commit out of staged contents so far,
163 stage the contents of paths given on the command line
164 as well. This is usually not what you want unless you
165 are concluding a conflicted merge.
169 Make a commit only from the paths specified on the
170 command line, disregarding any contents that have been
171 staged so far. This is the default mode of operation of
172 'git-commit' if any paths are given on the command line,
173 in which case this option can be omitted.
174 If this option is specified together with '--amend', then
175 no paths need be specified, which can be used to amend
176 the last commit without committing changes that have
180 --untracked-files[=<mode>]::
181 Show untracked files (Default: 'all').
183 The mode parameter is optional, and is used to specify
184 the handling of untracked files. The possible options are:
187 - 'no' - Show no untracked files
188 - 'normal' - Shows untracked files and directories
189 - 'all' - Also shows individual files in untracked directories.
192 See linkgit:git-config[1] for configuration variable
193 used to change the default for when the option is not
198 Show unified diff between the HEAD commit and what
199 would be committed at the bottom of the commit message
200 template. Note that this diff output doesn't have its
201 lines prefixed with '#'.
205 Suppress commit summary message.
208 Do not interpret any more arguments as options.
211 When files are given on the command line, the command
212 commits the contents of the named files, without
213 recording the changes already staged. The contents of
214 these files are also staged for the next commit on top
215 of what have been staged before.
220 When recording your own work, the contents of modified files in
221 your working tree are temporarily stored to a staging area
222 called the "index" with 'git-add'. A file can be
223 reverted back, only in the index but not in the working tree,
224 to that of the last commit with `git reset HEAD -- <file>`,
225 which effectively reverts 'git-add' and prevents the changes to
226 this file from participating in the next commit. After building
227 the state to be committed incrementally with these commands,
228 `git commit` (without any pathname parameter) is used to record what
229 has been staged so far. This is the most basic form of the
239 Instead of staging files after each individual change, you can
240 tell `git commit` to notice the changes to the files whose
241 contents are tracked in
242 your working tree and do corresponding `git add` and `git rm`
243 for you. That is, this example does the same as the earlier
244 example if there is no other change in your working tree:
252 The command `git commit -a` first looks at your working tree,
253 notices that you have modified hello.c and removed goodbye.c,
254 and performs necessary `git add` and `git rm` for you.
256 After staging changes to many files, you can alter the order the
257 changes are recorded in, by giving pathnames to `git commit`.
258 When pathnames are given, the command makes a commit that
259 only records the changes made to the named paths:
262 $ edit hello.c hello.h
263 $ git add hello.c hello.h
265 $ git commit Makefile
268 This makes a commit that records the modification to `Makefile`.
269 The changes staged for `hello.c` and `hello.h` are not included
270 in the resulting commit. However, their changes are not lost --
271 they are still staged and merely held back. After the above
278 this second commit would record the changes to `hello.c` and
279 `hello.h` as expected.
281 After a merge (initiated by 'git-merge' or 'git-pull') stops
282 because of conflicts, cleanly merged
283 paths are already staged to be committed for you, and paths that
284 conflicted are left in unmerged state. You would have to first
285 check which paths are conflicting with 'git-status'
286 and after fixing them manually in your working tree, you would
287 stage the result as usual with 'git-add':
290 $ git status | grep unmerged
296 After resolving conflicts and staging the result, `git ls-files -u`
297 would stop mentioning the conflicted path. When you are done,
298 run `git commit` to finally record the merge:
304 As with the case to record your own changes, you can use `-a`
305 option to save typing. One difference is that during a merge
306 resolution, you cannot use `git commit` with pathnames to
307 alter the order the changes are committed, because the merge
308 should be recorded as a single commit. In fact, the command
309 refuses to run when given pathnames (but see `-i` option).
315 Though not required, it's a good idea to begin the commit message
316 with a single short (less than 50 character) line summarizing the
317 change, followed by a blank line and then a more thorough description.
318 Tools that turn commits into email, for example, use the first line
319 on the Subject: line and the rest of the commit in the body.
323 ENVIRONMENT AND CONFIGURATION VARIABLES
324 ---------------------------------------
325 The editor used to edit the commit log message will be chosen from the
326 GIT_EDITOR environment variable, the core.editor configuration variable, the
327 VISUAL environment variable, or the EDITOR environment variable (in that
332 This command can run `commit-msg`, `prepare-commit-msg`, `pre-commit`,
333 and `post-commit` hooks. See linkgit:githooks[5] for more
342 linkgit:git-merge[1],
343 linkgit:git-commit-tree[1]
347 Written by Linus Torvalds <torvalds@osdl.org> and
348 Junio C Hamano <gitster@pobox.com>
353 Part of the linkgit:git[1] suite