1githooks(5) 2=========== 3 4NAME 5---- 6githooks - Hooks used by Git 7 8SYNOPSIS 9-------- 10$GIT_DIR/hooks/* (or \`git config core.hooksPath`/*) 11 12 13DESCRIPTION 14----------- 15 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]). 23 24Before Git invokes a hook, it changes its working directory to either 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. 29 30Hooks can get their arguments via the environment, command-line 31arguments, and stdin. See the documentation for each hook below for 32details. 33 34`git init` may copy hooks to the new repository, depending on its 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. 41 42HOOKS 43----- 44 45applypatch-msg 46~~~~~~~~~~~~~~ 47 48This hook is invoked by linkgit:git-am[1]. It takes a single 49parameter, the name of the file that holds the proposed commit 50log message. Exiting with a non-zero status causes `git am` to abort 51before applying the patch. 52 53The hook is allowed to edit the message file in place, and can 54be used to normalize the message into some project standard 55format. It can also be used to refuse the commit after inspecting 56the message file. 57 58The default 'applypatch-msg' hook, when enabled, runs the 59'commit-msg' hook, if the latter is enabled. 60 61pre-applypatch 62~~~~~~~~~~~~~~ 63 64This hook is invoked by linkgit:git-am[1]. It takes no parameter, and is 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. 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 73The default 'pre-applypatch' hook, when enabled, runs the 74'pre-commit' hook, if the latter is enabled. 75 76post-applypatch 77~~~~~~~~~~~~~~~ 78 79This hook is invoked by linkgit:git-am[1]. It takes no parameter, 80and is invoked after the patch is applied and a commit is made. 81 82This hook is meant primarily for notification, and cannot affect 83the outcome of `git am`. 84 85pre-commit 86~~~~~~~~~~ 87 88This hook is invoked by linkgit:git-commit[1], and can be bypassed 89with the `--no-verify` option. It takes no parameters, and is 90invoked before obtaining the proposed commit log message and 91making a commit. Exiting with a non-zero status from this script 92causes the `git commit` command to abort before creating a commit. 93 94The default 'pre-commit' hook, when enabled, catches introduction 95of lines with trailing whitespaces and aborts the commit when 96such a line is found. 97 98All the `git commit` hooks are invoked with the environment 99variable `GIT_EDITOR=:` if the command will not bring up an editor 100to modify the commit message. 101 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 106pre-merge-commit 107~~~~~~~~~~~~~~~~ 108 109This hook is invoked by linkgit:git-merge[1], and can be bypassed 110with the `--no-verify` option. It takes no parameters, and is 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 128prepare-commit-msg 129~~~~~~~~~~~~~~~~~~ 130 131This hook is invoked by linkgit:git-commit[1] right after preparing the 132default log message, and before the editor is started. 133 134It takes one to three parameters. The first is the name of the file 135that contains the commit log message. The second is the source of the commit 136message, and can be: `message` (if a `-m` or `-F` option was 137given); `template` (if a `-t` option was given or the 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 141a commit SHA-1 (if a `-c`, `-C` or `--amend` option was given). 142 143If the exit status is non-zero, `git commit` will abort. 144 145The purpose of the hook is to edit the message file in place, and 146it is not suppressed by the `--no-verify` option. A non-zero exit 147means a failure of the hook and aborts the commit. It should not 148be used as replacement for pre-commit hook. 149 150The sample `prepare-commit-msg` hook that comes with Git removes the 151help message found in the commented portion of the commit template. 152 153commit-msg 154~~~~~~~~~~ 155 156This hook is invoked by linkgit:git-commit[1] and linkgit:git-merge[1], and can be 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. 160 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. 165 166The default 'commit-msg' hook, when enabled, detects duplicate 167"Signed-off-by" lines, and aborts the commit if one is found. 168 169post-commit 170~~~~~~~~~~~ 171 172This hook is invoked by linkgit:git-commit[1]. It takes no parameters, and is 173invoked after a commit is made. 174 175This hook is meant primarily for notification, and cannot affect 176the outcome of `git commit`. 177 178pre-rebase 179~~~~~~~~~~ 180 181This hook is called by linkgit:git-rebase[1] and can be used to prevent a 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. 186 187post-checkout 188~~~~~~~~~~~~~ 189 190This hook is invoked when a linkgit:git-checkout[1] or 191linkgit:git-switch[1] is run after having updated the 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). 196This hook cannot affect the outcome of `git switch` or `git checkout`. 197 198It is also run after linkgit:git-clone[1], unless the `--no-checkout` (`-n`) option is 199used. The first parameter given to the hook is the null-ref, the second the 200ref of the new HEAD and the flag is always 1. Likewise for `git worktree add` 201unless `--no-checkout` is used. 202 203This hook can be used to perform repository validity checks, auto-display 204differences from the previous HEAD if different, or set working dir metadata 205properties. 206 207post-merge 208~~~~~~~~~~ 209 210This hook is invoked by linkgit:git-merge[1], which happens when a `git pull` 211is done on a local repository. The hook takes a single parameter, a status 212flag specifying whether or not the merge being done was a squash merge. 213This hook cannot affect the outcome of `git merge` and is not executed, 214if the merge failed due to conflicts. 215 216This hook can be used in conjunction with a corresponding pre-commit hook to 217save and restore any form of metadata associated with the working tree 218(e.g.: permissions/ownership, ACLS, etc). See contrib/hooks/setgitperms.perl 219for an example of how to do this. 220 221pre-push 222~~~~~~~~ 223 224This hook is called by linkgit:git-push[1] and can be used to prevent 225a push from taking place. The hook is called with two parameters 226which provide the name and location of the destination remote, if a 227named remote is not being used both values will be the same. 228 229Information about what is to be pushed is provided on the hook's standard 230input with lines of the form: 231 232 <local ref> SP <local sha1> SP <remote ref> SP <remote sha1> LF 233 234For instance, if the command +git push origin master:foreign+ were run the 235hook would receive a line like the following: 236 237 refs/heads/master 67890 refs/heads/foreign 12345 238 239although the full, 40-character SHA-1s would be supplied. If the foreign ref 240does not yet exist the `<remote SHA-1>` will be 40 `0`. If a ref is to be 241deleted, the `<local ref>` will be supplied as `(delete)` and the `<local 242SHA-1>` will be 40 `0`. If the local commit was specified by something other 243than a name which could be expanded (such as `HEAD~`, or a SHA-1) it will be 244supplied as it was originally given. 245 246If this hook exits with a non-zero status, `git push` will abort without 247pushing anything. Information about why the push is rejected may be sent 248to the user by writing to standard error. 249 250[[pre-receive]] 251pre-receive 252~~~~~~~~~~~ 253 254This hook is invoked by linkgit:git-receive-pack[1] when it reacts to 255`git push` and updates reference(s) in its repository. 256Just before starting to update refs on the remote repository, the 257pre-receive hook is invoked. Its exit status determines the success 258or failure of the update. 259 260This hook executes once for the receive operation. It takes no 261arguments, but for each ref to be updated it receives on standard 262input a line of the format: 263 264 <old-value> SP <new-value> SP <ref-name> LF 265 266where `<old-value>` is the old object name stored in the ref, 267`<new-value>` is the new object name to be stored in the ref and 268`<ref-name>` is the full name of the ref. 269When creating a new ref, `<old-value>` is 40 `0`. 270 271If the hook exits with non-zero status, none of the refs will be 272updated. If the hook exits with zero, updating of individual refs can 273still be prevented by the <<update,'update'>> hook. 274 275Both standard output and standard error output are forwarded to 276`git send-pack` on the other end, so you can simply `echo` messages 277for the user. 278 279The number of push options given on the command line of 280`git push --push-option=...` can be read from the environment 281variable `GIT_PUSH_OPTION_COUNT`, and the options themselves are 282found in `GIT_PUSH_OPTION_0`, `GIT_PUSH_OPTION_1`,... 283If it is negotiated to not use the push options phase, the 284environment variables will not be set. If the client selects 285to use push options, but doesn't transmit any, the count variable 286will be set to zero, `GIT_PUSH_OPTION_COUNT=0`. 287 288See the section on "Quarantine Environment" in 289linkgit:git-receive-pack[1] for some caveats. 290 291[[update]] 292update 293~~~~~~ 294 295This hook is invoked by linkgit:git-receive-pack[1] when it reacts to 296`git push` and updates reference(s) in its repository. 297Just before updating the ref on the remote repository, the update hook 298is invoked. Its exit status determines the success or failure of 299the ref update. 300 301The hook executes once for each ref to be updated, and takes 302three parameters: 303 304 - the name of the ref being updated, 305 - the old object name stored in the ref, 306 - and the new object name to be stored in the ref. 307 308A zero exit from the update hook allows the ref to be updated. 309Exiting with a non-zero status prevents `git receive-pack` 310from updating that ref. 311 312This hook can be used to prevent 'forced' update on certain refs by 313making sure that the object name is a commit object that is a 314descendant of the commit object named by the old object name. 315That is, to enforce a "fast-forward only" policy. 316 317It could also be used to log the old..new status. However, it 318does not know the entire set of branches, so it would end up 319firing one e-mail per ref when used naively, though. The 320<<post-receive,'post-receive'>> hook is more suited to that. 321 322In an environment that restricts the users' access only to git 323commands over the wire, this hook can be used to implement access 324control without relying on filesystem ownership and group 325membership. See linkgit:git-shell[1] for how you might use the login 326shell to restrict the user's access to only git commands. 327 328Both standard output and standard error output are forwarded to 329`git send-pack` on the other end, so you can simply `echo` messages 330for the user. 331 332The default 'update' hook, when enabled--and with 333`hooks.allowunannotated` config option unset or set to false--prevents 334unannotated tags to be pushed. 335 336[[post-receive]] 337post-receive 338~~~~~~~~~~~~ 339 340This hook is invoked by linkgit:git-receive-pack[1] when it reacts to 341`git push` and updates reference(s) in its repository. 342It executes on the remote repository once after all the refs have 343been updated. 344 345This hook executes once for the receive operation. It takes no 346arguments, but gets the same information as the 347<<pre-receive,'pre-receive'>> 348hook does on its standard input. 349 350This hook does not affect the outcome of `git receive-pack`, as it 351is called after the real work is done. 352 353This supersedes the <<post-update,'post-update'>> hook in that it gets 354both old and new values of all the refs in addition to their 355names. 356 357Both standard output and standard error output are forwarded to 358`git send-pack` on the other end, so you can simply `echo` messages 359for the user. 360 361The default 'post-receive' hook is empty, but there is 362a sample script `post-receive-email` provided in the `contrib/hooks` 363directory in Git distribution, which implements sending commit 364emails. 365 366The number of push options given on the command line of 367`git push --push-option=...` can be read from the environment 368variable `GIT_PUSH_OPTION_COUNT`, and the options themselves are 369found in `GIT_PUSH_OPTION_0`, `GIT_PUSH_OPTION_1`,... 370If it is negotiated to not use the push options phase, the 371environment variables will not be set. If the client selects 372to use push options, but doesn't transmit any, the count variable 373will be set to zero, `GIT_PUSH_OPTION_COUNT=0`. 374 375[[post-update]] 376post-update 377~~~~~~~~~~~ 378 379This hook is invoked by linkgit:git-receive-pack[1] when it reacts to 380`git push` and updates reference(s) in its repository. 381It executes on the remote repository once after all the refs have 382been updated. 383 384It takes a variable number of parameters, each of which is the 385name of ref that was actually updated. 386 387This hook is meant primarily for notification, and cannot affect 388the outcome of `git receive-pack`. 389 390The 'post-update' hook can tell what are the heads that were pushed, 391but it does not know what their original and updated values are, 392so it is a poor place to do log old..new. The 393<<post-receive,'post-receive'>> hook does get both original and 394updated values of the refs. You might consider it instead if you need 395them. 396 397When enabled, the default 'post-update' hook runs 398`git update-server-info` to keep the information used by dumb 399transports (e.g., HTTP) up to date. If you are publishing 400a Git repository that is accessible via HTTP, you should 401probably enable this hook. 402 403Both standard output and standard error output are forwarded to 404`git send-pack` on the other end, so you can simply `echo` messages 405for the user. 406 407push-to-checkout 408~~~~~~~~~~~~~~~~ 409 410This hook is invoked by linkgit:git-receive-pack[1] when it reacts to 411`git push` and updates reference(s) in its repository, and when 412the push tries to update the branch that is currently checked out 413and the `receive.denyCurrentBranch` configuration variable is set to 414`updateInstead`. Such a push by default is refused if the working 415tree and the index of the remote repository has any difference from 416the currently checked out commit; when both the working tree and the 417index match the current commit, they are updated to match the newly 418pushed tip of the branch. This hook is to be used to override the 419default behaviour. 420 421The hook receives the commit with which the tip of the current 422branch is going to be updated. It can exit with a non-zero status 423to refuse the push (when it does so, it must not modify the index or 424the working tree). Or it can make any necessary changes to the 425working tree and to the index to bring them to the desired state 426when the tip of the current branch is updated to the new commit, and 427exit with a zero status. 428 429For example, the hook can simply run `git read-tree -u -m HEAD "$1"` 430in order to emulate `git fetch` that is run in the reverse direction 431with `git push`, as the two-tree form of `git read-tree -u -m` is 432essentially the same as `git switch` or `git checkout` 433that switches branches while 434keeping the local changes in the working tree that do not interfere 435with the difference between the branches. 436 437 438pre-auto-gc 439~~~~~~~~~~~ 440 441This hook is invoked by `git gc --auto` (see linkgit:git-gc[1]). It 442takes no parameter, and exiting with non-zero status from this script 443causes the `git gc --auto` to abort. 444 445post-rewrite 446~~~~~~~~~~~~ 447 448This hook is invoked by commands that rewrite commits 449(linkgit:git-commit[1] when called with `--amend` and 450linkgit:git-rebase[1]; currently `git filter-branch` does 'not' call 451it!). Its first argument denotes the command it was invoked by: 452currently one of `amend` or `rebase`. Further command-dependent 453arguments may be passed in the future. 454 455The hook receives a list of the rewritten commits on stdin, in the 456format 457 458 <old-sha1> SP <new-sha1> [ SP <extra-info> ] LF 459 460The 'extra-info' is again command-dependent. If it is empty, the 461preceding SP is also omitted. Currently, no commands pass any 462'extra-info'. 463 464The hook always runs after the automatic note copying (see 465"notes.rewrite.<command>" in linkgit:git-config[1]) has happened, and 466thus has access to these notes. 467 468The following command-specific comments apply: 469 470rebase:: 471 For the 'squash' and 'fixup' operation, all commits that were 472 squashed are listed as being rewritten to the squashed commit. 473 This means that there will be several lines sharing the same 474 'new-sha1'. 475+ 476The commits are guaranteed to be listed in the order that they were 477processed by rebase. 478 479sendemail-validate 480~~~~~~~~~~~~~~~~~~ 481 482This hook is invoked by linkgit:git-send-email[1]. It takes a single parameter, 483the name of the file that holds the e-mail to be sent. Exiting with a 484non-zero status causes `git send-email` to abort before sending any 485e-mails. 486 487fsmonitor-watchman 488~~~~~~~~~~~~~~~~~~ 489 490This hook is invoked when the configuration option `core.fsmonitor` is 491set to `.git/hooks/fsmonitor-watchman`. It takes two arguments, a version 492(currently 1) and the time in elapsed nanoseconds since midnight, 493January 1, 1970. 494 495The hook should output to stdout the list of all files in the working 496directory that may have changed since the requested time. The logic 497should be inclusive so that it does not miss any potential changes. 498The paths should be relative to the root of the working directory 499and be separated by a single NUL. 500 501It is OK to include files which have not actually changed. All changes 502including newly-created and deleted files should be included. When 503files are renamed, both the old and the new name should be included. 504 505Git will limit what files it checks for changes as well as which 506directories are checked for untracked files based on the path names 507given. 508 509An optimized way to tell git "all files have changed" is to return 510the filename `/`. 511 512The exit status determines whether git will use the data from the 513hook to limit its search. On error, it will fall back to verifying 514all files and folders. 515 516p4-pre-submit 517~~~~~~~~~~~~~ 518 519This hook is invoked by `git-p4 submit`. It takes no parameters and nothing 520from standard input. Exiting with non-zero status from this script prevent 521`git-p4 submit` from launching. Run `git-p4 submit --help` for details. 522 523post-index-change 524~~~~~~~~~~~~~~~~~ 525 526This hook is invoked when the index is written in read-cache.c 527do_write_locked_index. 528 529The first parameter passed to the hook is the indicator for the 530working directory being updated. "1" meaning working directory 531was updated or "0" when the working directory was not updated. 532 533The second parameter passed to the hook is the indicator for whether 534or not the index was updated and the skip-worktree bit could have 535changed. "1" meaning skip-worktree bits could have been updated 536and "0" meaning they were not. 537 538Only one parameter should be set to "1" when the hook runs. The hook 539running passing "1", "1" should not be possible. 540 541GIT 542--- 543Part of the linkgit:git[1] suite