]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/githooks.txt
Prepare for 2.12.3
[thirdparty/git.git] / Documentation / githooks.txt
CommitLineData
a5af0e2c
CC
1githooks(5)
2===========
3
4NAME
5----
2de9b711 6githooks - Hooks used by Git
a5af0e2c
CC
7
8SYNOPSIS
9--------
867ad08a 10$GIT_DIR/hooks/* (or \`git config core.hooksPath`/*)
a5af0e2c
CC
11
12
13DESCRIPTION
14-----------
6d35cc76 15
867ad08a
ÆAB
16Hooks are programs you can place in a hooks directory to trigger
17actions at certain points in git's execution. Hooks that don't have
18the executable bit set are ignored.
19
20By default the hooks directory is `$GIT_DIR/hooks`, but that can be
21changed via the `core.hooksPath` configuration variable (see
22linkgit:git-config[1]).
49fa52fd
ÆAB
23
24Before Git invokes a hook, it changes its working directory to either
25the root of the working tree in a non-bare repository, or to the
26$GIT_DIR in a bare repository.
27
28Hooks can get their arguments via the environment, command-line
29arguments, and stdin. See the documentation for each hook below for
30details.
31
32'git init' may copy hooks to the new repository, depending on its
33configuration. See the "TEMPLATE DIRECTORY" section in
34linkgit:git-init[1] for details. When the rest of this document refers
35to "default hooks" it's talking about the default template shipped
36with Git.
37
38The currently supported hooks are described below.
6d35cc76 39
6d71c1dc
BW
40HOOKS
41-----
42
6d35cc76 43applypatch-msg
6d71c1dc 44~~~~~~~~~~~~~~
6d35cc76 45
de0824ed 46This hook is invoked by 'git am'. It takes a single
6d35cc76 47parameter, the name of the file that holds the proposed commit
de0824ed
ÆAB
48log message. Exiting with a non-zero status causes 'git am' to abort
49before applying the patch.
6d35cc76
JH
50
51The hook is allowed to edit the message file in place, and can
52be used to normalize the message into some project standard
de0824ed
ÆAB
53format. It can also be used to refuse the commit after inspecting
54the message file.
6d35cc76 55
45ad9b50
JF
56The default 'applypatch-msg' hook, when enabled, runs the
57'commit-msg' hook, if the latter is enabled.
6d35cc76
JH
58
59pre-applypatch
6d71c1dc 60~~~~~~~~~~~~~~
6d35cc76 61
0b444cdb 62This hook is invoked by 'git am'. It takes no parameter, and is
47458bb9
CC
63invoked after the patch is applied, but before a commit is made.
64
65If it exits with non-zero status, then the working tree will not be
66committed after applying the patch.
6d35cc76
JH
67
68It can be used to inspect the current working tree and refuse to
69make a commit if it does not pass certain test.
70
45ad9b50
JF
71The default 'pre-applypatch' hook, when enabled, runs the
72'pre-commit' hook, if the latter is enabled.
6d35cc76
JH
73
74post-applypatch
6d71c1dc 75~~~~~~~~~~~~~~~
6d35cc76 76
0b444cdb 77This hook is invoked by 'git am'. It takes no parameter,
6d35cc76
JH
78and is invoked after the patch is applied and a commit is made.
79
80This hook is meant primarily for notification, and cannot affect
0b444cdb 81the outcome of 'git am'.
6d35cc76
JH
82
83pre-commit
6d71c1dc 84~~~~~~~~~~
6d35cc76 85
0b444cdb 86This hook is invoked by 'git commit', and can be bypassed
de0824ed 87with the `--no-verify` option. It takes no parameters, and is
6d35cc76 88invoked before obtaining the proposed commit log message and
de0824ed
ÆAB
89making a commit. Exiting with a non-zero status from this script
90causes the 'git commit' command to abort before creating a commit.
6d35cc76 91
45ad9b50 92The default 'pre-commit' hook, when enabled, catches introduction
6d35cc76 93of lines with trailing whitespaces and aborts the commit when
45ad9b50 94such a line is found.
6d35cc76 95
0b444cdb 96All the 'git commit' hooks are invoked with the environment
406400ce
PB
97variable `GIT_EDITOR=:` if the command will not bring up an editor
98to modify the commit message.
99
8089c85b 100prepare-commit-msg
6d71c1dc 101~~~~~~~~~~~~~~~~~~
8089c85b 102
0b444cdb 103This hook is invoked by 'git commit' right after preparing the
8089c85b
PB
104default log message, and before the editor is started.
105
106It takes one to three parameters. The first is the name of the file
99686960 107that contains the commit log message. The second is the source of the commit
5d6b3a9e
SG
108message, and can be: `message` (if a `-m` or `-F` option was
109given); `template` (if a `-t` option was given or the
8089c85b
PB
110configuration option `commit.template` is set); `merge` (if the
111commit is a merge or a `.git/MERGE_MSG` file exists); `squash`
112(if a `.git/SQUASH_MSG` file exists); or `commit`, followed by
d5fa1f1a 113a commit SHA-1 (if a `-c`, `-C` or `--amend` option was given).
8089c85b 114
0b444cdb 115If the exit status is non-zero, 'git commit' will abort.
8089c85b
PB
116
117The purpose of the hook is to edit the message file in place, and
6cf378f0 118it is not suppressed by the `--no-verify` option. A non-zero exit
8089c85b
PB
119means a failure of the hook and aborts the commit. It should not
120be used as replacement for pre-commit hook.
121
2de9b711 122The sample `prepare-commit-msg` hook that comes with Git comments
8089c85b
PB
123out the `Conflicts:` part of a merge's commit message.
124
6d35cc76 125commit-msg
6d71c1dc 126~~~~~~~~~~
6d35cc76 127
0b444cdb 128This hook is invoked by 'git commit', and can be bypassed
de0824ed 129with the `--no-verify` option. It takes a single parameter, the
6d35cc76 130name of the file that holds the proposed commit log message.
de0824ed 131Exiting with a non-zero status causes the 'git commit' to
6d35cc76
JH
132abort.
133
de0824ed
ÆAB
134The hook is allowed to edit the message file in place, and can be used
135to normalize the message into some project standard format. It
136can also be used to refuse the commit after inspecting the message
137file.
6d35cc76 138
45ad9b50
JF
139The default 'commit-msg' hook, when enabled, detects duplicate
140"Signed-off-by" lines, and aborts the commit if one is found.
6d35cc76
JH
141
142post-commit
6d71c1dc 143~~~~~~~~~~~
6d35cc76 144
de0824ed
ÆAB
145This hook is invoked by 'git commit'. It takes no parameters, and is
146invoked after a commit is made.
6d35cc76
JH
147
148This hook is meant primarily for notification, and cannot affect
0b444cdb 149the outcome of 'git commit'.
6d35cc76 150
00e5d48a 151pre-rebase
6d71c1dc 152~~~~~~~~~~
00e5d48a 153
0414acc3
TK
154This hook is called by 'git rebase' and can be used to prevent a
155branch from getting rebased. The hook may be called with one or
156two parameters. The first parameter is the upstream from which
157the series was forked. The second parameter is the branch being
158rebased, and is not set when rebasing the current branch.
00e5d48a 159
1abbe475 160post-checkout
6d71c1dc 161~~~~~~~~~~~~~
1abbe475 162
0b444cdb 163This hook is invoked when a 'git checkout' is run after having updated the
1abbe475
JE
164worktree. The hook is given three parameters: the ref of the previous HEAD,
165the ref of the new HEAD (which may or may not have changed), and a flag
166indicating whether the checkout was a branch checkout (changing branches,
167flag=1) or a file checkout (retrieving a file from the index, flag=0).
0b444cdb 168This hook cannot affect the outcome of 'git checkout'.
1abbe475 169
0b444cdb 170It is also run after 'git clone', unless the --no-checkout (-n) option is
24c11552
JL
171used. The first parameter given to the hook is the null-ref, the second the
172ref of the new HEAD and the flag is always 1.
173
1abbe475
JE
174This hook can be used to perform repository validity checks, auto-display
175differences from the previous HEAD if different, or set working dir metadata
176properties.
177
46232915 178post-merge
6d71c1dc 179~~~~~~~~~~
46232915 180
0b444cdb 181This hook is invoked by 'git merge', which happens when a 'git pull'
46232915
JE
182is done on a local repository. The hook takes a single parameter, a status
183flag specifying whether or not the merge being done was a squash merge.
0b444cdb 184This hook cannot affect the outcome of 'git merge' and is not executed,
2b3e60c2 185if the merge failed due to conflicts.
46232915
JE
186
187This hook can be used in conjunction with a corresponding pre-commit hook to
188save and restore any form of metadata associated with the working tree
f745acb0 189(e.g.: permissions/ownership, ACLS, etc). See contrib/hooks/setgitperms.perl
af6fb4c8 190for an example of how to do this.
46232915 191
ec55559f
AS
192pre-push
193~~~~~~~~
194
195This hook is called by 'git push' and can be used to prevent a push from taking
196place. The hook is called with two parameters which provide the name and
197location of the destination remote, if a named remote is not being used both
198values will be the same.
199
200Information about what is to be pushed is provided on the hook's standard
201input with lines of the form:
202
203 <local ref> SP <local sha1> SP <remote ref> SP <remote sha1> LF
204
205For instance, if the command +git push origin master:foreign+ were run the
206hook would receive a line like the following:
207
208 refs/heads/master 67890 refs/heads/foreign 12345
209
d5fa1f1a
TA
210although the full, 40-character SHA-1s would be supplied. If the foreign ref
211does not yet exist the `<remote SHA-1>` will be 40 `0`. If a ref is to be
ec55559f 212deleted, the `<local ref>` will be supplied as `(delete)` and the `<local
d5fa1f1a
TA
213SHA-1>` will be 40 `0`. If the local commit was specified by something other
214than a name which could be expanded (such as `HEAD~`, or a SHA-1) it will be
ec55559f
AS
215supplied as it was originally given.
216
217If this hook exits with a non-zero status, 'git push' will abort without
218pushing anything. Information about why the push is rejected may be sent
219to the user by writing to standard error.
220
cbb84e5d
JH
221[[pre-receive]]
222pre-receive
6d71c1dc 223~~~~~~~~~~~
cbb84e5d 224
ba020ef5 225This hook is invoked by 'git-receive-pack' on the remote repository,
0b444cdb 226which happens when a 'git push' is done on a local repository.
cbb84e5d
JH
227Just before starting to update refs on the remote repository, the
228pre-receive hook is invoked. Its exit status determines the success
229or failure of the update.
230
231This hook executes once for the receive operation. It takes no
232arguments, but for each ref to be updated it receives on standard
233input a line of the format:
234
235 <old-value> SP <new-value> SP <ref-name> LF
236
237where `<old-value>` is the old object name stored in the ref,
238`<new-value>` is the new object name to be stored in the ref and
239`<ref-name>` is the full name of the ref.
240When creating a new ref, `<old-value>` is 40 `0`.
241
242If the hook exits with non-zero status, none of the refs will be
243updated. If the hook exits with zero, updating of individual refs can
244still be prevented by the <<update,'update'>> hook.
245
24a0d61e 246Both standard output and standard error output are forwarded to
0b444cdb 247'git send-pack' on the other end, so you can simply `echo` messages
24a0d61e 248for the user.
cbb84e5d 249
77a9745d
SB
250The number of push options given on the command line of
251`git push --push-option=...` can be read from the environment
252variable `GIT_PUSH_OPTION_COUNT`, and the options themselves are
253found in `GIT_PUSH_OPTION_0`, `GIT_PUSH_OPTION_1`,...
254If it is negotiated to not use the push options phase, the
255environment variables will not be set. If the client selects
256to use push options, but doesn't transmit any, the count variable
257will be set to zero, `GIT_PUSH_OPTION_COUNT=0`.
258
cbb84e5d 259[[update]]
6d35cc76 260update
6d71c1dc 261~~~~~~
6d35cc76 262
ba020ef5 263This hook is invoked by 'git-receive-pack' on the remote repository,
0b444cdb 264which happens when a 'git push' is done on a local repository.
6250ad1e 265Just before updating the ref on the remote repository, the update hook
37425065 266is invoked. Its exit status determines the success or failure of
6250ad1e
JL
267the ref update.
268
269The hook executes once for each ref to be updated, and takes
270three parameters:
45ad9b50
JF
271
272 - the name of the ref being updated,
273 - the old object name stored in the ref,
5fe8f49b 274 - and the new object name to be stored in the ref.
6250ad1e
JL
275
276A zero exit from the update hook allows the ref to be updated.
ba020ef5 277Exiting with a non-zero status prevents 'git-receive-pack'
cbb84e5d 278from updating that ref.
6250ad1e
JL
279
280This hook can be used to prevent 'forced' update on certain refs by
6d35cc76
JH
281making sure that the object name is a commit object that is a
282descendant of the commit object named by the old object name.
a75d7b54 283That is, to enforce a "fast-forward only" policy.
6250ad1e
JL
284
285It could also be used to log the old..new status. However, it
286does not know the entire set of branches, so it would end up
cbb84e5d
JH
287firing one e-mail per ref when used naively, though. The
288<<post-receive,'post-receive'>> hook is more suited to that.
6250ad1e 289
bf7d977f
ÆAB
290In an environment that restricts the users' access only to git
291commands over the wire, this hook can be used to implement access
292control without relying on filesystem ownership and group
293membership. See linkgit:git-shell[1] for how you might use the login
294shell to restrict the user's access to only git commands.
6d35cc76 295
24a0d61e 296Both standard output and standard error output are forwarded to
0b444cdb 297'git send-pack' on the other end, so you can simply `echo` messages
24a0d61e 298for the user.
3aadad1b 299
cbb84e5d 300The default 'update' hook, when enabled--and with
39c448c1 301`hooks.allowunannotated` config option unset or set to false--prevents
cbb84e5d
JH
302unannotated tags to be pushed.
303
304[[post-receive]]
305post-receive
6d71c1dc 306~~~~~~~~~~~~
6250ad1e 307
ba020ef5 308This hook is invoked by 'git-receive-pack' on the remote repository,
0b444cdb 309which happens when a 'git push' is done on a local repository.
cbb84e5d
JH
310It executes on the remote repository once after all the refs have
311been updated.
312
313This hook executes once for the receive operation. It takes no
24a0d61e
JH
314arguments, but gets the same information as the
315<<pre-receive,'pre-receive'>>
cbb84e5d
JH
316hook does on its standard input.
317
ba020ef5 318This hook does not affect the outcome of 'git-receive-pack', as it
cbb84e5d
JH
319is called after the real work is done.
320
02783075 321This supersedes the <<post-update,'post-update'>> hook in that it gets
24a0d61e
JH
322both old and new values of all the refs in addition to their
323names.
cbb84e5d 324
24a0d61e 325Both standard output and standard error output are forwarded to
0b444cdb 326'git send-pack' on the other end, so you can simply `echo` messages
24a0d61e 327for the user.
cbb84e5d
JH
328
329The default 'post-receive' hook is empty, but there is
330a sample script `post-receive-email` provided in the `contrib/hooks`
2de9b711 331directory in Git distribution, which implements sending commit
cbb84e5d
JH
332emails.
333
77a9745d
SB
334The number of push options given on the command line of
335`git push --push-option=...` can be read from the environment
336variable `GIT_PUSH_OPTION_COUNT`, and the options themselves are
337found in `GIT_PUSH_OPTION_0`, `GIT_PUSH_OPTION_1`,...
338If it is negotiated to not use the push options phase, the
339environment variables will not be set. If the client selects
340to use push options, but doesn't transmit any, the count variable
341will be set to zero, `GIT_PUSH_OPTION_COUNT=0`.
342
cbb84e5d 343[[post-update]]
6d35cc76 344post-update
6d71c1dc 345~~~~~~~~~~~
6d35cc76 346
ba020ef5 347This hook is invoked by 'git-receive-pack' on the remote repository,
0b444cdb 348which happens when a 'git push' is done on a local repository.
6250ad1e
JL
349It executes on the remote repository once after all the refs have
350been updated.
351
352It takes a variable number of parameters, each of which is the
353name of ref that was actually updated.
6d35cc76
JH
354
355This hook is meant primarily for notification, and cannot affect
ba020ef5 356the outcome of 'git-receive-pack'.
6d35cc76 357
45ad9b50 358The 'post-update' hook can tell what are the heads that were pushed,
6250ad1e 359but it does not know what their original and updated values are,
24a0d61e
JH
360so it is a poor place to do log old..new. The
361<<post-receive,'post-receive'>> hook does get both original and
362updated values of the refs. You might consider it instead if you need
363them.
cbb84e5d 364
45ad9b50 365When enabled, the default 'post-update' hook runs
0b444cdb 366'git update-server-info' to keep the information used by dumb
45ad9b50 367transports (e.g., HTTP) up-to-date. If you are publishing
2de9b711 368a Git repository that is accessible via HTTP, you should
6250ad1e 369probably enable this hook.
3aadad1b 370
cbb84e5d 371Both standard output and standard error output are forwarded to
0b444cdb 372'git send-pack' on the other end, so you can simply `echo` messages
24a0d61e 373for the user.
0b85d926 374
08553319
JH
375push-to-checkout
376~~~~~~~~~~~~~~~~
377
378This hook is invoked by 'git-receive-pack' on the remote repository,
379which happens when a 'git push' is done on a local repository, when
380the push tries to update the branch that is currently checked out
381and the `receive.denyCurrentBranch` configuration variable is set to
382`updateInstead`. Such a push by default is refused if the working
383tree and the index of the remote repository has any difference from
384the currently checked out commit; when both the working tree and the
385index match the current commit, they are updated to match the newly
386pushed tip of the branch. This hook is to be used to override the
387default behaviour.
388
389The hook receives the commit with which the tip of the current
390branch is going to be updated. It can exit with a non-zero status
391to refuse the push (when it does so, it must not modify the index or
392the working tree). Or it can make any necessary changes to the
393working tree and to the index to bring them to the desired state
394when the tip of the current branch is updated to the new commit, and
395exit with a zero status.
396
397For example, the hook can simply run `git read-tree -u -m HEAD "$1"`
398in order to emulate 'git fetch' that is run in the reverse direction
399with `git push`, as the two-tree form of `read-tree -u -m` is
400essentially the same as `git checkout` that switches branches while
401keeping the local changes in the working tree that do not interfere
402with the difference between the branches.
403
404
0b85d926 405pre-auto-gc
6d71c1dc 406~~~~~~~~~~~
0b85d926 407
0b444cdb
TR
408This hook is invoked by 'git gc --auto'. It takes no parameter, and
409exiting with non-zero status from this script causes the 'git gc --auto'
0b85d926 410to abort.
a5af0e2c 411
c0fc6869
TR
412post-rewrite
413~~~~~~~~~~~~
414
415This hook is invoked by commands that rewrite commits (`git commit
416--amend`, 'git-rebase'; currently 'git-filter-branch' does 'not' call
417it!). Its first argument denotes the command it was invoked by:
418currently one of `amend` or `rebase`. Further command-dependent
419arguments may be passed in the future.
420
421The hook receives a list of the rewritten commits on stdin, in the
422format
423
424 <old-sha1> SP <new-sha1> [ SP <extra-info> ] LF
425
426The 'extra-info' is again command-dependent. If it is empty, the
427preceding SP is also omitted. Currently, no commands pass any
428'extra-info'.
429
6956f858 430The hook always runs after the automatic note copying (see
ad52148a 431"notes.rewrite.<command>" in linkgit:git-config[1]) has happened, and
6956f858
TR
432thus has access to these notes.
433
c0fc6869
TR
434The following command-specific comments apply:
435
436rebase::
437 For the 'squash' and 'fixup' operation, all commits that were
438 squashed are listed as being rewritten to the squashed commit.
439 This means that there will be several lines sharing the same
440 'new-sha1'.
441+
442The commits are guaranteed to be listed in the order that they were
443processed by rebase.
444
c0fc6869 445
a5af0e2c
CC
446GIT
447---
9e1f0a85 448Part of the linkgit:git[1] suite