]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/githooks.txt
Merge branch 'jk/rev-list-disk-usage'
[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
d5fa1f1a 141a commit SHA-1 (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
234 <local ref> SP <local sha1> SP <remote ref> SP <remote sha1> LF
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
d5fa1f1a
TA
241although the full, 40-character SHA-1s would be supplied. If the foreign ref
242does not yet exist the `<remote SHA-1>` will be 40 `0`. If a ref is to be
ec55559f 243deleted, the `<local ref>` will be supplied as `(delete)` and the `<local
d5fa1f1a
TA
244SHA-1>` will be 40 `0`. If the local commit was specified by something other
245than a name which could be expanded (such as `HEAD~`, or a SHA-1) it will be
ec55559f
AS
246supplied as it was originally given.
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.
271When creating a new ref, `<old-value>` is 40 `0`.
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,
476committed or aborted and may thus get called multiple times.
477
478The hook takes exactly one argument, which is the current state the
479given reference transaction is in:
480
481 - "prepared": All reference updates have been queued to the
482 transaction and references were locked on disk.
483
484 - "committed": The reference transaction was committed and all
485 references now have their respective new value.
486
487 - "aborted": The reference transaction was aborted, no changes
488 were performed and the locks have been released.
489
490For each reference update that was added to the transaction, the hook
491receives on standard input a line of the format:
492
493 <old-value> SP <new-value> SP <ref-name> LF
494
495The exit status of the hook is ignored for any state except for the
496"prepared" state. In the "prepared" state, a non-zero exit status will
497cause the transaction to be aborted. The hook will not be called with
498"aborted" state in that case.
499
08553319
JH
500push-to-checkout
501~~~~~~~~~~~~~~~~
502
9dba84d8
AH
503This hook is invoked by linkgit:git-receive-pack[1] when it reacts to
504`git push` and updates reference(s) in its repository, and when
08553319
JH
505the push tries to update the branch that is currently checked out
506and the `receive.denyCurrentBranch` configuration variable is set to
507`updateInstead`. Such a push by default is refused if the working
508tree and the index of the remote repository has any difference from
509the currently checked out commit; when both the working tree and the
510index match the current commit, they are updated to match the newly
511pushed tip of the branch. This hook is to be used to override the
512default behaviour.
513
514The hook receives the commit with which the tip of the current
515branch is going to be updated. It can exit with a non-zero status
516to refuse the push (when it does so, it must not modify the index or
517the working tree). Or it can make any necessary changes to the
518working tree and to the index to bring them to the desired state
519when the tip of the current branch is updated to the new commit, and
520exit with a zero status.
521
522For example, the hook can simply run `git read-tree -u -m HEAD "$1"`
9dba84d8
AH
523in order to emulate `git fetch` that is run in the reverse direction
524with `git push`, as the two-tree form of `git read-tree -u -m` is
d787d311
NTND
525essentially the same as `git switch` or `git checkout`
526that switches branches while
08553319
JH
527keeping the local changes in the working tree that do not interfere
528with the difference between the branches.
529
530
0b85d926 531pre-auto-gc
6d71c1dc 532~~~~~~~~~~~
0b85d926 533
9dba84d8
AH
534This hook is invoked by `git gc --auto` (see linkgit:git-gc[1]). It
535takes no parameter, and exiting with non-zero status from this script
536causes the `git gc --auto` to abort.
a5af0e2c 537
c0fc6869
TR
538post-rewrite
539~~~~~~~~~~~~
540
9dba84d8
AH
541This hook is invoked by commands that rewrite commits
542(linkgit:git-commit[1] when called with `--amend` and
9df53c5d
EN
543linkgit:git-rebase[1]; however, full-history (re)writing tools like
544linkgit:git-fast-import[1] or
545https://github.com/newren/git-filter-repo[git-filter-repo] typically
546do not call it!). Its first argument denotes the command it was
547invoked by: currently one of `amend` or `rebase`. Further
548command-dependent arguments may be passed in the future.
c0fc6869
TR
549
550The hook receives a list of the rewritten commits on stdin, in the
551format
552
553 <old-sha1> SP <new-sha1> [ SP <extra-info> ] LF
554
555The 'extra-info' is again command-dependent. If it is empty, the
556preceding SP is also omitted. Currently, no commands pass any
557'extra-info'.
558
6956f858 559The hook always runs after the automatic note copying (see
ad52148a 560"notes.rewrite.<command>" in linkgit:git-config[1]) has happened, and
6956f858
TR
561thus has access to these notes.
562
c0fc6869
TR
563The following command-specific comments apply:
564
565rebase::
566 For the 'squash' and 'fixup' operation, all commits that were
567 squashed are listed as being rewritten to the squashed commit.
568 This means that there will be several lines sharing the same
569 'new-sha1'.
570+
571The commits are guaranteed to be listed in the order that they were
572processed by rebase.
573
6489660b
JT
574sendemail-validate
575~~~~~~~~~~~~~~~~~~
576
9dba84d8 577This hook is invoked by linkgit:git-send-email[1]. It takes a single parameter,
6489660b 578the name of the file that holds the e-mail to be sent. Exiting with a
9dba84d8 579non-zero status causes `git send-email` to abort before sending any
6489660b
JT
580e-mails.
581
780494b1
BP
582fsmonitor-watchman
583~~~~~~~~~~~~~~~~~~
584
9dba84d8 585This hook is invoked when the configuration option `core.fsmonitor` is
dfaed028
KW
586set to `.git/hooks/fsmonitor-watchman` or `.git/hooks/fsmonitor-watchmanv2`
587depending on the version of the hook to use.
588
589Version 1 takes two arguments, a version (1) and the time in elapsed
590nanoseconds since midnight, January 1, 1970.
591
592Version 2 takes two arguments, a version (2) and a token that is used
593for identifying changes since the token. For watchman this would be
594a clock id. This version must output to stdout the new token followed
595by a NUL before the list of files.
780494b1
BP
596
597The hook should output to stdout the list of all files in the working
598directory that may have changed since the requested time. The logic
599should be inclusive so that it does not miss any potential changes.
600The paths should be relative to the root of the working directory
601and be separated by a single NUL.
602
603It is OK to include files which have not actually changed. All changes
604including newly-created and deleted files should be included. When
605files are renamed, both the old and the new name should be included.
606
607Git will limit what files it checks for changes as well as which
608directories are checked for untracked files based on the path names
609given.
610
611An optimized way to tell git "all files have changed" is to return
9dba84d8 612the filename `/`.
780494b1
BP
613
614The exit status determines whether git will use the data from the
615hook to limit its search. On error, it will fall back to verifying
616all files and folders.
c0fc6869 617
38ecf752
BK
618p4-changelist
619~~~~~~~~~~~~~
620
621This hook is invoked by `git-p4 submit`.
622
623The `p4-changelist` hook is executed after the changelist
624message has been edited by the user. It can be bypassed with the
625`--no-verify` option. It takes a single parameter, the name
626of the file that holds the proposed changelist text. Exiting
627with a non-zero status causes the command to abort.
628
629The hook is allowed to edit the changelist file and can be used
630to normalize the text into some project standard format. It can
631also be used to refuse the Submit after inspect the message file.
632
633Run `git-p4 submit --help` for details.
634
635p4-prepare-changelist
636~~~~~~~~~~~~~~~~~~~~~
637
638This hook is invoked by `git-p4 submit`.
639
640The `p4-prepare-changelist` hook is executed right after preparing
641the default changelist message and before the editor is started.
642It takes one parameter, the name of the file that contains the
643changelist text. Exiting with a non-zero status from the script
644will abort the process.
645
646The purpose of the hook is to edit the message file in place,
7efc3782 647and it is not suppressed by the `--no-verify` option. This hook
38ecf752
BK
648is called even if `--prepare-p4-only` is set.
649
650Run `git-p4 submit --help` for details.
651
652p4-post-changelist
653~~~~~~~~~~~~~~~~~~
654
655This hook is invoked by `git-p4 submit`.
656
657The `p4-post-changelist` hook is invoked after the submit has
b7e20b43 658successfully occurred in P4. It takes no parameters and is meant
38ecf752
BK
659primarily for notification and cannot affect the outcome of the
660git p4 submit action.
661
662Run `git-p4 submit --help` for details.
663
251c8c50
CB
664p4-pre-submit
665~~~~~~~~~~~~~
666
667This hook is invoked by `git-p4 submit`. It takes no parameters and nothing
668from standard input. Exiting with non-zero status from this script prevent
4935c458
BK
669`git-p4 submit` from launching. It can be bypassed with the `--no-verify`
670command line option. Run `git-p4 submit --help` for details.
671
672
251c8c50 673
1956ecd0
BP
674post-index-change
675~~~~~~~~~~~~~~~~~
676
677This hook is invoked when the index is written in read-cache.c
678do_write_locked_index.
679
680The first parameter passed to the hook is the indicator for the
681working directory being updated. "1" meaning working directory
682was updated or "0" when the working directory was not updated.
683
684The second parameter passed to the hook is the indicator for whether
685or not the index was updated and the skip-worktree bit could have
686changed. "1" meaning skip-worktree bits could have been updated
687and "0" meaning they were not.
688
689Only one parameter should be set to "1" when the hook runs. The hook
690running passing "1", "1" should not be possible.
691
a5af0e2c
CC
692GIT
693---
9e1f0a85 694Part of the linkgit:git[1] suite