Junio C Hamano | 2fbcd21 | 2008-05-14 22:26:07 | [diff] [blame] | 1 | githooks(5) |
| 2 | =========== |
| 3 | |
| 4 | NAME |
| 5 | ---- |
Junio C Hamano | 076ffcc | 2013-02-06 05:13:21 | [diff] [blame] | 6 | githooks - Hooks used by Git |
Junio C Hamano | 2fbcd21 | 2008-05-14 22:26:07 | [diff] [blame] | 7 | |
| 8 | SYNOPSIS |
| 9 | -------- |
| 10 | $GIT_DIR/hooks/* |
| 11 | |
| 12 | |
| 13 | DESCRIPTION |
| 14 | ----------- |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 15 | |
| 16 | Hooks are little scripts you can place in `$GIT_DIR/hooks` |
| 17 | directory to trigger action at certain points. When |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 18 | 'git init' is run, a handful of example hooks are copied into the |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 19 | `hooks` directory of the new repository, but by default they are |
Junio C Hamano | 6aff399 | 2008-06-25 08:07:44 | [diff] [blame] | 20 | all disabled. To enable a hook, rename it by removing its `.sample` |
| 21 | suffix. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 22 | |
Junio C Hamano | 8a48fa2 | 2008-12-18 08:44:30 | [diff] [blame] | 23 | NOTE: It is also a requirement for a given hook to be executable. |
| 24 | However - in a freshly initialized repository - the `.sample` files are |
| 25 | executable by default. |
| 26 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 27 | This document describes the currently defined hooks. |
| 28 | |
Junio C Hamano | c28068f | 2009-09-08 00:55:23 | [diff] [blame] | 29 | HOOKS |
| 30 | ----- |
| 31 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 32 | applypatch-msg |
Junio C Hamano | c28068f | 2009-09-08 00:55:23 | [diff] [blame] | 33 | ~~~~~~~~~~~~~~ |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 34 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 35 | This hook is invoked by 'git am' script. It takes a single |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 36 | parameter, the name of the file that holds the proposed commit |
Junio C Hamano | d578413 | 2006-09-20 21:29:27 | [diff] [blame] | 37 | log message. Exiting with non-zero status causes |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 38 | 'git am' to abort before applying the patch. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 39 | |
| 40 | The hook is allowed to edit the message file in place, and can |
| 41 | be used to normalize the message into some project standard |
| 42 | format (if the project has one). It can also be used to refuse |
| 43 | the commit after inspecting the message file. |
| 44 | |
Junio C Hamano | d578413 | 2006-09-20 21:29:27 | [diff] [blame] | 45 | The default 'applypatch-msg' hook, when enabled, runs the |
| 46 | 'commit-msg' hook, if the latter is enabled. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 47 | |
| 48 | pre-applypatch |
Junio C Hamano | c28068f | 2009-09-08 00:55:23 | [diff] [blame] | 49 | ~~~~~~~~~~~~~~ |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 50 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 51 | This hook is invoked by 'git am'. It takes no parameter, and is |
Junio C Hamano | a31092a | 2008-05-04 06:41:23 | [diff] [blame] | 52 | invoked after the patch is applied, but before a commit is made. |
| 53 | |
| 54 | If it exits with non-zero status, then the working tree will not be |
| 55 | committed after applying the patch. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 56 | |
| 57 | It can be used to inspect the current working tree and refuse to |
| 58 | make a commit if it does not pass certain test. |
| 59 | |
Junio C Hamano | d578413 | 2006-09-20 21:29:27 | [diff] [blame] | 60 | The default 'pre-applypatch' hook, when enabled, runs the |
| 61 | 'pre-commit' hook, if the latter is enabled. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 62 | |
| 63 | post-applypatch |
Junio C Hamano | c28068f | 2009-09-08 00:55:23 | [diff] [blame] | 64 | ~~~~~~~~~~~~~~~ |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 65 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 66 | This hook is invoked by 'git am'. It takes no parameter, |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 67 | and is invoked after the patch is applied and a commit is made. |
| 68 | |
| 69 | This hook is meant primarily for notification, and cannot affect |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 70 | the outcome of 'git am'. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 71 | |
| 72 | pre-commit |
Junio C Hamano | c28068f | 2009-09-08 00:55:23 | [diff] [blame] | 73 | ~~~~~~~~~~ |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 74 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 75 | This hook is invoked by 'git commit', and can be bypassed |
Junio C Hamano | b76a686 | 2012-05-02 22:02:46 | [diff] [blame] | 76 | with `--no-verify` option. It takes no parameter, and is |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 77 | invoked before obtaining the proposed commit log message and |
| 78 | making a commit. Exiting with non-zero status from this script |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 79 | causes the 'git commit' to abort. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 80 | |
Junio C Hamano | d578413 | 2006-09-20 21:29:27 | [diff] [blame] | 81 | The default 'pre-commit' hook, when enabled, catches introduction |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 82 | of lines with trailing whitespaces and aborts the commit when |
Junio C Hamano | d578413 | 2006-09-20 21:29:27 | [diff] [blame] | 83 | such a line is found. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 84 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 85 | All the 'git commit' hooks are invoked with the environment |
Junio C Hamano | 26e590a | 2008-02-17 03:53:51 | [diff] [blame] | 86 | variable `GIT_EDITOR=:` if the command will not bring up an editor |
| 87 | to modify the commit message. |
| 88 | |
| 89 | prepare-commit-msg |
Junio C Hamano | c28068f | 2009-09-08 00:55:23 | [diff] [blame] | 90 | ~~~~~~~~~~~~~~~~~~ |
Junio C Hamano | 26e590a | 2008-02-17 03:53:51 | [diff] [blame] | 91 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 92 | This hook is invoked by 'git commit' right after preparing the |
Junio C Hamano | 26e590a | 2008-02-17 03:53:51 | [diff] [blame] | 93 | default log message, and before the editor is started. |
| 94 | |
| 95 | It takes one to three parameters. The first is the name of the file |
Junio C Hamano | bd53dbf | 2009-01-18 18:26:37 | [diff] [blame] | 96 | that contains the commit log message. The second is the source of the commit |
Junio C Hamano | a476efa | 2008-10-10 15:31:42 | [diff] [blame] | 97 | message, and can be: `message` (if a `-m` or `-F` option was |
| 98 | given); `template` (if a `-t` option was given or the |
Junio C Hamano | 26e590a | 2008-02-17 03:53:51 | [diff] [blame] | 99 | configuration option `commit.template` is set); `merge` (if the |
| 100 | commit is a merge or a `.git/MERGE_MSG` file exists); `squash` |
| 101 | (if a `.git/SQUASH_MSG` file exists); or `commit`, followed by |
Junio C Hamano | b76a686 | 2012-05-02 22:02:46 | [diff] [blame] | 102 | a commit SHA1 (if a `-c`, `-C` or `--amend` option was given). |
Junio C Hamano | 26e590a | 2008-02-17 03:53:51 | [diff] [blame] | 103 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 104 | If the exit status is non-zero, 'git commit' will abort. |
Junio C Hamano | 26e590a | 2008-02-17 03:53:51 | [diff] [blame] | 105 | |
| 106 | The purpose of the hook is to edit the message file in place, and |
Junio C Hamano | b76a686 | 2012-05-02 22:02:46 | [diff] [blame] | 107 | it is not suppressed by the `--no-verify` option. A non-zero exit |
Junio C Hamano | 26e590a | 2008-02-17 03:53:51 | [diff] [blame] | 108 | means a failure of the hook and aborts the commit. It should not |
| 109 | be used as replacement for pre-commit hook. |
| 110 | |
Junio C Hamano | 076ffcc | 2013-02-06 05:13:21 | [diff] [blame] | 111 | The sample `prepare-commit-msg` hook that comes with Git comments |
Junio C Hamano | 26e590a | 2008-02-17 03:53:51 | [diff] [blame] | 112 | out the `Conflicts:` part of a merge's commit message. |
| 113 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 114 | commit-msg |
Junio C Hamano | c28068f | 2009-09-08 00:55:23 | [diff] [blame] | 115 | ~~~~~~~~~~ |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 116 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 117 | This hook is invoked by 'git commit', and can be bypassed |
Junio C Hamano | b76a686 | 2012-05-02 22:02:46 | [diff] [blame] | 118 | with `--no-verify` option. It takes a single parameter, the |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 119 | name of the file that holds the proposed commit log message. |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 120 | Exiting with non-zero status causes the 'git commit' to |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 121 | abort. |
| 122 | |
| 123 | The hook is allowed to edit the message file in place, and can |
| 124 | be used to normalize the message into some project standard |
| 125 | format (if the project has one). It can also be used to refuse |
| 126 | the commit after inspecting the message file. |
| 127 | |
Junio C Hamano | d578413 | 2006-09-20 21:29:27 | [diff] [blame] | 128 | The default 'commit-msg' hook, when enabled, detects duplicate |
| 129 | "Signed-off-by" lines, and aborts the commit if one is found. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 130 | |
| 131 | post-commit |
Junio C Hamano | c28068f | 2009-09-08 00:55:23 | [diff] [blame] | 132 | ~~~~~~~~~~~ |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 133 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 134 | This hook is invoked by 'git commit'. It takes no |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 135 | parameter, and is invoked after a commit is made. |
| 136 | |
| 137 | This hook is meant primarily for notification, and cannot affect |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 138 | the outcome of 'git commit'. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 139 | |
Junio C Hamano | a476efa | 2008-10-10 15:31:42 | [diff] [blame] | 140 | pre-rebase |
Junio C Hamano | c28068f | 2009-09-08 00:55:23 | [diff] [blame] | 141 | ~~~~~~~~~~ |
Junio C Hamano | a476efa | 2008-10-10 15:31:42 | [diff] [blame] | 142 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 143 | This hook is called by 'git rebase' and can be used to prevent a branch |
Junio C Hamano | a476efa | 2008-10-10 15:31:42 | [diff] [blame] | 144 | from getting rebased. |
| 145 | |
| 146 | |
Junio C Hamano | 1b50ce9 | 2007-10-03 12:05:53 | [diff] [blame] | 147 | post-checkout |
Junio C Hamano | c28068f | 2009-09-08 00:55:23 | [diff] [blame] | 148 | ~~~~~~~~~~~~~ |
Junio C Hamano | 1b50ce9 | 2007-10-03 12:05:53 | [diff] [blame] | 149 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 150 | This hook is invoked when a 'git checkout' is run after having updated the |
Junio C Hamano | 1b50ce9 | 2007-10-03 12:05:53 | [diff] [blame] | 151 | worktree. The hook is given three parameters: the ref of the previous HEAD, |
| 152 | the ref of the new HEAD (which may or may not have changed), and a flag |
| 153 | indicating whether the checkout was a branch checkout (changing branches, |
| 154 | flag=1) or a file checkout (retrieving a file from the index, flag=0). |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 155 | This hook cannot affect the outcome of 'git checkout'. |
Junio C Hamano | 1b50ce9 | 2007-10-03 12:05:53 | [diff] [blame] | 156 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 157 | It is also run after 'git clone', unless the --no-checkout (-n) option is |
Junio C Hamano | 36a5672 | 2009-03-28 08:55:34 | [diff] [blame] | 158 | used. The first parameter given to the hook is the null-ref, the second the |
| 159 | ref of the new HEAD and the flag is always 1. |
| 160 | |
Junio C Hamano | 1b50ce9 | 2007-10-03 12:05:53 | [diff] [blame] | 161 | This hook can be used to perform repository validity checks, auto-display |
| 162 | differences from the previous HEAD if different, or set working dir metadata |
| 163 | properties. |
| 164 | |
Junio C Hamano | 01d8f83 | 2007-09-24 07:37:30 | [diff] [blame] | 165 | post-merge |
Junio C Hamano | c28068f | 2009-09-08 00:55:23 | [diff] [blame] | 166 | ~~~~~~~~~~ |
Junio C Hamano | 01d8f83 | 2007-09-24 07:37:30 | [diff] [blame] | 167 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 168 | This hook is invoked by 'git merge', which happens when a 'git pull' |
Junio C Hamano | 01d8f83 | 2007-09-24 07:37:30 | [diff] [blame] | 169 | is done on a local repository. The hook takes a single parameter, a status |
| 170 | flag specifying whether or not the merge being done was a squash merge. |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 171 | This hook cannot affect the outcome of 'git merge' and is not executed, |
Junio C Hamano | 47d68a5 | 2008-05-06 06:35:40 | [diff] [blame] | 172 | if the merge failed due to conflicts. |
Junio C Hamano | 01d8f83 | 2007-09-24 07:37:30 | [diff] [blame] | 173 | |
| 174 | This hook can be used in conjunction with a corresponding pre-commit hook to |
| 175 | save and restore any form of metadata associated with the working tree |
| 176 | (eg: permissions/ownership, ACLS, etc). See contrib/hooks/setgitperms.perl |
| 177 | for an example of how to do this. |
| 178 | |
Junio C Hamano | 36d5229 | 2013-01-25 21:32:36 | [diff] [blame] | 179 | pre-push |
| 180 | ~~~~~~~~ |
| 181 | |
| 182 | This hook is called by 'git push' and can be used to prevent a push from taking |
| 183 | place. The hook is called with two parameters which provide the name and |
| 184 | location of the destination remote, if a named remote is not being used both |
| 185 | values will be the same. |
| 186 | |
| 187 | Information about what is to be pushed is provided on the hook's standard |
| 188 | input with lines of the form: |
| 189 | |
| 190 | <local ref> SP <local sha1> SP <remote ref> SP <remote sha1> LF |
| 191 | |
| 192 | For instance, if the command +git push origin master:foreign+ were run the |
| 193 | hook would receive a line like the following: |
| 194 | |
| 195 | refs/heads/master 67890 refs/heads/foreign 12345 |
| 196 | |
| 197 | although the full, 40-character SHA1s would be supplied. If the foreign ref |
| 198 | does not yet exist the `<remote SHA1>` will be 40 `0`. If a ref is to be |
| 199 | deleted, the `<local ref>` will be supplied as `(delete)` and the `<local |
| 200 | SHA1>` will be 40 `0`. If the local commit was specified by something other |
| 201 | than a name which could be expanded (such as `HEAD~`, or a SHA1) it will be |
| 202 | supplied as it was originally given. |
| 203 | |
| 204 | If this hook exits with a non-zero status, 'git push' will abort without |
| 205 | pushing anything. Information about why the push is rejected may be sent |
| 206 | to the user by writing to standard error. |
| 207 | |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 208 | [[pre-receive]] |
| 209 | pre-receive |
Junio C Hamano | c28068f | 2009-09-08 00:55:23 | [diff] [blame] | 210 | ~~~~~~~~~~~ |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 211 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 212 | This hook is invoked by 'git-receive-pack' on the remote repository, |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 213 | which happens when a 'git push' is done on a local repository. |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 214 | Just before starting to update refs on the remote repository, the |
| 215 | pre-receive hook is invoked. Its exit status determines the success |
| 216 | or failure of the update. |
| 217 | |
| 218 | This hook executes once for the receive operation. It takes no |
| 219 | arguments, but for each ref to be updated it receives on standard |
| 220 | input a line of the format: |
| 221 | |
| 222 | <old-value> SP <new-value> SP <ref-name> LF |
| 223 | |
| 224 | where `<old-value>` is the old object name stored in the ref, |
| 225 | `<new-value>` is the new object name to be stored in the ref and |
| 226 | `<ref-name>` is the full name of the ref. |
| 227 | When creating a new ref, `<old-value>` is 40 `0`. |
| 228 | |
| 229 | If the hook exits with non-zero status, none of the refs will be |
| 230 | updated. If the hook exits with zero, updating of individual refs can |
| 231 | still be prevented by the <<update,'update'>> hook. |
| 232 | |
Junio C Hamano | 323e52d | 2007-05-13 22:19:53 | [diff] [blame] | 233 | Both standard output and standard error output are forwarded to |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 234 | 'git send-pack' on the other end, so you can simply `echo` messages |
Junio C Hamano | 323e52d | 2007-05-13 22:19:53 | [diff] [blame] | 235 | for the user. |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 236 | |
| 237 | [[update]] |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 238 | update |
Junio C Hamano | c28068f | 2009-09-08 00:55:23 | [diff] [blame] | 239 | ~~~~~~ |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 240 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 241 | This hook is invoked by 'git-receive-pack' on the remote repository, |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 242 | which happens when a 'git push' is done on a local repository. |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 243 | Just before updating the ref on the remote repository, the update hook |
Junio C Hamano | 33db437 | 2006-06-07 19:51:45 | [diff] [blame] | 244 | is invoked. Its exit status determines the success or failure of |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 245 | the ref update. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 246 | |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 247 | The hook executes once for each ref to be updated, and takes |
| 248 | three parameters: |
Junio C Hamano | d578413 | 2006-09-20 21:29:27 | [diff] [blame] | 249 | |
| 250 | - the name of the ref being updated, |
| 251 | - the old object name stored in the ref, |
| 252 | - and the new objectname to be stored in the ref. |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 253 | |
| 254 | A zero exit from the update hook allows the ref to be updated. |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 255 | Exiting with a non-zero status prevents 'git-receive-pack' |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 256 | from updating that ref. |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 257 | |
| 258 | This hook can be used to prevent 'forced' update on certain refs by |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 259 | making sure that the object name is a commit object that is a |
| 260 | descendant of the commit object named by the old object name. |
Junio C Hamano | 3f680f3 | 2009-11-16 02:10:54 | [diff] [blame] | 261 | That is, to enforce a "fast-forward only" policy. |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 262 | |
| 263 | It could also be used to log the old..new status. However, it |
| 264 | does not know the entire set of branches, so it would end up |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 265 | firing one e-mail per ref when used naively, though. The |
| 266 | <<post-receive,'post-receive'>> hook is more suited to that. |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 267 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 268 | Another use suggested on the mailing list is to use this hook to |
| 269 | implement access control which is finer grained than the one |
| 270 | based on filesystem group. |
| 271 | |
Junio C Hamano | 323e52d | 2007-05-13 22:19:53 | [diff] [blame] | 272 | Both standard output and standard error output are forwarded to |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 273 | 'git send-pack' on the other end, so you can simply `echo` messages |
Junio C Hamano | 323e52d | 2007-05-13 22:19:53 | [diff] [blame] | 274 | for the user. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 275 | |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 276 | The default 'update' hook, when enabled--and with |
Junio C Hamano | d6fff40 | 2009-09-14 09:40:50 | [diff] [blame] | 277 | `hooks.allowunannotated` config option unset or set to false--prevents |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 278 | unannotated tags to be pushed. |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 279 | |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 280 | [[post-receive]] |
| 281 | post-receive |
Junio C Hamano | c28068f | 2009-09-08 00:55:23 | [diff] [blame] | 282 | ~~~~~~~~~~~~ |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 283 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 284 | This hook is invoked by 'git-receive-pack' on the remote repository, |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 285 | which happens when a 'git push' is done on a local repository. |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 286 | It executes on the remote repository once after all the refs have |
| 287 | been updated. |
| 288 | |
| 289 | This hook executes once for the receive operation. It takes no |
Junio C Hamano | 323e52d | 2007-05-13 22:19:53 | [diff] [blame] | 290 | arguments, but gets the same information as the |
| 291 | <<pre-receive,'pre-receive'>> |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 292 | hook does on its standard input. |
| 293 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 294 | This hook does not affect the outcome of 'git-receive-pack', as it |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 295 | is called after the real work is done. |
| 296 | |
Junio C Hamano | a638742 | 2007-08-25 03:54:27 | [diff] [blame] | 297 | This supersedes the <<post-update,'post-update'>> hook in that it gets |
Junio C Hamano | 323e52d | 2007-05-13 22:19:53 | [diff] [blame] | 298 | both old and new values of all the refs in addition to their |
| 299 | names. |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 300 | |
Junio C Hamano | 323e52d | 2007-05-13 22:19:53 | [diff] [blame] | 301 | Both standard output and standard error output are forwarded to |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 302 | 'git send-pack' on the other end, so you can simply `echo` messages |
Junio C Hamano | 323e52d | 2007-05-13 22:19:53 | [diff] [blame] | 303 | for the user. |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 304 | |
| 305 | The default 'post-receive' hook is empty, but there is |
| 306 | a sample script `post-receive-email` provided in the `contrib/hooks` |
Junio C Hamano | 076ffcc | 2013-02-06 05:13:21 | [diff] [blame] | 307 | directory in Git distribution, which implements sending commit |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 308 | emails. |
| 309 | |
| 310 | [[post-update]] |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 311 | post-update |
Junio C Hamano | c28068f | 2009-09-08 00:55:23 | [diff] [blame] | 312 | ~~~~~~~~~~~ |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 313 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 314 | This hook is invoked by 'git-receive-pack' on the remote repository, |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 315 | which happens when a 'git push' is done on a local repository. |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 316 | It executes on the remote repository once after all the refs have |
| 317 | been updated. |
| 318 | |
| 319 | It takes a variable number of parameters, each of which is the |
| 320 | name of ref that was actually updated. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 321 | |
| 322 | This hook is meant primarily for notification, and cannot affect |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 323 | the outcome of 'git-receive-pack'. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 324 | |
Junio C Hamano | d578413 | 2006-09-20 21:29:27 | [diff] [blame] | 325 | The 'post-update' hook can tell what are the heads that were pushed, |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 326 | but it does not know what their original and updated values are, |
Junio C Hamano | 323e52d | 2007-05-13 22:19:53 | [diff] [blame] | 327 | so it is a poor place to do log old..new. The |
| 328 | <<post-receive,'post-receive'>> hook does get both original and |
| 329 | updated values of the refs. You might consider it instead if you need |
| 330 | them. |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 331 | |
Junio C Hamano | d578413 | 2006-09-20 21:29:27 | [diff] [blame] | 332 | When enabled, the default 'post-update' hook runs |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 333 | 'git update-server-info' to keep the information used by dumb |
Junio C Hamano | d578413 | 2006-09-20 21:29:27 | [diff] [blame] | 334 | transports (e.g., HTTP) up-to-date. If you are publishing |
Junio C Hamano | 076ffcc | 2013-02-06 05:13:21 | [diff] [blame] | 335 | a Git repository that is accessible via HTTP, you should |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 336 | probably enable this hook. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 337 | |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 338 | Both standard output and standard error output are forwarded to |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 339 | 'git send-pack' on the other end, so you can simply `echo` messages |
Junio C Hamano | 323e52d | 2007-05-13 22:19:53 | [diff] [blame] | 340 | for the user. |
Junio C Hamano | e3ddb5b | 2008-04-21 00:48:07 | [diff] [blame] | 341 | |
| 342 | pre-auto-gc |
Junio C Hamano | c28068f | 2009-09-08 00:55:23 | [diff] [blame] | 343 | ~~~~~~~~~~~ |
Junio C Hamano | e3ddb5b | 2008-04-21 00:48:07 | [diff] [blame] | 344 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 345 | This hook is invoked by 'git gc --auto'. It takes no parameter, and |
| 346 | exiting with non-zero status from this script causes the 'git gc --auto' |
Junio C Hamano | e3ddb5b | 2008-04-21 00:48:07 | [diff] [blame] | 347 | to abort. |
Junio C Hamano | 2fbcd21 | 2008-05-14 22:26:07 | [diff] [blame] | 348 | |
Junio C Hamano | 3166736 | 2010-03-25 00:38:53 | [diff] [blame] | 349 | post-rewrite |
| 350 | ~~~~~~~~~~~~ |
| 351 | |
| 352 | This hook is invoked by commands that rewrite commits (`git commit |
| 353 | --amend`, 'git-rebase'; currently 'git-filter-branch' does 'not' call |
| 354 | it!). Its first argument denotes the command it was invoked by: |
| 355 | currently one of `amend` or `rebase`. Further command-dependent |
| 356 | arguments may be passed in the future. |
| 357 | |
| 358 | The hook receives a list of the rewritten commits on stdin, in the |
| 359 | format |
| 360 | |
| 361 | <old-sha1> SP <new-sha1> [ SP <extra-info> ] LF |
| 362 | |
| 363 | The 'extra-info' is again command-dependent. If it is empty, the |
| 364 | preceding SP is also omitted. Currently, no commands pass any |
| 365 | 'extra-info'. |
| 366 | |
| 367 | The hook always runs after the automatic note copying (see |
| 368 | "notes.rewrite.<command>" in linkgit:git-config.txt) has happened, and |
| 369 | thus has access to these notes. |
| 370 | |
| 371 | The following command-specific comments apply: |
| 372 | |
| 373 | rebase:: |
| 374 | For the 'squash' and 'fixup' operation, all commits that were |
| 375 | squashed are listed as being rewritten to the squashed commit. |
| 376 | This means that there will be several lines sharing the same |
| 377 | 'new-sha1'. |
| 378 | + |
| 379 | The commits are guaranteed to be listed in the order that they were |
| 380 | processed by rebase. |
| 381 | |
Junio C Hamano | 3166736 | 2010-03-25 00:38:53 | [diff] [blame] | 382 | |
Junio C Hamano | 2fbcd21 | 2008-05-14 22:26:07 | [diff] [blame] | 383 | GIT |
| 384 | --- |
Junio C Hamano | f7c042d | 2008-06-06 22:50:53 | [diff] [blame] | 385 | Part of the linkgit:git[1] suite |