]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/githooks.txt
Merge branch 'en/fetch-negotiation-default-fix'
[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
501d3cd7
SR
25$GIT_DIR in a bare repository or the root of the working tree in a non-bare
26repository. An exception are hooks triggered during a push ('pre-receive',
27'update', 'post-receive', 'post-update', 'push-to-checkout') which are always
28executed in $GIT_DIR.
49fa52fd
ÆAB
29
30Hooks can get their arguments via the environment, command-line
31arguments, and stdin. See the documentation for each hook below for
32details.
33
9dba84d8 34`git init` may copy hooks to the new repository, depending on its
49fa52fd
ÆAB
35configuration. See the "TEMPLATE DIRECTORY" section in
36linkgit:git-init[1] for details. When the rest of this document refers
37to "default hooks" it's talking about the default template shipped
38with Git.
39
40The currently supported hooks are described below.
6d35cc76 41
6d71c1dc
BW
42HOOKS
43-----
44
6d35cc76 45applypatch-msg
6d71c1dc 46~~~~~~~~~~~~~~
6d35cc76 47
9dba84d8 48This hook is invoked by linkgit:git-am[1]. It takes a single
6d35cc76 49parameter, the name of the file that holds the proposed commit
9dba84d8 50log message. Exiting with a non-zero status causes `git am` to abort
de0824ed 51before applying the patch.
6d35cc76
JH
52
53The hook is allowed to edit the message file in place, and can
54be used to normalize the message into some project standard
de0824ed
ÆAB
55format. It can also be used to refuse the commit after inspecting
56the message file.
6d35cc76 57
45ad9b50
JF
58The default 'applypatch-msg' hook, when enabled, runs the
59'commit-msg' hook, if the latter is enabled.
6d35cc76
JH
60
61pre-applypatch
6d71c1dc 62~~~~~~~~~~~~~~
6d35cc76 63
9dba84d8 64This hook is invoked by linkgit:git-am[1]. It takes no parameter, and is
47458bb9
CC
65invoked after the patch is applied, but before a commit is made.
66
67If it exits with non-zero status, then the working tree will not be
68committed after applying the patch.
6d35cc76
JH
69
70It can be used to inspect the current working tree and refuse to
71make a commit if it does not pass certain test.
72
45ad9b50
JF
73The default 'pre-applypatch' hook, when enabled, runs the
74'pre-commit' hook, if the latter is enabled.
6d35cc76
JH
75
76post-applypatch
6d71c1dc 77~~~~~~~~~~~~~~~
6d35cc76 78
9dba84d8 79This hook is invoked by linkgit:git-am[1]. It takes no parameter,
6d35cc76
JH
80and is invoked after the patch is applied and a commit is made.
81
82This hook is meant primarily for notification, and cannot affect
9dba84d8 83the outcome of `git am`.
6d35cc76
JH
84
85pre-commit
6d71c1dc 86~~~~~~~~~~
6d35cc76 87
9dba84d8 88This hook is invoked by linkgit:git-commit[1], and can be bypassed
de0824ed 89with the `--no-verify` option. It takes no parameters, and is
6d35cc76 90invoked before obtaining the proposed commit log message and
de0824ed 91making a commit. Exiting with a non-zero status from this script
9dba84d8 92causes the `git commit` command to abort before creating a commit.
6d35cc76 93
45ad9b50 94The default 'pre-commit' hook, when enabled, catches introduction
6d35cc76 95of lines with trailing whitespaces and aborts the commit when
45ad9b50 96such a line is found.
6d35cc76 97
9dba84d8 98All the `git commit` hooks are invoked with the environment
406400ce
PB
99variable `GIT_EDITOR=:` if the command will not bring up an editor
100to modify the commit message.
101
3e14dd2c
RD
102The default 'pre-commit' hook, when enabled--and with the
103`hooks.allownonascii` config option unset or set to false--prevents
104the use of non-ASCII filenames.
105
6098817f
MG
106pre-merge-commit
107~~~~~~~~~~~~~~~~
108
bc40ce4d
MG
109This hook is invoked by linkgit:git-merge[1], and can be bypassed
110with the `--no-verify` option. It takes no parameters, and is
6098817f
MG
111invoked after the merge has been carried out successfully and before
112obtaining the proposed commit log message to
113make a commit. Exiting with a non-zero status from this script
114causes the `git merge` command to abort before creating a commit.
115
116The default 'pre-merge-commit' hook, when enabled, runs the
117'pre-commit' hook, if the latter is enabled.
118
119This hook is invoked with the environment variable
120`GIT_EDITOR=:` if the command will not bring up an editor
121to modify the commit message.
122
123If the merge cannot be carried out automatically, the conflicts
124need to be resolved and the result committed separately (see
125linkgit:git-merge[1]). At that point, this hook will not be executed,
126but the 'pre-commit' hook will, if it is enabled.
127
8089c85b 128prepare-commit-msg
6d71c1dc 129~~~~~~~~~~~~~~~~~~
8089c85b 130
9dba84d8 131This hook is invoked by linkgit:git-commit[1] right after preparing the
8089c85b
PB
132default log message, and before the editor is started.
133
134It takes one to three parameters. The first is the name of the file
99686960 135that contains the commit log message. The second is the source of the commit
5d6b3a9e
SG
136message, and can be: `message` (if a `-m` or `-F` option was
137given); `template` (if a `-t` option was given or the
8089c85b
PB
138configuration option `commit.template` is set); `merge` (if the
139commit is a merge or a `.git/MERGE_MSG` file exists); `squash`
140(if a `.git/SQUASH_MSG` file exists); or `commit`, followed by
5f308a89 141a commit object name (if a `-c`, `-C` or `--amend` option was given).
8089c85b 142
9dba84d8 143If the exit status is non-zero, `git commit` will abort.
8089c85b
PB
144
145The purpose of the hook is to edit the message file in place, and
6cf378f0 146it is not suppressed by the `--no-verify` option. A non-zero exit
8089c85b
PB
147means a failure of the hook and aborts the commit. It should not
148be used as replacement for pre-commit hook.
149
0ef1a4e3
KS
150The sample `prepare-commit-msg` hook that comes with Git removes the
151help message found in the commented portion of the commit template.
152
6d35cc76 153commit-msg
6d71c1dc 154~~~~~~~~~~
6d35cc76 155
9dba84d8 156This hook is invoked by linkgit:git-commit[1] and linkgit:git-merge[1], and can be
ce82eddf
SB
157bypassed with the `--no-verify` option. It takes a single parameter,
158the name of the file that holds the proposed commit log message.
159Exiting with a non-zero status causes the command to abort.
6d35cc76 160
de0824ed
ÆAB
161The hook is allowed to edit the message file in place, and can be used
162to normalize the message into some project standard format. It
163can also be used to refuse the commit after inspecting the message
164file.
6d35cc76 165
45ad9b50 166The default 'commit-msg' hook, when enabled, detects duplicate
3abd4a67 167`Signed-off-by` trailers, and aborts the commit if one is found.
6d35cc76
JH
168
169post-commit
6d71c1dc 170~~~~~~~~~~~
6d35cc76 171
9dba84d8 172This hook is invoked by linkgit:git-commit[1]. It takes no parameters, and is
de0824ed 173invoked after a commit is made.
6d35cc76
JH
174
175This hook is meant primarily for notification, and cannot affect
9dba84d8 176the outcome of `git commit`.
6d35cc76 177
00e5d48a 178pre-rebase
6d71c1dc 179~~~~~~~~~~
00e5d48a 180
9dba84d8 181This hook is called by linkgit:git-rebase[1] and can be used to prevent a
0414acc3
TK
182branch from getting rebased. The hook may be called with one or
183two parameters. The first parameter is the upstream from which
184the series was forked. The second parameter is the branch being
185rebased, and is not set when rebasing the current branch.
00e5d48a 186
1abbe475 187post-checkout
6d71c1dc 188~~~~~~~~~~~~~
1abbe475 189
d787d311
NTND
190This hook is invoked when a linkgit:git-checkout[1] or
191linkgit:git-switch[1] is run after having updated the
1abbe475
JE
192worktree. The hook is given three parameters: the ref of the previous HEAD,
193the ref of the new HEAD (which may or may not have changed), and a flag
194indicating whether the checkout was a branch checkout (changing branches,
195flag=1) or a file checkout (retrieving a file from the index, flag=0).
3100fd55
JH
196This hook cannot affect the outcome of `git switch` or `git checkout`,
197other than that the hook's exit status becomes the exit status of
198these two commands.
1abbe475 199
9dba84d8 200It is also run after linkgit:git-clone[1], unless the `--no-checkout` (`-n`) option is
24c11552 201used. The first parameter given to the hook is the null-ref, the second the
9dba84d8
AH
202ref of the new HEAD and the flag is always 1. Likewise for `git worktree add`
203unless `--no-checkout` is used.
24c11552 204
1abbe475
JE
205This hook can be used to perform repository validity checks, auto-display
206differences from the previous HEAD if different, or set working dir metadata
207properties.
208
46232915 209post-merge
6d71c1dc 210~~~~~~~~~~
46232915 211
9dba84d8 212This hook is invoked by linkgit:git-merge[1], which happens when a `git pull`
46232915
JE
213is done on a local repository. The hook takes a single parameter, a status
214flag specifying whether or not the merge being done was a squash merge.
9dba84d8 215This hook cannot affect the outcome of `git merge` and is not executed,
2b3e60c2 216if the merge failed due to conflicts.
46232915
JE
217
218This hook can be used in conjunction with a corresponding pre-commit hook to
219save and restore any form of metadata associated with the working tree
f745acb0 220(e.g.: permissions/ownership, ACLS, etc). See contrib/hooks/setgitperms.perl
af6fb4c8 221for an example of how to do this.
46232915 222
ec55559f
AS
223pre-push
224~~~~~~~~
225
9dba84d8
AH
226This hook is called by linkgit:git-push[1] and can be used to prevent
227a push from taking place. The hook is called with two parameters
228which provide the name and location of the destination remote, if a
229named remote is not being used both values will be the same.
ec55559f
AS
230
231Information about what is to be pushed is provided on the hook's standard
232input with lines of the form:
233
5f308a89 234 <local ref> SP <local object name> SP <remote ref> SP <remote object name> LF
ec55559f
AS
235
236For instance, if the command +git push origin master:foreign+ were run the
237hook would receive a line like the following:
238
239 refs/heads/master 67890 refs/heads/foreign 12345
240
5f308a89
PS
241although the full object name would be supplied. If the foreign ref does not
242yet exist the `<remote object name>` will be the all-zeroes object name. If a
243ref is to be deleted, the `<local ref>` will be supplied as `(delete)` and the
244`<local object name>` will be the all-zeroes object name. If the local commit
245was specified by something other than a name which could be expanded (such as
246`HEAD~`, or an object name) it will be supplied as it was originally given.
ec55559f 247
9dba84d8 248If this hook exits with a non-zero status, `git push` will abort without
ec55559f
AS
249pushing anything. Information about why the push is rejected may be sent
250to the user by writing to standard error.
251
cbb84e5d
JH
252[[pre-receive]]
253pre-receive
6d71c1dc 254~~~~~~~~~~~
cbb84e5d 255
9dba84d8
AH
256This hook is invoked by linkgit:git-receive-pack[1] when it reacts to
257`git push` and updates reference(s) in its repository.
cbb84e5d
JH
258Just before starting to update refs on the remote repository, the
259pre-receive hook is invoked. Its exit status determines the success
260or failure of the update.
261
262This hook executes once for the receive operation. It takes no
263arguments, but for each ref to be updated it receives on standard
264input a line of the format:
265
266 <old-value> SP <new-value> SP <ref-name> LF
267
268where `<old-value>` is the old object name stored in the ref,
269`<new-value>` is the new object name to be stored in the ref and
270`<ref-name>` is the full name of the ref.
5f308a89 271When creating a new ref, `<old-value>` is the all-zeroes object name.
cbb84e5d
JH
272
273If the hook exits with non-zero status, none of the refs will be
274updated. If the hook exits with zero, updating of individual refs can
275still be prevented by the <<update,'update'>> hook.
276
24a0d61e 277Both standard output and standard error output are forwarded to
9dba84d8 278`git send-pack` on the other end, so you can simply `echo` messages
24a0d61e 279for the user.
cbb84e5d 280
77a9745d
SB
281The number of push options given on the command line of
282`git push --push-option=...` can be read from the environment
283variable `GIT_PUSH_OPTION_COUNT`, and the options themselves are
284found in `GIT_PUSH_OPTION_0`, `GIT_PUSH_OPTION_1`,...
285If it is negotiated to not use the push options phase, the
286environment variables will not be set. If the client selects
287to use push options, but doesn't transmit any, the count variable
288will be set to zero, `GIT_PUSH_OPTION_COUNT=0`.
289
eaeed077
JK
290See the section on "Quarantine Environment" in
291linkgit:git-receive-pack[1] for some caveats.
292
cbb84e5d 293[[update]]
6d35cc76 294update
6d71c1dc 295~~~~~~
6d35cc76 296
9dba84d8
AH
297This hook is invoked by linkgit:git-receive-pack[1] when it reacts to
298`git push` and updates reference(s) in its repository.
6250ad1e 299Just before updating the ref on the remote repository, the update hook
37425065 300is invoked. Its exit status determines the success or failure of
6250ad1e
JL
301the ref update.
302
303The hook executes once for each ref to be updated, and takes
304three parameters:
45ad9b50
JF
305
306 - the name of the ref being updated,
307 - the old object name stored in the ref,
5fe8f49b 308 - and the new object name to be stored in the ref.
6250ad1e
JL
309
310A zero exit from the update hook allows the ref to be updated.
9dba84d8 311Exiting with a non-zero status prevents `git receive-pack`
cbb84e5d 312from updating that ref.
6250ad1e
JL
313
314This hook can be used to prevent 'forced' update on certain refs by
6d35cc76
JH
315making sure that the object name is a commit object that is a
316descendant of the commit object named by the old object name.
a75d7b54 317That is, to enforce a "fast-forward only" policy.
6250ad1e
JL
318
319It could also be used to log the old..new status. However, it
320does not know the entire set of branches, so it would end up
cbb84e5d
JH
321firing one e-mail per ref when used naively, though. The
322<<post-receive,'post-receive'>> hook is more suited to that.
6250ad1e 323
bf7d977f
ÆAB
324In an environment that restricts the users' access only to git
325commands over the wire, this hook can be used to implement access
326control without relying on filesystem ownership and group
327membership. See linkgit:git-shell[1] for how you might use the login
328shell to restrict the user's access to only git commands.
6d35cc76 329
24a0d61e 330Both standard output and standard error output are forwarded to
9dba84d8 331`git send-pack` on the other end, so you can simply `echo` messages
24a0d61e 332for the user.
3aadad1b 333
cbb84e5d 334The default 'update' hook, when enabled--and with
39c448c1 335`hooks.allowunannotated` config option unset or set to false--prevents
cbb84e5d
JH
336unannotated tags to be pushed.
337
d6edc189
JX
338[[proc-receive]]
339proc-receive
340~~~~~~~~~~~~
341
342This hook is invoked by linkgit:git-receive-pack[1]. If the server has
343set the multi-valued config variable `receive.procReceiveRefs`, and the
344commands sent to 'receive-pack' have matching reference names, these
345commands will be executed by this hook, instead of by the internal
346`execute_commands()` function. This hook is responsible for updating
347the relevant references and reporting the results back to 'receive-pack'.
348
349This hook executes once for the receive operation. It takes no
350arguments, but uses a pkt-line format protocol to communicate with
351'receive-pack' to read commands, push-options and send results. In the
352following example for the protocol, the letter 'S' stands for
353'receive-pack' and the letter 'H' stands for this hook.
354
355 # Version and features negotiation.
356 S: PKT-LINE(version=1\0push-options atomic...)
357 S: flush-pkt
358 H: PKT-LINE(version=1\0push-options...)
359 H: flush-pkt
360
361 # Send commands from server to the hook.
362 S: PKT-LINE(<old-oid> <new-oid> <ref>)
363 S: ... ...
364 S: flush-pkt
365 # Send push-options only if the 'push-options' feature is enabled.
366 S: PKT-LINE(push-option)
367 S: ... ...
368 S: flush-pkt
369
370 # Receive result from the hook.
371 # OK, run this command successfully.
372 H: PKT-LINE(ok <ref>)
373 # NO, I reject it.
374 H: PKT-LINE(ng <ref> <reason>)
375 # Fall through, let 'receive-pack' to execute it.
376 H: PKT-LINE(ok <ref>)
377 H: PKT-LINE(option fall-through)
378 # OK, but has an alternate reference. The alternate reference name
379 # and other status can be given in option directives.
380 H: PKT-LINE(ok <ref>)
381 H: PKT-LINE(option refname <refname>)
382 H: PKT-LINE(option old-oid <old-oid>)
383 H: PKT-LINE(option new-oid <new-oid>)
384 H: PKT-LINE(option forced-update)
385 H: ... ...
386 H: flush-pkt
387
388Each command for the 'proc-receive' hook may point to a pseudo-reference
389and always has a zero-old as its old-oid, while the 'proc-receive' hook
390may update an alternate reference and the alternate reference may exist
391already with a non-zero old-oid. For this case, this hook will use
392"option" directives to report extended attributes for the reference given
393by the leading "ok" directive.
394
395The report of the commands of this hook should have the same order as
396the input. The exit status of the 'proc-receive' hook only determines
397the success or failure of the group of commands sent to it, unless
398atomic push is in use.
399
cbb84e5d
JH
400[[post-receive]]
401post-receive
6d71c1dc 402~~~~~~~~~~~~
6250ad1e 403
9dba84d8
AH
404This hook is invoked by linkgit:git-receive-pack[1] when it reacts to
405`git push` and updates reference(s) in its repository.
cbb84e5d
JH
406It executes on the remote repository once after all the refs have
407been updated.
408
409This hook executes once for the receive operation. It takes no
24a0d61e
JH
410arguments, but gets the same information as the
411<<pre-receive,'pre-receive'>>
cbb84e5d
JH
412hook does on its standard input.
413
9dba84d8 414This hook does not affect the outcome of `git receive-pack`, as it
cbb84e5d
JH
415is called after the real work is done.
416
02783075 417This supersedes the <<post-update,'post-update'>> hook in that it gets
24a0d61e
JH
418both old and new values of all the refs in addition to their
419names.
cbb84e5d 420
24a0d61e 421Both standard output and standard error output are forwarded to
9dba84d8 422`git send-pack` on the other end, so you can simply `echo` messages
24a0d61e 423for the user.
cbb84e5d
JH
424
425The default 'post-receive' hook is empty, but there is
426a sample script `post-receive-email` provided in the `contrib/hooks`
2de9b711 427directory in Git distribution, which implements sending commit
cbb84e5d
JH
428emails.
429
77a9745d
SB
430The number of push options given on the command line of
431`git push --push-option=...` can be read from the environment
432variable `GIT_PUSH_OPTION_COUNT`, and the options themselves are
433found in `GIT_PUSH_OPTION_0`, `GIT_PUSH_OPTION_1`,...
434If it is negotiated to not use the push options phase, the
435environment variables will not be set. If the client selects
436to use push options, but doesn't transmit any, the count variable
437will be set to zero, `GIT_PUSH_OPTION_COUNT=0`.
438
cbb84e5d 439[[post-update]]
6d35cc76 440post-update
6d71c1dc 441~~~~~~~~~~~
6d35cc76 442
9dba84d8
AH
443This hook is invoked by linkgit:git-receive-pack[1] when it reacts to
444`git push` and updates reference(s) in its repository.
6250ad1e
JL
445It executes on the remote repository once after all the refs have
446been updated.
447
448It takes a variable number of parameters, each of which is the
449name of ref that was actually updated.
6d35cc76
JH
450
451This hook is meant primarily for notification, and cannot affect
9dba84d8 452the outcome of `git receive-pack`.
6d35cc76 453
45ad9b50 454The 'post-update' hook can tell what are the heads that were pushed,
6250ad1e 455but it does not know what their original and updated values are,
24a0d61e
JH
456so it is a poor place to do log old..new. The
457<<post-receive,'post-receive'>> hook does get both original and
458updated values of the refs. You might consider it instead if you need
459them.
cbb84e5d 460
45ad9b50 461When enabled, the default 'post-update' hook runs
9dba84d8 462`git update-server-info` to keep the information used by dumb
7560f547 463transports (e.g., HTTP) up to date. If you are publishing
2de9b711 464a Git repository that is accessible via HTTP, you should
6250ad1e 465probably enable this hook.
3aadad1b 466
cbb84e5d 467Both standard output and standard error output are forwarded to
9dba84d8 468`git send-pack` on the other end, so you can simply `echo` messages
24a0d61e 469for the user.
0b85d926 470
6c18d03e
BC
471reference-transaction
472~~~~~~~~~~~~~~~~~~~~~
67541597
PS
473
474This hook is invoked by any Git command that performs reference
475updates. It executes whenever a reference transaction is prepared,
23c781f1
PS
476committed or aborted and may thus get called multiple times. The hook
477does not cover symbolic references (but that may change in the future).
67541597
PS
478
479The hook takes exactly one argument, which is the current state the
480given reference transaction is in:
481
482 - "prepared": All reference updates have been queued to the
483 transaction and references were locked on disk.
484
485 - "committed": The reference transaction was committed and all
486 references now have their respective new value.
487
488 - "aborted": The reference transaction was aborted, no changes
489 were performed and the locks have been released.
490
491For each reference update that was added to the transaction, the hook
492receives on standard input a line of the format:
493
494 <old-value> SP <new-value> SP <ref-name> LF
495
23c781f1
PS
496where `<old-value>` is the old object name passed into the reference
497transaction, `<new-value>` is the new object name to be stored in the
498ref and `<ref-name>` is the full name of the ref. When force updating
499the reference regardless of its current value or when the reference is
500to be created anew, `<old-value>` is the all-zeroes object name. To
501distinguish these cases, you can inspect the current value of
502`<ref-name>` via `git rev-parse`.
503
67541597
PS
504The exit status of the hook is ignored for any state except for the
505"prepared" state. In the "prepared" state, a non-zero exit status will
506cause the transaction to be aborted. The hook will not be called with
507"aborted" state in that case.
508
08553319
JH
509push-to-checkout
510~~~~~~~~~~~~~~~~
511
9dba84d8
AH
512This hook is invoked by linkgit:git-receive-pack[1] when it reacts to
513`git push` and updates reference(s) in its repository, and when
08553319
JH
514the push tries to update the branch that is currently checked out
515and the `receive.denyCurrentBranch` configuration variable is set to
516`updateInstead`. Such a push by default is refused if the working
517tree and the index of the remote repository has any difference from
518the currently checked out commit; when both the working tree and the
519index match the current commit, they are updated to match the newly
520pushed tip of the branch. This hook is to be used to override the
521default behaviour.
522
523The hook receives the commit with which the tip of the current
524branch is going to be updated. It can exit with a non-zero status
525to refuse the push (when it does so, it must not modify the index or
526the working tree). Or it can make any necessary changes to the
527working tree and to the index to bring them to the desired state
528when the tip of the current branch is updated to the new commit, and
529exit with a zero status.
530
531For example, the hook can simply run `git read-tree -u -m HEAD "$1"`
9dba84d8
AH
532in order to emulate `git fetch` that is run in the reverse direction
533with `git push`, as the two-tree form of `git read-tree -u -m` is
d787d311
NTND
534essentially the same as `git switch` or `git checkout`
535that switches branches while
08553319
JH
536keeping the local changes in the working tree that do not interfere
537with the difference between the branches.
538
539
0b85d926 540pre-auto-gc
6d71c1dc 541~~~~~~~~~~~
0b85d926 542
9dba84d8
AH
543This hook is invoked by `git gc --auto` (see linkgit:git-gc[1]). It
544takes no parameter, and exiting with non-zero status from this script
545causes the `git gc --auto` to abort.
a5af0e2c 546
c0fc6869
TR
547post-rewrite
548~~~~~~~~~~~~
549
9dba84d8
AH
550This hook is invoked by commands that rewrite commits
551(linkgit:git-commit[1] when called with `--amend` and
9df53c5d
EN
552linkgit:git-rebase[1]; however, full-history (re)writing tools like
553linkgit:git-fast-import[1] or
554https://github.com/newren/git-filter-repo[git-filter-repo] typically
555do not call it!). Its first argument denotes the command it was
556invoked by: currently one of `amend` or `rebase`. Further
557command-dependent arguments may be passed in the future.
c0fc6869
TR
558
559The hook receives a list of the rewritten commits on stdin, in the
560format
561
5f308a89 562 <old-object-name> SP <new-object-name> [ SP <extra-info> ] LF
c0fc6869
TR
563
564The 'extra-info' is again command-dependent. If it is empty, the
565preceding SP is also omitted. Currently, no commands pass any
566'extra-info'.
567
6956f858 568The hook always runs after the automatic note copying (see
ad52148a 569"notes.rewrite.<command>" in linkgit:git-config[1]) has happened, and
6956f858
TR
570thus has access to these notes.
571
c0fc6869
TR
572The following command-specific comments apply:
573
574rebase::
575 For the 'squash' and 'fixup' operation, all commits that were
576 squashed are listed as being rewritten to the squashed commit.
577 This means that there will be several lines sharing the same
5f308a89 578 'new-object-name'.
c0fc6869
TR
579+
580The commits are guaranteed to be listed in the order that they were
581processed by rebase.
582
6489660b
JT
583sendemail-validate
584~~~~~~~~~~~~~~~~~~
585
9dba84d8 586This hook is invoked by linkgit:git-send-email[1]. It takes a single parameter,
6489660b 587the name of the file that holds the e-mail to be sent. Exiting with a
9dba84d8 588non-zero status causes `git send-email` to abort before sending any
6489660b
JT
589e-mails.
590
780494b1
BP
591fsmonitor-watchman
592~~~~~~~~~~~~~~~~~~
593
9dba84d8 594This hook is invoked when the configuration option `core.fsmonitor` is
dfaed028
KW
595set to `.git/hooks/fsmonitor-watchman` or `.git/hooks/fsmonitor-watchmanv2`
596depending on the version of the hook to use.
597
598Version 1 takes two arguments, a version (1) and the time in elapsed
599nanoseconds since midnight, January 1, 1970.
600
601Version 2 takes two arguments, a version (2) and a token that is used
602for identifying changes since the token. For watchman this would be
603a clock id. This version must output to stdout the new token followed
604by a NUL before the list of files.
780494b1
BP
605
606The hook should output to stdout the list of all files in the working
607directory that may have changed since the requested time. The logic
608should be inclusive so that it does not miss any potential changes.
609The paths should be relative to the root of the working directory
610and be separated by a single NUL.
611
612It is OK to include files which have not actually changed. All changes
613including newly-created and deleted files should be included. When
614files are renamed, both the old and the new name should be included.
615
616Git will limit what files it checks for changes as well as which
617directories are checked for untracked files based on the path names
618given.
619
620An optimized way to tell git "all files have changed" is to return
9dba84d8 621the filename `/`.
780494b1
BP
622
623The exit status determines whether git will use the data from the
624hook to limit its search. On error, it will fall back to verifying
625all files and folders.
c0fc6869 626
38ecf752
BK
627p4-changelist
628~~~~~~~~~~~~~
629
630This hook is invoked by `git-p4 submit`.
631
632The `p4-changelist` hook is executed after the changelist
633message has been edited by the user. It can be bypassed with the
634`--no-verify` option. It takes a single parameter, the name
635of the file that holds the proposed changelist text. Exiting
636with a non-zero status causes the command to abort.
637
638The hook is allowed to edit the changelist file and can be used
639to normalize the text into some project standard format. It can
640also be used to refuse the Submit after inspect the message file.
641
642Run `git-p4 submit --help` for details.
643
644p4-prepare-changelist
645~~~~~~~~~~~~~~~~~~~~~
646
647This hook is invoked by `git-p4 submit`.
648
649The `p4-prepare-changelist` hook is executed right after preparing
650the default changelist message and before the editor is started.
651It takes one parameter, the name of the file that contains the
652changelist text. Exiting with a non-zero status from the script
653will abort the process.
654
655The purpose of the hook is to edit the message file in place,
7efc3782 656and it is not suppressed by the `--no-verify` option. This hook
38ecf752
BK
657is called even if `--prepare-p4-only` is set.
658
659Run `git-p4 submit --help` for details.
660
661p4-post-changelist
662~~~~~~~~~~~~~~~~~~
663
664This hook is invoked by `git-p4 submit`.
665
666The `p4-post-changelist` hook is invoked after the submit has
b7e20b43 667successfully occurred in P4. It takes no parameters and is meant
38ecf752
BK
668primarily for notification and cannot affect the outcome of the
669git p4 submit action.
670
671Run `git-p4 submit --help` for details.
672
251c8c50
CB
673p4-pre-submit
674~~~~~~~~~~~~~
675
676This hook is invoked by `git-p4 submit`. It takes no parameters and nothing
677from standard input. Exiting with non-zero status from this script prevent
4935c458
BK
678`git-p4 submit` from launching. It can be bypassed with the `--no-verify`
679command line option. Run `git-p4 submit --help` for details.
680
681
251c8c50 682
1956ecd0
BP
683post-index-change
684~~~~~~~~~~~~~~~~~
685
686This hook is invoked when the index is written in read-cache.c
687do_write_locked_index.
688
689The first parameter passed to the hook is the indicator for the
690working directory being updated. "1" meaning working directory
691was updated or "0" when the working directory was not updated.
692
693The second parameter passed to the hook is the indicator for whether
694or not the index was updated and the skip-worktree bit could have
695changed. "1" meaning skip-worktree bits could have been updated
696and "0" meaning they were not.
697
698Only one parameter should be set to "1" when the hook runs. The hook
699running passing "1", "1" should not be possible.
700
96e7225b
ES
701SEE ALSO
702--------
703linkgit:git-hook[1]
704
a5af0e2c
CC
705GIT
706---
9e1f0a85 707Part of the linkgit:git[1] suite