Junio C Hamano | 2fbcd21 | 2008-05-14 22:26:07 | [diff] [blame] | 1 | githooks(5) |
| 2 | =========== |
| 3 | |
| 4 | NAME |
| 5 | ---- |
| 6 | githooks - Hooks used by git |
| 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 | 6efe302 | 2009-01-13 16:47:56 | [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 | |
| 29 | applypatch-msg |
| 30 | -------------- |
| 31 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 32 | This hook is invoked by 'git-am' script. It takes a single |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 33 | parameter, the name of the file that holds the proposed commit |
Junio C Hamano | d578413 | 2006-09-20 21:29:27 | [diff] [blame] | 34 | log message. Exiting with non-zero status causes |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 35 | 'git-am' to abort before applying the patch. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 36 | |
| 37 | The hook is allowed to edit the message file in place, and can |
| 38 | be used to normalize the message into some project standard |
| 39 | format (if the project has one). It can also be used to refuse |
| 40 | the commit after inspecting the message file. |
| 41 | |
Junio C Hamano | d578413 | 2006-09-20 21:29:27 | [diff] [blame] | 42 | The default 'applypatch-msg' hook, when enabled, runs the |
| 43 | 'commit-msg' hook, if the latter is enabled. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 44 | |
| 45 | pre-applypatch |
| 46 | -------------- |
| 47 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 48 | 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] | 49 | invoked after the patch is applied, but before a commit is made. |
| 50 | |
| 51 | If it exits with non-zero status, then the working tree will not be |
| 52 | committed after applying the patch. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 53 | |
| 54 | It can be used to inspect the current working tree and refuse to |
| 55 | make a commit if it does not pass certain test. |
| 56 | |
Junio C Hamano | d578413 | 2006-09-20 21:29:27 | [diff] [blame] | 57 | The default 'pre-applypatch' hook, when enabled, runs the |
| 58 | 'pre-commit' hook, if the latter is enabled. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 59 | |
| 60 | post-applypatch |
| 61 | --------------- |
| 62 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 63 | This hook is invoked by 'git-am'. It takes no parameter, |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 64 | and is invoked after the patch is applied and a commit is made. |
| 65 | |
| 66 | This hook is meant primarily for notification, and cannot affect |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 67 | the outcome of 'git-am'. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 68 | |
| 69 | pre-commit |
| 70 | ---------- |
| 71 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 72 | This hook is invoked by 'git-commit', and can be bypassed |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 73 | with `\--no-verify` option. It takes no parameter, and is |
| 74 | invoked before obtaining the proposed commit log message and |
| 75 | making a commit. Exiting with non-zero status from this script |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 76 | causes the 'git-commit' to abort. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 77 | |
Junio C Hamano | d578413 | 2006-09-20 21:29:27 | [diff] [blame] | 78 | The default 'pre-commit' hook, when enabled, catches introduction |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 79 | of lines with trailing whitespaces and aborts the commit when |
Junio C Hamano | d578413 | 2006-09-20 21:29:27 | [diff] [blame] | 80 | such a line is found. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 81 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 82 | All the 'git-commit' hooks are invoked with the environment |
Junio C Hamano | 26e590a | 2008-02-17 03:53:51 | [diff] [blame] | 83 | variable `GIT_EDITOR=:` if the command will not bring up an editor |
| 84 | to modify the commit message. |
| 85 | |
| 86 | prepare-commit-msg |
| 87 | ------------------ |
| 88 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 89 | This hook is invoked by 'git-commit' right after preparing the |
Junio C Hamano | 26e590a | 2008-02-17 03:53:51 | [diff] [blame] | 90 | default log message, and before the editor is started. |
| 91 | |
| 92 | 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] | 93 | 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] | 94 | message, and can be: `message` (if a `-m` or `-F` option was |
| 95 | given); `template` (if a `-t` option was given or the |
Junio C Hamano | 26e590a | 2008-02-17 03:53:51 | [diff] [blame] | 96 | configuration option `commit.template` is set); `merge` (if the |
| 97 | commit is a merge or a `.git/MERGE_MSG` file exists); `squash` |
| 98 | (if a `.git/SQUASH_MSG` file exists); or `commit`, followed by |
Junio C Hamano | a476efa | 2008-10-10 15:31:42 | [diff] [blame] | 99 | a commit SHA1 (if a `-c`, `-C` or `\--amend` option was given). |
Junio C Hamano | 26e590a | 2008-02-17 03:53:51 | [diff] [blame] | 100 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 101 | If the exit status is non-zero, 'git-commit' will abort. |
Junio C Hamano | 26e590a | 2008-02-17 03:53:51 | [diff] [blame] | 102 | |
| 103 | The purpose of the hook is to edit the message file in place, and |
| 104 | it is not suppressed by the `\--no-verify` option. A non-zero exit |
| 105 | means a failure of the hook and aborts the commit. It should not |
| 106 | be used as replacement for pre-commit hook. |
| 107 | |
| 108 | The sample `prepare-commit-msg` hook that comes with git comments |
| 109 | out the `Conflicts:` part of a merge's commit message. |
| 110 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 111 | commit-msg |
| 112 | ---------- |
| 113 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 114 | This hook is invoked by 'git-commit', and can be bypassed |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 115 | with `\--no-verify` option. It takes a single parameter, the |
| 116 | name of the file that holds the proposed commit log message. |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 117 | Exiting with non-zero status causes the 'git-commit' to |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 118 | abort. |
| 119 | |
| 120 | The hook is allowed to edit the message file in place, and can |
| 121 | be used to normalize the message into some project standard |
| 122 | format (if the project has one). It can also be used to refuse |
| 123 | the commit after inspecting the message file. |
| 124 | |
Junio C Hamano | d578413 | 2006-09-20 21:29:27 | [diff] [blame] | 125 | The default 'commit-msg' hook, when enabled, detects duplicate |
| 126 | "Signed-off-by" lines, and aborts the commit if one is found. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 127 | |
| 128 | post-commit |
| 129 | ----------- |
| 130 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 131 | This hook is invoked by 'git-commit'. It takes no |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 132 | parameter, and is invoked after a commit is made. |
| 133 | |
| 134 | This hook is meant primarily for notification, and cannot affect |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 135 | the outcome of 'git-commit'. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 136 | |
Junio C Hamano | a476efa | 2008-10-10 15:31:42 | [diff] [blame] | 137 | pre-rebase |
| 138 | ---------- |
| 139 | |
| 140 | This hook is called by 'git-rebase' and can be used to prevent a branch |
| 141 | from getting rebased. |
| 142 | |
| 143 | |
Junio C Hamano | 1b50ce9 | 2007-10-03 12:05:53 | [diff] [blame] | 144 | post-checkout |
| 145 | ----------- |
| 146 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 147 | 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] | 148 | worktree. The hook is given three parameters: the ref of the previous HEAD, |
| 149 | the ref of the new HEAD (which may or may not have changed), and a flag |
| 150 | indicating whether the checkout was a branch checkout (changing branches, |
| 151 | flag=1) or a file checkout (retrieving a file from the index, flag=0). |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 152 | This hook cannot affect the outcome of 'git-checkout'. |
Junio C Hamano | 1b50ce9 | 2007-10-03 12:05:53 | [diff] [blame] | 153 | |
Junio C Hamano | 36a5672 | 2009-03-28 08:55:34 | [diff] [blame^] | 154 | It is also run after 'git-clone', unless the --no-checkout (-n) option is |
| 155 | used. The first parameter given to the hook is the null-ref, the second the |
| 156 | ref of the new HEAD and the flag is always 1. |
| 157 | |
Junio C Hamano | 1b50ce9 | 2007-10-03 12:05:53 | [diff] [blame] | 158 | This hook can be used to perform repository validity checks, auto-display |
| 159 | differences from the previous HEAD if different, or set working dir metadata |
| 160 | properties. |
| 161 | |
Junio C Hamano | 01d8f83 | 2007-09-24 07:37:30 | [diff] [blame] | 162 | post-merge |
| 163 | ----------- |
| 164 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 165 | 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] | 166 | is done on a local repository. The hook takes a single parameter, a status |
| 167 | flag specifying whether or not the merge being done was a squash merge. |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 168 | 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] | 169 | if the merge failed due to conflicts. |
Junio C Hamano | 01d8f83 | 2007-09-24 07:37:30 | [diff] [blame] | 170 | |
| 171 | This hook can be used in conjunction with a corresponding pre-commit hook to |
| 172 | save and restore any form of metadata associated with the working tree |
| 173 | (eg: permissions/ownership, ACLS, etc). See contrib/hooks/setgitperms.perl |
| 174 | for an example of how to do this. |
| 175 | |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 176 | [[pre-receive]] |
| 177 | pre-receive |
| 178 | ----------- |
| 179 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 180 | This hook is invoked by 'git-receive-pack' on the remote repository, |
| 181 | which happens when a 'git-push' is done on a local repository. |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 182 | Just before starting to update refs on the remote repository, the |
| 183 | pre-receive hook is invoked. Its exit status determines the success |
| 184 | or failure of the update. |
| 185 | |
| 186 | This hook executes once for the receive operation. It takes no |
| 187 | arguments, but for each ref to be updated it receives on standard |
| 188 | input a line of the format: |
| 189 | |
| 190 | <old-value> SP <new-value> SP <ref-name> LF |
| 191 | |
| 192 | where `<old-value>` is the old object name stored in the ref, |
| 193 | `<new-value>` is the new object name to be stored in the ref and |
| 194 | `<ref-name>` is the full name of the ref. |
| 195 | When creating a new ref, `<old-value>` is 40 `0`. |
| 196 | |
| 197 | If the hook exits with non-zero status, none of the refs will be |
| 198 | updated. If the hook exits with zero, updating of individual refs can |
| 199 | still be prevented by the <<update,'update'>> hook. |
| 200 | |
Junio C Hamano | 323e52d | 2007-05-13 22:19:53 | [diff] [blame] | 201 | Both standard output and standard error output are forwarded to |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 202 | '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] | 203 | for the user. |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 204 | |
| 205 | [[update]] |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 206 | update |
| 207 | ------ |
| 208 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 209 | This hook is invoked by 'git-receive-pack' on the remote repository, |
| 210 | which happens when a 'git-push' is done on a local repository. |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 211 | Just before updating the ref on the remote repository, the update hook |
Junio C Hamano | 33db437 | 2006-06-07 19:51:45 | [diff] [blame] | 212 | is invoked. Its exit status determines the success or failure of |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 213 | the ref update. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 214 | |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 215 | The hook executes once for each ref to be updated, and takes |
| 216 | three parameters: |
Junio C Hamano | d578413 | 2006-09-20 21:29:27 | [diff] [blame] | 217 | |
| 218 | - the name of the ref being updated, |
| 219 | - the old object name stored in the ref, |
| 220 | - and the new objectname to be stored in the ref. |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 221 | |
| 222 | 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] | 223 | Exiting with a non-zero status prevents 'git-receive-pack' |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 224 | from updating that ref. |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 225 | |
| 226 | 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] | 227 | making sure that the object name is a commit object that is a |
| 228 | descendant of the commit object named by the old object name. |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 229 | That is, to enforce a "fast forward only" policy. |
| 230 | |
| 231 | It could also be used to log the old..new status. However, it |
| 232 | 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] | 233 | firing one e-mail per ref when used naively, though. The |
| 234 | <<post-receive,'post-receive'>> hook is more suited to that. |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 235 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 236 | Another use suggested on the mailing list is to use this hook to |
| 237 | implement access control which is finer grained than the one |
| 238 | based on filesystem group. |
| 239 | |
Junio C Hamano | 323e52d | 2007-05-13 22:19:53 | [diff] [blame] | 240 | Both standard output and standard error output are forwarded to |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 241 | '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] | 242 | for the user. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 243 | |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 244 | The default 'update' hook, when enabled--and with |
| 245 | `hooks.allowunannotated` config option turned on--prevents |
| 246 | unannotated tags to be pushed. |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 247 | |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 248 | [[post-receive]] |
| 249 | post-receive |
| 250 | ------------ |
| 251 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 252 | This hook is invoked by 'git-receive-pack' on the remote repository, |
| 253 | which happens when a 'git-push' is done on a local repository. |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 254 | It executes on the remote repository once after all the refs have |
| 255 | been updated. |
| 256 | |
| 257 | This hook executes once for the receive operation. It takes no |
Junio C Hamano | 323e52d | 2007-05-13 22:19:53 | [diff] [blame] | 258 | arguments, but gets the same information as the |
| 259 | <<pre-receive,'pre-receive'>> |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 260 | hook does on its standard input. |
| 261 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 262 | 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] | 263 | is called after the real work is done. |
| 264 | |
Junio C Hamano | a638742 | 2007-08-25 03:54:27 | [diff] [blame] | 265 | This supersedes the <<post-update,'post-update'>> hook in that it gets |
Junio C Hamano | 323e52d | 2007-05-13 22:19:53 | [diff] [blame] | 266 | both old and new values of all the refs in addition to their |
| 267 | names. |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 268 | |
Junio C Hamano | 323e52d | 2007-05-13 22:19:53 | [diff] [blame] | 269 | Both standard output and standard error output are forwarded to |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 270 | '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] | 271 | for the user. |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 272 | |
| 273 | The default 'post-receive' hook is empty, but there is |
| 274 | a sample script `post-receive-email` provided in the `contrib/hooks` |
| 275 | directory in git distribution, which implements sending commit |
| 276 | emails. |
| 277 | |
| 278 | [[post-update]] |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 279 | post-update |
| 280 | ----------- |
| 281 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 282 | This hook is invoked by 'git-receive-pack' on the remote repository, |
| 283 | which happens when a 'git-push' is done on a local repository. |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 284 | It executes on the remote repository once after all the refs have |
| 285 | been updated. |
| 286 | |
| 287 | It takes a variable number of parameters, each of which is the |
| 288 | name of ref that was actually updated. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 289 | |
| 290 | This hook is meant primarily for notification, and cannot affect |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 291 | the outcome of 'git-receive-pack'. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 292 | |
Junio C Hamano | d578413 | 2006-09-20 21:29:27 | [diff] [blame] | 293 | 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] | 294 | but it does not know what their original and updated values are, |
Junio C Hamano | 323e52d | 2007-05-13 22:19:53 | [diff] [blame] | 295 | so it is a poor place to do log old..new. The |
| 296 | <<post-receive,'post-receive'>> hook does get both original and |
| 297 | updated values of the refs. You might consider it instead if you need |
| 298 | them. |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 299 | |
Junio C Hamano | d578413 | 2006-09-20 21:29:27 | [diff] [blame] | 300 | When enabled, the default 'post-update' hook runs |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 301 | 'git-update-server-info' to keep the information used by dumb |
Junio C Hamano | d578413 | 2006-09-20 21:29:27 | [diff] [blame] | 302 | transports (e.g., HTTP) up-to-date. If you are publishing |
| 303 | a git repository that is accessible via HTTP, you should |
Junio C Hamano | 818f7d6 | 2006-03-26 01:49:30 | [diff] [blame] | 304 | probably enable this hook. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 305 | |
Junio C Hamano | 8638c92 | 2007-05-12 20:50:08 | [diff] [blame] | 306 | Both standard output and standard error output are forwarded to |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 307 | '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] | 308 | for the user. |
Junio C Hamano | e3ddb5b | 2008-04-21 00:48:07 | [diff] [blame] | 309 | |
| 310 | pre-auto-gc |
| 311 | ----------- |
| 312 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 313 | This hook is invoked by 'git-gc --auto'. It takes no parameter, and |
| 314 | 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] | 315 | to abort. |
Junio C Hamano | 2fbcd21 | 2008-05-14 22:26:07 | [diff] [blame] | 316 | |
| 317 | GIT |
| 318 | --- |
Junio C Hamano | f7c042d | 2008-06-06 22:50:53 | [diff] [blame] | 319 | Part of the linkgit:git[1] suite |