blob: 25702ed73072f7375a08294a024e076862a5a170 [file] [log] [blame]
Junio C Hamano2a245012005-07-14 00:10:05 -07001git-receive-pack(1)
2===================
Junio C Hamano2a245012005-07-14 00:10:05 -07003
4NAME
5----
Junio C Hamanoc3f0baa2007-01-18 15:53:37 -08006git-receive-pack - Receive what is pushed into the repository
Junio C Hamano2a245012005-07-14 00:10:05 -07007
8
9SYNOPSIS
10--------
Martin von Zweigbergk7791a1d2011-07-01 22:38:26 -040011[verse]
Junio C Hamano5a277f32011-09-06 11:06:32 -070012'git-receive-pack' <directory>
Junio C Hamano2a245012005-07-14 00:10:05 -070013
14DESCRIPTION
15-----------
Thomas Rast0b444cd2010-01-10 00:33:00 +010016Invoked by 'git send-pack' and updates the repository with the
Junio C Hamano2a245012005-07-14 00:10:05 -070017information fed from the remote end.
18
19This command is usually not invoked directly by the end user.
Thomas Rast0b444cd2010-01-10 00:33:00 +010020The UI for the protocol is on the 'git send-pack' side, and the
Junio C Hamano2a245012005-07-14 00:10:05 -070021program pair is meant to be used to push updates to remote
Jonathan Nieder483bc4f2008-06-30 13:56:34 -050022repository. For pull operations, see linkgit:git-fetch-pack[1].
Junio C Hamano2a245012005-07-14 00:10:05 -070023
Felipe Contrerasa75d7b52009-10-24 11:31:32 +030024The command allows for creation and fast-forwarding of sha1 refs
Josef Weidendorferb1bf95b2005-07-31 21:17:43 +020025(heads/tags) on the remote end (strictly speaking, it is the
Jonathan Niederba020ef2008-07-03 00:41:41 -050026local end 'git-receive-pack' runs, but to the user who is sitting at
Josef Weidendorferb1bf95b2005-07-31 21:17:43 +020027the send-pack end, it is updating the remote. Confused?)
28
Junio C Hamanoeb0362a2005-12-05 00:32:01 -080029There are other real-world examples of using update and
30post-update hooks found in the Documentation/howto directory.
31
Jonathan Niederba020ef2008-07-03 00:41:41 -050032'git-receive-pack' honours the receive.denyNonFastForwards config
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -050033option, which tells it if updates to a ref should be denied if they
34are not fast-forwards.
Junio C Hamanoeb0362a2005-12-05 00:32:01 -080035
Jeff Kingc08db5a2016-08-24 20:41:57 +020036A number of other receive.* config options are available to tweak
37its behavior, see linkgit:git-config[1].
38
Junio C Hamano2a245012005-07-14 00:10:05 -070039OPTIONS
40-------
41<directory>::
42 The repository to sync into.
43
Nguyễn Thái Ngọc Duy76a87882018-04-30 17:35:33 +020044PRE-RECEIVE HOOK
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -050045----------------
46Before any ref is updated, if $GIT_DIR/hooks/pre-receive file exists
Shawn O. Pearcef43cd492007-03-10 03:28:16 -050047and 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:
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -050049
Shawn O. Pearcef43cd492007-03-10 03:28:16 -050050 sha1-old SP sha1-new SP refname LF
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -050051
Shawn O. Pearcef43cd492007-03-10 03:28:16 -050052The refname value is relative to $GIT_DIR; e.g. for the master
53head this is "refs/heads/master". The two sha1 values before
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -050054each refname are the object names for the refname before and after
Jeff King967506b2007-07-02 01:24:59 -040055the 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
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -050057sha1-old and sha1-new should be valid objects in the repository.
58
Junio C Hamanoa85b3772014-09-12 11:17:07 -070059When accepting a signed push (see linkgit:git-push[1]), the signed
60push certificate is stored in a blob and an environment variable
61`GIT_PUSH_CERT` can be consulted for its object name. See the
Junio C Hamanod05b9612014-08-14 15:59:21 -070062description of `post-receive` hook for an example. In addition, the
63certificate is verified using GPG and the result is exported with
64the following environment variables:
65
66`GIT_PUSH_CERT_SIGNER`::
67 The name and the e-mail address of the owner of the key that
68 signed the push certificate.
69
70`GIT_PUSH_CERT_KEY`::
71 The GPG key ID of the key that signed the push certificate.
72
73`GIT_PUSH_CERT_STATUS`::
74 The status of GPG verification of the push certificate,
75 using the same mnemonic as used in `%G?` format of `git log`
76 family of commands (see linkgit:git-log[1]).
Junio C Hamanoa85b3772014-09-12 11:17:07 -070077
Junio C Hamanob89363e2014-08-21 16:45:30 -070078`GIT_PUSH_CERT_NONCE`::
79 The nonce string the process asked the signer to include
80 in the push certificate. If this does not match the value
81 recorded on the "nonce" header in the push certificate, it
82 may indicate that the certificate is a valid one that is
83 being replayed from a separate "git push" session.
84
85`GIT_PUSH_CERT_NONCE_STATUS`::
86`UNSOLICITED`;;
87 "git push --signed" sent a nonce when we did not ask it to
88 send one.
89`MISSING`;;
90 "git push --signed" did not send any nonce header.
91`BAD`;;
92 "git push --signed" sent a bogus nonce.
93`OK`;;
94 "git push --signed" sent the nonce we asked it to send.
Junio C Hamano57323732014-09-05 10:46:04 -070095`SLOP`;;
96 "git push --signed" sent a nonce different from what we
97 asked it to send now, but in a previous session. See
98 `GIT_PUSH_CERT_NONCE_SLOP` environment variable.
99
100`GIT_PUSH_CERT_NONCE_SLOP`::
101 "git push --signed" sent a nonce different from what we
102 asked it to send now, but in a different session whose
103 starting time is different by this many seconds from the
104 current session. Only meaningful when
105 `GIT_PUSH_CERT_NONCE_STATUS` says `SLOP`.
Nguyễn Thái Ngọc Duyda0005b2015-03-11 16:32:45 -0400106 Also read about `receive.certNonceSlop` variable in
Junio C Hamano57323732014-09-05 10:46:04 -0700107 linkgit:git-config[1].
Junio C Hamanob89363e2014-08-21 16:45:30 -0700108
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -0500109This hook is called before any refname is updated and before any
110fast-forward checks are performed.
111
112If the pre-receive hook exits with a non-zero exit status no updates
113will be performed, and the update, post-receive and post-update
114hooks will not be invoked either. This can be useful to quickly
115bail out if the update is not to be supported.
116
Jeff Kingeaeed072017-04-10 18:13:39 -0400117See the notes on the quarantine environment below.
118
Nguyễn Thái Ngọc Duy76a87882018-04-30 17:35:33 +0200119UPDATE HOOK
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -0500120-----------
121Before each ref is updated, if $GIT_DIR/hooks/update file exists
122and is executable, it is invoked once per ref, with three parameters:
123
124 $GIT_DIR/hooks/update refname sha1-old sha1-new
125
126The refname parameter is relative to $GIT_DIR; e.g. for the master
127head this is "refs/heads/master". The two sha1 arguments are
128the object names for the refname before and after the update.
129Note that the hook is called before the refname is updated,
Jeff King967506b2007-07-02 01:24:59 -0400130so either sha1-old is 0\{40} (meaning there is no such ref yet),
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -0500131or it should match what is recorded in refname.
132
133The hook should exit with non-zero status if it wants to disallow
134updating the named ref. Otherwise it should exit with zero.
135
136Successful execution (a zero exit status) of this hook does not
Brian Hetro02783072007-08-23 20:44:13 -0400137ensure the ref will actually be updated, it is only a prerequisite.
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -0500138As such it is not a good idea to send notices (e.g. email) from
139this hook. Consider using the post-receive hook instead.
140
Nguyễn Thái Ngọc Duy76a87882018-04-30 17:35:33 +0200141POST-RECEIVE HOOK
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -0500142-----------------
143After all refs were updated (or attempted to be updated), if any
144ref update was successful, and if $GIT_DIR/hooks/post-receive
Markus Heidelberg04c8ce92008-12-19 13:14:18 +0100145file exists and is executable, it will be invoked once with no
Shawn O. Pearcef43cd492007-03-10 03:28:16 -0500146parameters. The standard input of the hook will be one line
147for each successfully updated ref:
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -0500148
Shawn O. Pearcef43cd492007-03-10 03:28:16 -0500149 sha1-old SP sha1-new SP refname LF
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -0500150
Shawn O. Pearcef43cd492007-03-10 03:28:16 -0500151The refname value is relative to $GIT_DIR; e.g. for the master
152head this is "refs/heads/master". The two sha1 values before
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -0500153each refname are the object names for the refname before and after
154the update. Refs that were created will have sha1-old equal to
Jeff King967506b2007-07-02 01:24:59 -04001550\{40}, while refs that were deleted will have sha1-new equal to
1560\{40}, otherwise sha1-old and sha1-new should be valid objects in
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -0500157the repository.
158
Junio C Hamanod05b9612014-08-14 15:59:21 -0700159The `GIT_PUSH_CERT*` environment variables can be inspected, just as
Junio C Hamanoa85b3772014-09-12 11:17:07 -0700160in `pre-receive` hook, after accepting a signed push.
161
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -0500162Using this hook, it is easy to generate mails describing the updates
163to the repository. This example script sends one mail message per
Junio C Hamanoa85b3772014-09-12 11:17:07 -0700164ref listing the commits pushed to the repository, and logs the push
Junio C Hamanod05b9612014-08-14 15:59:21 -0700165certificates of signed pushes with good signatures to a logger
Junio C Hamanoa85b3772014-09-12 11:17:07 -0700166service:
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -0500167
Martin Ågren38cadf92019-09-07 16:12:51 +0200168----
169#!/bin/sh
170# mail out commit update information.
171while read oval nval ref
172do
173 if expr "$oval" : '0*$' >/dev/null
Junio C Hamanoa85b3772014-09-12 11:17:07 -0700174 then
Martin Ågren38cadf92019-09-07 16:12:51 +0200175 echo "Created a new ref, with the following commits:"
176 git rev-list --pretty "$nval"
177 else
178 echo "New commits:"
179 git rev-list --pretty "$nval" "^$oval"
180 fi |
181 mail -s "Changes to ref $ref" commit-list@mydomain
182done
183# log signed push certificate, if any
184if test -n "${GIT_PUSH_CERT-}" && test ${GIT_PUSH_CERT_STATUS} = G
185then
186 (
187 echo expected nonce is ${GIT_PUSH_NONCE}
188 git cat-file blob ${GIT_PUSH_CERT}
189 ) | mail -s "push certificate from $GIT_PUSH_CERT_SIGNER" push-log@mydomain
190fi
191exit 0
192----
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -0500193
194The exit code from this hook invocation is ignored, however a
195non-zero exit code will generate an error message.
196
197Note that it is possible for refname to not have sha1-new when this
198hook runs. This can easily occur if another user modifies the ref
Jonathan Niederba020ef2008-07-03 00:41:41 -0500199after it was updated by 'git-receive-pack', but before the hook was able
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -0500200to evaluate it. It is recommended that hooks rely on sha1-new
201rather than the current value of refname.
202
Nguyễn Thái Ngọc Duy76a87882018-04-30 17:35:33 +0200203POST-UPDATE HOOK
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -0500204----------------
205After all other processing, if at least one ref was updated, and
206if $GIT_DIR/hooks/post-update file exists and is executable, then
Markus Heidelberg04c8ce92008-12-19 13:14:18 +0100207post-update will be called with the list of refs that have been updated.
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -0500208This can be used to implement any repository wide cleanup tasks.
209
210The exit code from this hook invocation is ignored; the only thing
Jonathan Niederba020ef2008-07-03 00:41:41 -0500211left for 'git-receive-pack' to do at that point is to exit itself
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -0500212anyway.
213
Jonathan Nieder483bc4f2008-06-30 13:56:34 -0500214This hook can be used, for example, to run `git update-server-info`
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -0500215if the repository is packed and is served via a dumb transport.
216
Martin Ågren38cadf92019-09-07 16:12:51 +0200217----
218#!/bin/sh
219exec git update-server-info
220----
Shawn O. Pearce05ef58e2007-03-07 16:52:05 -0500221
Junio C Hamano6d35cc72005-09-02 21:19:26 -0700222
Nguyễn Thái Ngọc Duy76a87882018-04-30 17:35:33 +0200223QUARANTINE ENVIRONMENT
Jeff Kingeaeed072017-04-10 18:13:39 -0400224----------------------
225
226When `receive-pack` takes in objects, they are placed into a temporary
227"quarantine" directory within the `$GIT_DIR/objects` directory and
228migrated into the main object store only after the `pre-receive` hook
229has completed. If the push fails before then, the temporary directory is
230removed entirely.
231
232This has a few user-visible effects and caveats:
233
234 1. Pushes which fail due to problems with the incoming pack, missing
235 objects, or due to the `pre-receive` hook will not leave any
236 on-disk data. This is usually helpful to prevent repeated failed
237 pushes from filling up your disk, but can make debugging more
238 challenging.
239
240 2. Any objects created by the `pre-receive` hook will be created in
241 the quarantine directory (and migrated only if it succeeds).
242
243 3. The `pre-receive` hook MUST NOT update any refs to point to
244 quarantined objects. Other programs accessing the repository will
245 not be able to see the objects (and if the pre-receive hook fails,
Jeff Kingd8f44812017-04-10 18:14:12 -0400246 those refs would become corrupted). For safety, any ref updates
247 from within `pre-receive` are automatically rejected.
Jeff Kingeaeed072017-04-10 18:13:39 -0400248
249
Junio C Hamano6d35cc72005-09-02 21:19:26 -0700250SEE ALSO
251--------
Josh Triplettd49483f2011-07-08 16:14:10 -0700252linkgit:git-send-pack[1], linkgit:gitnamespaces[7]
Junio C Hamano6d35cc72005-09-02 21:19:26 -0700253
Junio C Hamano2a245012005-07-14 00:10:05 -0700254GIT
255---
Christian Couder9e1f0a82008-06-06 09:07:32 +0200256Part of the linkgit:git[1] suite