2008-05-02 05:30:47 +02:00
|
|
|
githooks(5)
|
|
|
|
===========
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2013-01-21 20:17:53 +01:00
|
|
|
githooks - Hooks used by Git
|
2008-05-02 05:30:47 +02:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2016-05-05 00:58:12 +02:00
|
|
|
$GIT_DIR/hooks/* (or \`git config core.hooksPath`/*)
|
2008-05-02 05:30:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2005-09-03 06:19:26 +02:00
|
|
|
|
2016-05-05 00:58:12 +02:00
|
|
|
Hooks are programs you can place in a hooks directory to trigger
|
|
|
|
actions at certain points in git's execution. Hooks that don't have
|
|
|
|
the executable bit set are ignored.
|
|
|
|
|
|
|
|
By default the hooks directory is `$GIT_DIR/hooks`, but that can be
|
|
|
|
changed via the `core.hooksPath` configuration variable (see
|
|
|
|
linkgit:git-config[1]).
|
2016-05-05 00:58:09 +02:00
|
|
|
|
|
|
|
Before Git invokes a hook, it changes its working directory to either
|
|
|
|
the root of the working tree in a non-bare repository, or to the
|
|
|
|
$GIT_DIR in a bare repository.
|
|
|
|
|
|
|
|
Hooks can get their arguments via the environment, command-line
|
|
|
|
arguments, and stdin. See the documentation for each hook below for
|
|
|
|
details.
|
|
|
|
|
|
|
|
'git init' may copy hooks to the new repository, depending on its
|
|
|
|
configuration. See the "TEMPLATE DIRECTORY" section in
|
|
|
|
linkgit:git-init[1] for details. When the rest of this document refers
|
|
|
|
to "default hooks" it's talking about the default template shipped
|
|
|
|
with Git.
|
|
|
|
|
|
|
|
The currently supported hooks are described below.
|
2005-09-03 06:19:26 +02:00
|
|
|
|
2009-09-06 12:22:58 +02:00
|
|
|
HOOKS
|
|
|
|
-----
|
|
|
|
|
2005-09-03 06:19:26 +02:00
|
|
|
applypatch-msg
|
2009-09-06 12:22:58 +02:00
|
|
|
~~~~~~~~~~~~~~
|
2005-09-03 06:19:26 +02:00
|
|
|
|
2016-05-05 00:58:11 +02:00
|
|
|
This hook is invoked by 'git am'. It takes a single
|
2005-09-03 06:19:26 +02:00
|
|
|
parameter, the name of the file that holds the proposed commit
|
2016-05-05 00:58:11 +02:00
|
|
|
log message. Exiting with a non-zero status causes 'git am' to abort
|
|
|
|
before applying the patch.
|
2005-09-03 06:19:26 +02:00
|
|
|
|
|
|
|
The hook is allowed to edit the message file in place, and can
|
|
|
|
be used to normalize the message into some project standard
|
2016-05-05 00:58:11 +02:00
|
|
|
format. It can also be used to refuse the commit after inspecting
|
|
|
|
the message file.
|
2005-09-03 06:19:26 +02:00
|
|
|
|
2006-09-20 12:15:39 +02:00
|
|
|
The default 'applypatch-msg' hook, when enabled, runs the
|
|
|
|
'commit-msg' hook, if the latter is enabled.
|
2005-09-03 06:19:26 +02:00
|
|
|
|
|
|
|
pre-applypatch
|
2009-09-06 12:22:58 +02:00
|
|
|
~~~~~~~~~~~~~~
|
2005-09-03 06:19:26 +02:00
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
This hook is invoked by 'git am'. It takes no parameter, and is
|
2008-05-02 05:30:41 +02:00
|
|
|
invoked after the patch is applied, but before a commit is made.
|
|
|
|
|
|
|
|
If it exits with non-zero status, then the working tree will not be
|
|
|
|
committed after applying the patch.
|
2005-09-03 06:19:26 +02:00
|
|
|
|
|
|
|
It can be used to inspect the current working tree and refuse to
|
|
|
|
make a commit if it does not pass certain test.
|
|
|
|
|
2006-09-20 12:15:39 +02:00
|
|
|
The default 'pre-applypatch' hook, when enabled, runs the
|
|
|
|
'pre-commit' hook, if the latter is enabled.
|
2005-09-03 06:19:26 +02:00
|
|
|
|
|
|
|
post-applypatch
|
2009-09-06 12:22:58 +02:00
|
|
|
~~~~~~~~~~~~~~~
|
2005-09-03 06:19:26 +02:00
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
This hook is invoked by 'git am'. It takes no parameter,
|
2005-09-03 06:19:26 +02:00
|
|
|
and is invoked after the patch is applied and a commit is made.
|
|
|
|
|
|
|
|
This hook is meant primarily for notification, and cannot affect
|
2010-01-10 00:33:00 +01:00
|
|
|
the outcome of 'git am'.
|
2005-09-03 06:19:26 +02:00
|
|
|
|
|
|
|
pre-commit
|
2009-09-06 12:22:58 +02:00
|
|
|
~~~~~~~~~~
|
2005-09-03 06:19:26 +02:00
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
This hook is invoked by 'git commit', and can be bypassed
|
2016-05-05 00:58:11 +02:00
|
|
|
with the `--no-verify` option. It takes no parameters, and is
|
2005-09-03 06:19:26 +02:00
|
|
|
invoked before obtaining the proposed commit log message and
|
2016-05-05 00:58:11 +02:00
|
|
|
making a commit. Exiting with a non-zero status from this script
|
|
|
|
causes the 'git commit' command to abort before creating a commit.
|
2005-09-03 06:19:26 +02:00
|
|
|
|
2006-09-20 12:15:39 +02:00
|
|
|
The default 'pre-commit' hook, when enabled, catches introduction
|
2005-09-03 06:19:26 +02:00
|
|
|
of lines with trailing whitespaces and aborts the commit when
|
2006-09-20 12:15:39 +02:00
|
|
|
such a line is found.
|
2005-09-03 06:19:26 +02:00
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
All the 'git commit' hooks are invoked with the environment
|
2008-02-05 11:01:45 +01:00
|
|
|
variable `GIT_EDITOR=:` if the command will not bring up an editor
|
|
|
|
to modify the commit message.
|
|
|
|
|
2008-02-05 08:04:18 +01:00
|
|
|
prepare-commit-msg
|
2009-09-06 12:22:58 +02:00
|
|
|
~~~~~~~~~~~~~~~~~~
|
2008-02-05 08:04:18 +01:00
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
This hook is invoked by 'git commit' right after preparing the
|
2008-02-05 08:04:18 +01:00
|
|
|
default log message, and before the editor is started.
|
|
|
|
|
|
|
|
It takes one to three parameters. The first is the name of the file
|
2009-01-16 21:36:06 +01:00
|
|
|
that contains the commit log message. The second is the source of the commit
|
2008-09-30 19:27:10 +02:00
|
|
|
message, and can be: `message` (if a `-m` or `-F` option was
|
|
|
|
given); `template` (if a `-t` option was given or the
|
2008-02-05 08:04:18 +01:00
|
|
|
configuration option `commit.template` is set); `merge` (if the
|
|
|
|
commit is a merge or a `.git/MERGE_MSG` file exists); `squash`
|
|
|
|
(if a `.git/SQUASH_MSG` file exists); or `commit`, followed by
|
2013-04-15 19:49:04 +02:00
|
|
|
a commit SHA-1 (if a `-c`, `-C` or `--amend` option was given).
|
2008-02-05 08:04:18 +01:00
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
If the exit status is non-zero, 'git commit' will abort.
|
2008-02-05 08:04:18 +01:00
|
|
|
|
|
|
|
The purpose of the hook is to edit the message file in place, and
|
docs: stop using asciidoc no-inline-literal
In asciidoc 7, backticks like `foo` produced a typographic
effect, but did not otherwise affect the syntax. In asciidoc
8, backticks introduce an "inline literal" inside which markup
is not interpreted. To keep compatibility with existing
documents, asciidoc 8 has a "no-inline-literal" attribute to
keep the old behavior. We enabled this so that the
documentation could be built on either version.
It has been several years now, and asciidoc 7 is no longer
in wide use. We can now decide whether or not we want
inline literals on their own merits, which are:
1. The source is much easier to read when the literal
contains punctuation. You can use `master~1` instead
of `master{tilde}1`.
2. They are less error-prone. Because of point (1), we
tend to make mistakes and forget the extra layer of
quoting.
This patch removes the no-inline-literal attribute from the
Makefile and converts every use of backticks in the
documentation to an inline literal (they must be cleaned up,
or the example above would literally show "{tilde}" in the
output).
Problematic sites were found by grepping for '`.*[{\\]' and
examined and fixed manually. The results were then verified
by comparing the output of "html2text" on the set of
generated html pages. Doing so revealed that in addition to
making the source more readable, this patch fixes several
formatting bugs:
- HTML rendering used the ellipsis character instead of
literal "..." in code examples (like "git log A...B")
- some code examples used the right-arrow character
instead of '->' because they failed to quote
- api-config.txt did not quote tilde, and the resulting
HTML contained a bogus snippet like:
<tt><sub></tt> foo <tt></sub>bar</tt>
which caused some parsers to choke and omit whole
sections of the page.
- git-commit.txt confused ``foo`` (backticks inside a
literal) with ``foo'' (matched double-quotes)
- mentions of `A U Thor <author@example.com>` used to
erroneously auto-generate a mailto footnote for
author@example.com
- the description of --word-diff=plain incorrectly showed
the output as "[-removed-] and {added}", not "{+added+}".
- using "prime" notation like:
commit `C` and its replacement `C'`
confused asciidoc into thinking that everything between
the first backtick and the final apostrophe were meant
to be inside matched quotes
- asciidoc got confused by the escaping of some of our
asterisks. In particular,
`credential.\*` and `credential.<url>.\*`
properly escaped the asterisk in the first case, but
literally passed through the backslash in the second
case.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-04-26 10:51:57 +02:00
|
|
|
it is not suppressed by the `--no-verify` option. A non-zero exit
|
2008-02-05 08:04:18 +01:00
|
|
|
means a failure of the hook and aborts the commit. It should not
|
|
|
|
be used as replacement for pre-commit hook.
|
|
|
|
|
2013-01-21 20:17:53 +01:00
|
|
|
The sample `prepare-commit-msg` hook that comes with Git comments
|
2008-02-05 08:04:18 +01:00
|
|
|
out the `Conflicts:` part of a merge's commit message.
|
|
|
|
|
2005-09-03 06:19:26 +02:00
|
|
|
commit-msg
|
2009-09-06 12:22:58 +02:00
|
|
|
~~~~~~~~~~
|
2005-09-03 06:19:26 +02:00
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
This hook is invoked by 'git commit', and can be bypassed
|
2016-05-05 00:58:11 +02:00
|
|
|
with the `--no-verify` option. It takes a single parameter, the
|
2005-09-03 06:19:26 +02:00
|
|
|
name of the file that holds the proposed commit log message.
|
2016-05-05 00:58:11 +02:00
|
|
|
Exiting with a non-zero status causes the 'git commit' to
|
2005-09-03 06:19:26 +02:00
|
|
|
abort.
|
|
|
|
|
2016-05-05 00:58:11 +02:00
|
|
|
The hook is allowed to edit the message file in place, and can be used
|
|
|
|
to normalize the message into some project standard format. It
|
|
|
|
can also be used to refuse the commit after inspecting the message
|
|
|
|
file.
|
2005-09-03 06:19:26 +02:00
|
|
|
|
2006-09-20 12:15:39 +02:00
|
|
|
The default 'commit-msg' hook, when enabled, detects duplicate
|
|
|
|
"Signed-off-by" lines, and aborts the commit if one is found.
|
2005-09-03 06:19:26 +02:00
|
|
|
|
|
|
|
post-commit
|
2009-09-06 12:22:58 +02:00
|
|
|
~~~~~~~~~~~
|
2005-09-03 06:19:26 +02:00
|
|
|
|
2016-05-05 00:58:11 +02:00
|
|
|
This hook is invoked by 'git commit'. It takes no parameters, and is
|
|
|
|
invoked after a commit is made.
|
2005-09-03 06:19:26 +02:00
|
|
|
|
|
|
|
This hook is meant primarily for notification, and cannot affect
|
2010-01-10 00:33:00 +01:00
|
|
|
the outcome of 'git commit'.
|
2005-09-03 06:19:26 +02:00
|
|
|
|
2008-10-05 15:26:54 +02:00
|
|
|
pre-rebase
|
2009-09-06 12:22:58 +02:00
|
|
|
~~~~~~~~~~
|
2008-10-05 15:26:54 +02:00
|
|
|
|
2013-02-23 16:27:39 +01:00
|
|
|
This hook is called by 'git rebase' and can be used to prevent a
|
|
|
|
branch from getting rebased. The hook may be called with one or
|
|
|
|
two parameters. The first parameter is the upstream from which
|
|
|
|
the series was forked. The second parameter is the branch being
|
|
|
|
rebased, and is not set when rebasing the current branch.
|
2008-10-05 15:26:54 +02:00
|
|
|
|
2007-09-26 23:31:01 +02:00
|
|
|
post-checkout
|
2009-09-06 12:22:58 +02:00
|
|
|
~~~~~~~~~~~~~
|
2007-09-26 23:31:01 +02:00
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
This hook is invoked when a 'git checkout' is run after having updated the
|
2007-09-26 23:31:01 +02:00
|
|
|
worktree. The hook is given three parameters: the ref of the previous HEAD,
|
|
|
|
the ref of the new HEAD (which may or may not have changed), and a flag
|
|
|
|
indicating whether the checkout was a branch checkout (changing branches,
|
|
|
|
flag=1) or a file checkout (retrieving a file from the index, flag=0).
|
2010-01-10 00:33:00 +01:00
|
|
|
This hook cannot affect the outcome of 'git checkout'.
|
2007-09-26 23:31:01 +02:00
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
It is also run after 'git clone', unless the --no-checkout (-n) option is
|
2009-03-22 19:46:38 +01:00
|
|
|
used. The first parameter given to the hook is the null-ref, the second the
|
|
|
|
ref of the new HEAD and the flag is always 1.
|
|
|
|
|
2007-09-26 23:31:01 +02:00
|
|
|
This hook can be used to perform repository validity checks, auto-display
|
|
|
|
differences from the previous HEAD if different, or set working dir metadata
|
|
|
|
properties.
|
|
|
|
|
2007-09-11 18:59:03 +02:00
|
|
|
post-merge
|
2009-09-06 12:22:58 +02:00
|
|
|
~~~~~~~~~~
|
2007-09-11 18:59:03 +02:00
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
This hook is invoked by 'git merge', which happens when a 'git pull'
|
2007-09-11 18:59:03 +02:00
|
|
|
is done on a local repository. The hook takes a single parameter, a status
|
|
|
|
flag specifying whether or not the merge being done was a squash merge.
|
2010-01-10 00:33:00 +01:00
|
|
|
This hook cannot affect the outcome of 'git merge' and is not executed,
|
2008-05-05 11:06:49 +02:00
|
|
|
if the merge failed due to conflicts.
|
2007-09-11 18:59:03 +02:00
|
|
|
|
|
|
|
This hook can be used in conjunction with a corresponding pre-commit hook to
|
|
|
|
save and restore any form of metadata associated with the working tree
|
2014-11-03 21:37:07 +01:00
|
|
|
(e.g.: permissions/ownership, ACLS, etc). See contrib/hooks/setgitperms.perl
|
2007-09-11 18:59:04 +02:00
|
|
|
for an example of how to do this.
|
2007-09-11 18:59:03 +02:00
|
|
|
|
2013-01-13 06:17:03 +01:00
|
|
|
pre-push
|
|
|
|
~~~~~~~~
|
|
|
|
|
|
|
|
This hook is called by 'git push' and can be used to prevent a push from taking
|
|
|
|
place. The hook is called with two parameters which provide the name and
|
|
|
|
location of the destination remote, if a named remote is not being used both
|
|
|
|
values will be the same.
|
|
|
|
|
|
|
|
Information about what is to be pushed is provided on the hook's standard
|
|
|
|
input with lines of the form:
|
|
|
|
|
|
|
|
<local ref> SP <local sha1> SP <remote ref> SP <remote sha1> LF
|
|
|
|
|
|
|
|
For instance, if the command +git push origin master:foreign+ were run the
|
|
|
|
hook would receive a line like the following:
|
|
|
|
|
|
|
|
refs/heads/master 67890 refs/heads/foreign 12345
|
|
|
|
|
2013-04-15 19:49:04 +02:00
|
|
|
although the full, 40-character SHA-1s would be supplied. If the foreign ref
|
|
|
|
does not yet exist the `<remote SHA-1>` will be 40 `0`. If a ref is to be
|
2013-01-13 06:17:03 +01:00
|
|
|
deleted, the `<local ref>` will be supplied as `(delete)` and the `<local
|
2013-04-15 19:49:04 +02:00
|
|
|
SHA-1>` will be 40 `0`. If the local commit was specified by something other
|
|
|
|
than a name which could be expanded (such as `HEAD~`, or a SHA-1) it will be
|
2013-01-13 06:17:03 +01:00
|
|
|
supplied as it was originally given.
|
|
|
|
|
|
|
|
If this hook exits with a non-zero status, 'git push' will abort without
|
|
|
|
pushing anything. Information about why the push is rejected may be sent
|
|
|
|
to the user by writing to standard error.
|
|
|
|
|
2007-05-12 19:11:13 +02:00
|
|
|
[[pre-receive]]
|
|
|
|
pre-receive
|
2009-09-06 12:22:58 +02:00
|
|
|
~~~~~~~~~~~
|
2007-05-12 19:11:13 +02:00
|
|
|
|
2008-07-03 07:41:41 +02:00
|
|
|
This hook is invoked by 'git-receive-pack' on the remote repository,
|
2010-01-10 00:33:00 +01:00
|
|
|
which happens when a 'git push' is done on a local repository.
|
2007-05-12 19:11:13 +02:00
|
|
|
Just before starting to update refs on the remote repository, the
|
|
|
|
pre-receive hook is invoked. Its exit status determines the success
|
|
|
|
or failure of the update.
|
|
|
|
|
|
|
|
This hook executes once for the receive operation. It takes no
|
|
|
|
arguments, but for each ref to be updated it receives on standard
|
|
|
|
input a line of the format:
|
|
|
|
|
|
|
|
<old-value> SP <new-value> SP <ref-name> LF
|
|
|
|
|
|
|
|
where `<old-value>` is the old object name stored in the ref,
|
|
|
|
`<new-value>` is the new object name to be stored in the ref and
|
|
|
|
`<ref-name>` is the full name of the ref.
|
|
|
|
When creating a new ref, `<old-value>` is 40 `0`.
|
|
|
|
|
|
|
|
If the hook exits with non-zero status, none of the refs will be
|
|
|
|
updated. If the hook exits with zero, updating of individual refs can
|
|
|
|
still be prevented by the <<update,'update'>> hook.
|
|
|
|
|
2007-05-12 23:43:11 +02:00
|
|
|
Both standard output and standard error output are forwarded to
|
2010-01-10 00:33:00 +01:00
|
|
|
'git send-pack' on the other end, so you can simply `echo` messages
|
2007-05-12 23:43:11 +02:00
|
|
|
for the user.
|
2007-05-12 19:11:13 +02:00
|
|
|
|
|
|
|
[[update]]
|
2005-09-03 06:19:26 +02:00
|
|
|
update
|
2009-09-06 12:22:58 +02:00
|
|
|
~~~~~~
|
2005-09-03 06:19:26 +02:00
|
|
|
|
2008-07-03 07:41:41 +02:00
|
|
|
This hook is invoked by 'git-receive-pack' on the remote repository,
|
2010-01-10 00:33:00 +01:00
|
|
|
which happens when a 'git push' is done on a local repository.
|
2006-03-25 04:21:07 +01:00
|
|
|
Just before updating the ref on the remote repository, the update hook
|
2006-06-07 14:56:45 +02:00
|
|
|
is invoked. Its exit status determines the success or failure of
|
2006-03-25 04:21:07 +01:00
|
|
|
the ref update.
|
|
|
|
|
|
|
|
The hook executes once for each ref to be updated, and takes
|
|
|
|
three parameters:
|
2006-09-20 12:15:39 +02:00
|
|
|
|
|
|
|
- the name of the ref being updated,
|
|
|
|
- the old object name stored in the ref,
|
2014-02-05 23:19:43 +01:00
|
|
|
- and the new object name to be stored in the ref.
|
2006-03-25 04:21:07 +01:00
|
|
|
|
|
|
|
A zero exit from the update hook allows the ref to be updated.
|
2008-07-03 07:41:41 +02:00
|
|
|
Exiting with a non-zero status prevents 'git-receive-pack'
|
2007-05-12 19:11:13 +02:00
|
|
|
from updating that ref.
|
2006-03-25 04:21:07 +01:00
|
|
|
|
|
|
|
This hook can be used to prevent 'forced' update on certain refs by
|
2005-09-03 06:19:26 +02:00
|
|
|
making sure that the object name is a commit object that is a
|
|
|
|
descendant of the commit object named by the old object name.
|
2009-10-24 10:31:32 +02:00
|
|
|
That is, to enforce a "fast-forward only" policy.
|
2006-03-25 04:21:07 +01:00
|
|
|
|
|
|
|
It could also be used to log the old..new status. However, it
|
|
|
|
does not know the entire set of branches, so it would end up
|
2007-05-12 19:11:13 +02:00
|
|
|
firing one e-mail per ref when used naively, though. The
|
|
|
|
<<post-receive,'post-receive'>> hook is more suited to that.
|
2006-03-25 04:21:07 +01:00
|
|
|
|
2016-05-05 00:58:10 +02:00
|
|
|
In an environment that restricts the users' access only to git
|
|
|
|
commands over the wire, this hook can be used to implement access
|
|
|
|
control without relying on filesystem ownership and group
|
|
|
|
membership. See linkgit:git-shell[1] for how you might use the login
|
|
|
|
shell to restrict the user's access to only git commands.
|
2005-09-03 06:19:26 +02:00
|
|
|
|
2007-05-12 23:43:11 +02:00
|
|
|
Both standard output and standard error output are forwarded to
|
2010-01-10 00:33:00 +01:00
|
|
|
'git send-pack' on the other end, so you can simply `echo` messages
|
2007-05-12 23:43:11 +02:00
|
|
|
for the user.
|
2005-12-20 01:35:48 +01:00
|
|
|
|
2007-05-12 19:11:13 +02:00
|
|
|
The default 'update' hook, when enabled--and with
|
2009-09-14 10:47:06 +02:00
|
|
|
`hooks.allowunannotated` config option unset or set to false--prevents
|
2007-05-12 19:11:13 +02:00
|
|
|
unannotated tags to be pushed.
|
|
|
|
|
|
|
|
[[post-receive]]
|
|
|
|
post-receive
|
2009-09-06 12:22:58 +02:00
|
|
|
~~~~~~~~~~~~
|
2006-03-25 04:21:07 +01:00
|
|
|
|
2008-07-03 07:41:41 +02:00
|
|
|
This hook is invoked by 'git-receive-pack' on the remote repository,
|
2010-01-10 00:33:00 +01:00
|
|
|
which happens when a 'git push' is done on a local repository.
|
2007-05-12 19:11:13 +02:00
|
|
|
It executes on the remote repository once after all the refs have
|
|
|
|
been updated.
|
|
|
|
|
|
|
|
This hook executes once for the receive operation. It takes no
|
2007-05-12 23:43:11 +02:00
|
|
|
arguments, but gets the same information as the
|
|
|
|
<<pre-receive,'pre-receive'>>
|
2007-05-12 19:11:13 +02:00
|
|
|
hook does on its standard input.
|
|
|
|
|
2008-07-03 07:41:41 +02:00
|
|
|
This hook does not affect the outcome of 'git-receive-pack', as it
|
2007-05-12 19:11:13 +02:00
|
|
|
is called after the real work is done.
|
|
|
|
|
2007-08-24 02:44:13 +02:00
|
|
|
This supersedes the <<post-update,'post-update'>> hook in that it gets
|
2007-05-12 23:43:11 +02:00
|
|
|
both old and new values of all the refs in addition to their
|
|
|
|
names.
|
2007-05-12 19:11:13 +02:00
|
|
|
|
2007-05-12 23:43:11 +02:00
|
|
|
Both standard output and standard error output are forwarded to
|
2010-01-10 00:33:00 +01:00
|
|
|
'git send-pack' on the other end, so you can simply `echo` messages
|
2007-05-12 23:43:11 +02:00
|
|
|
for the user.
|
2007-05-12 19:11:13 +02:00
|
|
|
|
|
|
|
The default 'post-receive' hook is empty, but there is
|
|
|
|
a sample script `post-receive-email` provided in the `contrib/hooks`
|
2013-01-21 20:17:53 +01:00
|
|
|
directory in Git distribution, which implements sending commit
|
2007-05-12 19:11:13 +02:00
|
|
|
emails.
|
|
|
|
|
|
|
|
[[post-update]]
|
2005-09-03 06:19:26 +02:00
|
|
|
post-update
|
2009-09-06 12:22:58 +02:00
|
|
|
~~~~~~~~~~~
|
2005-09-03 06:19:26 +02:00
|
|
|
|
2008-07-03 07:41:41 +02:00
|
|
|
This hook is invoked by 'git-receive-pack' on the remote repository,
|
2010-01-10 00:33:00 +01:00
|
|
|
which happens when a 'git push' is done on a local repository.
|
2006-03-25 04:21:07 +01:00
|
|
|
It executes on the remote repository once after all the refs have
|
|
|
|
been updated.
|
|
|
|
|
|
|
|
It takes a variable number of parameters, each of which is the
|
|
|
|
name of ref that was actually updated.
|
2005-09-03 06:19:26 +02:00
|
|
|
|
|
|
|
This hook is meant primarily for notification, and cannot affect
|
2008-07-03 07:41:41 +02:00
|
|
|
the outcome of 'git-receive-pack'.
|
2005-09-03 06:19:26 +02:00
|
|
|
|
2006-09-20 12:15:39 +02:00
|
|
|
The 'post-update' hook can tell what are the heads that were pushed,
|
2006-03-25 04:21:07 +01:00
|
|
|
but it does not know what their original and updated values are,
|
2007-05-12 23:43:11 +02:00
|
|
|
so it is a poor place to do log old..new. The
|
|
|
|
<<post-receive,'post-receive'>> hook does get both original and
|
|
|
|
updated values of the refs. You might consider it instead if you need
|
|
|
|
them.
|
2007-05-12 19:11:13 +02:00
|
|
|
|
2006-09-20 12:15:39 +02:00
|
|
|
When enabled, the default 'post-update' hook runs
|
2010-01-10 00:33:00 +01:00
|
|
|
'git update-server-info' to keep the information used by dumb
|
2006-09-20 12:15:39 +02:00
|
|
|
transports (e.g., HTTP) up-to-date. If you are publishing
|
2013-01-21 20:17:53 +01:00
|
|
|
a Git repository that is accessible via HTTP, you should
|
2006-03-25 04:21:07 +01:00
|
|
|
probably enable this hook.
|
2005-12-20 01:35:48 +01:00
|
|
|
|
2007-05-12 19:11:13 +02:00
|
|
|
Both standard output and standard error output are forwarded to
|
2010-01-10 00:33:00 +01:00
|
|
|
'git send-pack' on the other end, so you can simply `echo` messages
|
2007-05-12 23:43:11 +02:00
|
|
|
for the user.
|
2008-04-02 21:34:55 +02:00
|
|
|
|
2014-12-02 00:29:54 +01:00
|
|
|
push-to-checkout
|
|
|
|
~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
This hook is invoked by 'git-receive-pack' on the remote repository,
|
|
|
|
which happens when a 'git push' is done on a local repository, when
|
|
|
|
the push tries to update the branch that is currently checked out
|
|
|
|
and the `receive.denyCurrentBranch` configuration variable is set to
|
|
|
|
`updateInstead`. Such a push by default is refused if the working
|
|
|
|
tree and the index of the remote repository has any difference from
|
|
|
|
the currently checked out commit; when both the working tree and the
|
|
|
|
index match the current commit, they are updated to match the newly
|
|
|
|
pushed tip of the branch. This hook is to be used to override the
|
|
|
|
default behaviour.
|
|
|
|
|
|
|
|
The hook receives the commit with which the tip of the current
|
|
|
|
branch is going to be updated. It can exit with a non-zero status
|
|
|
|
to refuse the push (when it does so, it must not modify the index or
|
|
|
|
the working tree). Or it can make any necessary changes to the
|
|
|
|
working tree and to the index to bring them to the desired state
|
|
|
|
when the tip of the current branch is updated to the new commit, and
|
|
|
|
exit with a zero status.
|
|
|
|
|
|
|
|
For example, the hook can simply run `git read-tree -u -m HEAD "$1"`
|
|
|
|
in order to emulate 'git fetch' that is run in the reverse direction
|
|
|
|
with `git push`, as the two-tree form of `read-tree -u -m` is
|
|
|
|
essentially the same as `git checkout` that switches branches while
|
|
|
|
keeping the local changes in the working tree that do not interfere
|
|
|
|
with the difference between the branches.
|
|
|
|
|
|
|
|
|
2008-04-02 21:34:55 +02:00
|
|
|
pre-auto-gc
|
2009-09-06 12:22:58 +02:00
|
|
|
~~~~~~~~~~~
|
2008-04-02 21:34:55 +02:00
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
This hook is invoked by 'git gc --auto'. It takes no parameter, and
|
|
|
|
exiting with non-zero status from this script causes the 'git gc --auto'
|
2008-04-02 21:34:55 +02:00
|
|
|
to abort.
|
2008-05-02 05:30:47 +02:00
|
|
|
|
2010-03-12 18:04:27 +01:00
|
|
|
post-rewrite
|
|
|
|
~~~~~~~~~~~~
|
|
|
|
|
|
|
|
This hook is invoked by commands that rewrite commits (`git commit
|
|
|
|
--amend`, 'git-rebase'; currently 'git-filter-branch' does 'not' call
|
|
|
|
it!). Its first argument denotes the command it was invoked by:
|
|
|
|
currently one of `amend` or `rebase`. Further command-dependent
|
|
|
|
arguments may be passed in the future.
|
|
|
|
|
|
|
|
The hook receives a list of the rewritten commits on stdin, in the
|
|
|
|
format
|
|
|
|
|
|
|
|
<old-sha1> SP <new-sha1> [ SP <extra-info> ] LF
|
|
|
|
|
|
|
|
The 'extra-info' is again command-dependent. If it is empty, the
|
|
|
|
preceding SP is also omitted. Currently, no commands pass any
|
|
|
|
'extra-info'.
|
|
|
|
|
2010-03-12 18:04:32 +01:00
|
|
|
The hook always runs after the automatic note copying (see
|
2016-03-21 19:38:34 +01:00
|
|
|
"notes.rewrite.<command>" in linkgit:git-config[1]) has happened, and
|
2010-03-12 18:04:32 +01:00
|
|
|
thus has access to these notes.
|
|
|
|
|
2010-03-12 18:04:27 +01:00
|
|
|
The following command-specific comments apply:
|
|
|
|
|
|
|
|
rebase::
|
|
|
|
For the 'squash' and 'fixup' operation, all commits that were
|
|
|
|
squashed are listed as being rewritten to the squashed commit.
|
|
|
|
This means that there will be several lines sharing the same
|
|
|
|
'new-sha1'.
|
|
|
|
+
|
|
|
|
The commits are guaranteed to be listed in the order that they were
|
|
|
|
processed by rebase.
|
|
|
|
|
|
|
|
|
2008-05-02 05:30:47 +02:00
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|