blob: a3a1d8eea3ec733d155475f2d6216e1e71245f10 [file] [log] [blame]
Junio C Hamano1a4e8412005-12-27 08:17:231git-receive-pack(1)
2===================
3
4NAME
5----
Junio C Hamano7c73c662007-01-19 00:37:506git-receive-pack - Receive what is pushed into the repository
Junio C Hamano1a4e8412005-12-27 08:17:237
8
9SYNOPSIS
10--------
Junio C Hamano15567bc2011-07-23 00:51:5911[verse]
Junio C Hamanof7279012011-08-18 06:13:1312'git-receive-pack' [--quiet] <directory>
Junio C Hamano1a4e8412005-12-27 08:17:2313
14DESCRIPTION
15-----------
Junio C Hamano1aa40d22010-01-21 17:46:4316Invoked by 'git send-pack' and updates the repository with the
Junio C Hamano1a4e8412005-12-27 08:17:2317information fed from the remote end.
18
19This command is usually not invoked directly by the end user.
Junio C Hamano1aa40d22010-01-21 17:46:4320The UI for the protocol is on the 'git send-pack' side, and the
Junio C Hamano1a4e8412005-12-27 08:17:2321program pair is meant to be used to push updates to remote
Junio C Hamanofce7c7e2008-07-02 03:06:3822repository. For pull operations, see linkgit:git-fetch-pack[1].
Junio C Hamano1a4e8412005-12-27 08:17:2323
Junio C Hamano3f680f32009-11-16 02:10:5424The command allows for creation and fast-forwarding of sha1 refs
Junio C Hamano1a4e8412005-12-27 08:17:2325(heads/tags) on the remote end (strictly speaking, it is the
Junio C Hamanoba4b9282008-07-06 05:20:3126local end 'git-receive-pack' runs, but to the user who is sitting at
Junio C Hamano1a4e8412005-12-27 08:17:2327the send-pack end, it is updating the remote. Confused?)
28
Junio C Hamano1a4e8412005-12-27 08:17:2329There are other real-world examples of using update and
30post-update hooks found in the Documentation/howto directory.
31
Junio C Hamanoba4b9282008-07-06 05:20:3132'git-receive-pack' honours the receive.denyNonFastForwards config
Junio C Hamanoabcd65d2007-03-08 02:43:0033option, which tells it if updates to a ref should be denied if they
34are not fast-forwards.
Junio C Hamano1a4e8412005-12-27 08:17:2335
36OPTIONS
37-------
Junio C Hamanof7279012011-08-18 06:13:1338--quiet::
39Print only error messages.
40
Junio C Hamano1a4e8412005-12-27 08:17:2341<directory>::
42The repository to sync into.
43
Junio C Hamanoabcd65d2007-03-08 02:43:0044pre-receive Hook
45----------------
46Before any ref is updated, if $GIT_DIR/hooks/pre-receive file exists
Junio C Hamanoc51fede2007-03-12 07:29:2047and is executable, it will be invoked once with no parameters. The
48standard input of the hook will be one line per ref to be updated:
Junio C Hamanoabcd65d2007-03-08 02:43:0049
Junio C Hamanoc51fede2007-03-12 07:29:2050 sha1-old SP sha1-new SP refname LF
Junio C Hamanoabcd65d2007-03-08 02:43:0051
Junio C Hamanoc51fede2007-03-12 07:29:2052The refname value is relative to $GIT_DIR; e.g. for the master
53head this is "refs/heads/master". The two sha1 values before
Junio C Hamanoabcd65d2007-03-08 02:43:0054each refname are the object names for the refname before and after
Junio C Hamano1d90cb02007-07-03 07:05:3155the update. Refs to be created will have sha1-old equal to 0\{40},
56while refs to be deleted will have sha1-new equal to 0\{40}, otherwise
Junio C Hamanoabcd65d2007-03-08 02:43:0057sha1-old and sha1-new should be valid objects in the repository.
58
59This hook is called before any refname is updated and before any
60fast-forward checks are performed.
61
62If the pre-receive hook exits with a non-zero exit status no updates
63will be performed, and the update, post-receive and post-update
64hooks will not be invoked either. This can be useful to quickly
65bail out if the update is not to be supported.
66
67update Hook
68-----------
69Before each ref is updated, if $GIT_DIR/hooks/update file exists
70and is executable, it is invoked once per ref, with three parameters:
71
72 $GIT_DIR/hooks/update refname sha1-old sha1-new
73
74The refname parameter is relative to $GIT_DIR; e.g. for the master
75head this is "refs/heads/master". The two sha1 arguments are
76the object names for the refname before and after the update.
77Note that the hook is called before the refname is updated,
Junio C Hamano1d90cb02007-07-03 07:05:3178so either sha1-old is 0\{40} (meaning there is no such ref yet),
Junio C Hamanoabcd65d2007-03-08 02:43:0079or it should match what is recorded in refname.
80
81The hook should exit with non-zero status if it wants to disallow
82updating the named ref. Otherwise it should exit with zero.
83
84Successful execution (a zero exit status) of this hook does not
Junio C Hamanoa6387422007-08-25 03:54:2785ensure the ref will actually be updated, it is only a prerequisite.
Junio C Hamanoabcd65d2007-03-08 02:43:0086As such it is not a good idea to send notices (e.g. email) from
87this hook. Consider using the post-receive hook instead.
88
89post-receive Hook
90-----------------
91After all refs were updated (or attempted to be updated), if any
92ref update was successful, and if $GIT_DIR/hooks/post-receive
Junio C Hamano54bf1e22008-12-20 06:30:1193file exists and is executable, it will be invoked once with no
Junio C Hamanoc51fede2007-03-12 07:29:2094parameters. The standard input of the hook will be one line
95for each successfully updated ref:
Junio C Hamanoabcd65d2007-03-08 02:43:0096
Junio C Hamanoc51fede2007-03-12 07:29:2097 sha1-old SP sha1-new SP refname LF
Junio C Hamanoabcd65d2007-03-08 02:43:0098
Junio C Hamanoc51fede2007-03-12 07:29:2099The refname value is relative to $GIT_DIR; e.g. for the master
100head this is "refs/heads/master". The two sha1 values before
Junio C Hamanoabcd65d2007-03-08 02:43:00101each refname are the object names for the refname before and after
102the update. Refs that were created will have sha1-old equal to
Junio C Hamano1d90cb02007-07-03 07:05:311030\{40}, while refs that were deleted will have sha1-new equal to
1040\{40}, otherwise sha1-old and sha1-new should be valid objects in
Junio C Hamanoabcd65d2007-03-08 02:43:00105the repository.
106
107Using this hook, it is easy to generate mails describing the updates
108to the repository. This example script sends one mail message per
109ref listing the commits pushed to the repository:
110
111#!/bin/sh
112# mail out commit update information.
Junio C Hamanoc51fede2007-03-12 07:29:20113while read oval nval ref
Junio C Hamanoabcd65d2007-03-08 02:43:00114do
Junio C Hamanoc51fede2007-03-12 07:29:20115if expr "$oval" : '0*$' >/dev/null
Junio C Hamanoabcd65d2007-03-08 02:43:00116then
117echo "Created a new ref, with the following commits:"
Junio C Hamanofce7c7e2008-07-02 03:06:38118git rev-list --pretty "$nval"
Junio C Hamanoabcd65d2007-03-08 02:43:00119else
120echo "New commits:"
Junio C Hamanofce7c7e2008-07-02 03:06:38121git rev-list --pretty "$nval" "^$oval"
Junio C Hamanoabcd65d2007-03-08 02:43:00122fi |
Junio C Hamanoc51fede2007-03-12 07:29:20123mail -s "Changes to ref $ref" commit-list@mydomain
Junio C Hamanoabcd65d2007-03-08 02:43:00124done
125exit 0
126
127The exit code from this hook invocation is ignored, however a
128non-zero exit code will generate an error message.
129
130Note that it is possible for refname to not have sha1-new when this
131hook runs. This can easily occur if another user modifies the ref
Junio C Hamanoba4b9282008-07-06 05:20:31132after it was updated by 'git-receive-pack', but before the hook was able
Junio C Hamanoabcd65d2007-03-08 02:43:00133to evaluate it. It is recommended that hooks rely on sha1-new
134rather than the current value of refname.
135
136post-update Hook
137----------------
138After all other processing, if at least one ref was updated, and
139if $GIT_DIR/hooks/post-update file exists and is executable, then
Junio C Hamano54bf1e22008-12-20 06:30:11140post-update will be called with the list of refs that have been updated.
Junio C Hamanoabcd65d2007-03-08 02:43:00141This can be used to implement any repository wide cleanup tasks.
142
143The exit code from this hook invocation is ignored; the only thing
Junio C Hamanoba4b9282008-07-06 05:20:31144left for 'git-receive-pack' to do at that point is to exit itself
Junio C Hamanoabcd65d2007-03-08 02:43:00145anyway.
146
Junio C Hamanofce7c7e2008-07-02 03:06:38147This hook can be used, for example, to run `git update-server-info`
Junio C Hamanoabcd65d2007-03-08 02:43:00148if the repository is packed and is served via a dumb transport.
149
150#!/bin/sh
Junio C Hamanofce7c7e2008-07-02 03:06:38151exec git update-server-info
Junio C Hamanoabcd65d2007-03-08 02:43:00152
Junio C Hamano1a4e8412005-12-27 08:17:23153
154SEE ALSO
155--------
Junio C Hamanof7279012011-08-18 06:13:13156linkgit:git-send-pack[1], linkgit:gitnamespaces[7]
Junio C Hamano1a4e8412005-12-27 08:17:23157
Junio C Hamano1a4e8412005-12-27 08:17:23158GIT
159---
Junio C Hamanof7c042d2008-06-06 22:50:53160Part of the linkgit:git[1] suite