]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-receive-pack.txt
propagate --quiet to send-pack/receive-pack
[thirdparty/git.git] / Documentation / git-receive-pack.txt
CommitLineData
2a245013
JH
1git-receive-pack(1)
2===================
2a245013
JH
3
4NAME
5----
c3f0baac 6git-receive-pack - Receive what is pushed into the repository
2a245013
JH
7
8
9SYNOPSIS
10--------
90a6c7d4 11'git-receive-pack' [--quiet] <directory>
2a245013
JH
12
13DESCRIPTION
14-----------
0b444cdb 15Invoked by 'git send-pack' and updates the repository with the
2a245013
JH
16information fed from the remote end.
17
18This command is usually not invoked directly by the end user.
0b444cdb 19The UI for the protocol is on the 'git send-pack' side, and the
2a245013 20program pair is meant to be used to push updates to remote
483bc4f0 21repository. For pull operations, see linkgit:git-fetch-pack[1].
2a245013 22
a75d7b54 23The command allows for creation and fast-forwarding of sha1 refs
b1bf95bb 24(heads/tags) on the remote end (strictly speaking, it is the
ba020ef5 25local end 'git-receive-pack' runs, but to the user who is sitting at
b1bf95bb
JW
26the send-pack end, it is updating the remote. Confused?)
27
05ef58ec
SP
28There are other real-world examples of using update and
29post-update hooks found in the Documentation/howto directory.
b1bf95bb 30
ba020ef5 31'git-receive-pack' honours the receive.denyNonFastForwards config
05ef58ec
SP
32option, which tells it if updates to a ref should be denied if they
33are not fast-forwards.
34
35OPTIONS
36-------
90a6c7d4
CB
37--quiet::
38 Print only error messages.
39
05ef58ec
SP
40<directory>::
41 The repository to sync into.
42
43pre-receive Hook
44----------------
45Before any ref is updated, if $GIT_DIR/hooks/pre-receive file exists
f43cd49f
SP
46and is executable, it will be invoked once with no parameters. The
47standard input of the hook will be one line per ref to be updated:
05ef58ec 48
f43cd49f 49 sha1-old SP sha1-new SP refname LF
05ef58ec 50
f43cd49f
SP
51The refname value is relative to $GIT_DIR; e.g. for the master
52head this is "refs/heads/master". The two sha1 values before
05ef58ec 53each refname are the object names for the refname before and after
967506bb
JK
54the update. Refs to be created will have sha1-old equal to 0\{40},
55while refs to be deleted will have sha1-new equal to 0\{40}, otherwise
05ef58ec
SP
56sha1-old and sha1-new should be valid objects in the repository.
57
58This hook is called before any refname is updated and before any
59fast-forward checks are performed.
60
61If the pre-receive hook exits with a non-zero exit status no updates
62will be performed, and the update, post-receive and post-update
63hooks will not be invoked either. This can be useful to quickly
64bail out if the update is not to be supported.
b1bf95bb 65
05ef58ec
SP
66update Hook
67-----------
68Before each ref is updated, if $GIT_DIR/hooks/update file exists
69and is executable, it is invoked once per ref, with three parameters:
b1bf95bb 70
05ef58ec 71 $GIT_DIR/hooks/update refname sha1-old sha1-new
b1bf95bb 72
05ef58ec
SP
73The refname parameter is relative to $GIT_DIR; e.g. for the master
74head this is "refs/heads/master". The two sha1 arguments are
75the object names for the refname before and after the update.
76Note that the hook is called before the refname is updated,
967506bb 77so either sha1-old is 0\{40} (meaning there is no such ref yet),
05ef58ec
SP
78or it should match what is recorded in refname.
79
80The hook should exit with non-zero status if it wants to disallow
81updating the named ref. Otherwise it should exit with zero.
82
83Successful execution (a zero exit status) of this hook does not
02783075 84ensure the ref will actually be updated, it is only a prerequisite.
05ef58ec
SP
85As such it is not a good idea to send notices (e.g. email) from
86this hook. Consider using the post-receive hook instead.
87
88post-receive Hook
89-----------------
90After all refs were updated (or attempted to be updated), if any
91ref update was successful, and if $GIT_DIR/hooks/post-receive
04c8ce9c 92file exists and is executable, it will be invoked once with no
f43cd49f
SP
93parameters. The standard input of the hook will be one line
94for each successfully updated ref:
05ef58ec 95
f43cd49f 96 sha1-old SP sha1-new SP refname LF
05ef58ec 97
f43cd49f
SP
98The refname value is relative to $GIT_DIR; e.g. for the master
99head this is "refs/heads/master". The two sha1 values before
05ef58ec
SP
100each refname are the object names for the refname before and after
101the update. Refs that were created will have sha1-old equal to
967506bb
JK
1020\{40}, while refs that were deleted will have sha1-new equal to
1030\{40}, otherwise sha1-old and sha1-new should be valid objects in
05ef58ec
SP
104the repository.
105
106Using this hook, it is easy to generate mails describing the updates
107to the repository. This example script sends one mail message per
108ref listing the commits pushed to the repository:
b1bf95bb
JW
109
110 #!/bin/sh
19614330 111 # mail out commit update information.
f43cd49f 112 while read oval nval ref
05ef58ec 113 do
f43cd49f 114 if expr "$oval" : '0*$' >/dev/null
05ef58ec
SP
115 then
116 echo "Created a new ref, with the following commits:"
b1889c36 117 git rev-list --pretty "$nval"
05ef58ec
SP
118 else
119 echo "New commits:"
b1889c36 120 git rev-list --pretty "$nval" "^$oval"
05ef58ec 121 fi |
f43cd49f 122 mail -s "Changes to ref $ref" commit-list@mydomain
05ef58ec 123 done
b1bf95bb 124 exit 0
2a245013 125
05ef58ec
SP
126The exit code from this hook invocation is ignored, however a
127non-zero exit code will generate an error message.
19614330 128
05ef58ec
SP
129Note that it is possible for refname to not have sha1-new when this
130hook runs. This can easily occur if another user modifies the ref
ba020ef5 131after it was updated by 'git-receive-pack', but before the hook was able
05ef58ec
SP
132to evaluate it. It is recommended that hooks rely on sha1-new
133rather than the current value of refname.
19614330 134
05ef58ec
SP
135post-update Hook
136----------------
137After all other processing, if at least one ref was updated, and
138if $GIT_DIR/hooks/post-update file exists and is executable, then
04c8ce9c 139post-update will be called with the list of refs that have been updated.
05ef58ec 140This can be used to implement any repository wide cleanup tasks.
eb0362a4 141
05ef58ec 142The exit code from this hook invocation is ignored; the only thing
ba020ef5 143left for 'git-receive-pack' to do at that point is to exit itself
05ef58ec 144anyway.
eb0362a4 145
483bc4f0 146This hook can be used, for example, to run `git update-server-info`
05ef58ec
SP
147if the repository is packed and is served via a dumb transport.
148
149 #!/bin/sh
b1889c36 150 exec git update-server-info
2a245013 151
6d35cc76
JH
152
153SEE ALSO
154--------
5162e697 155linkgit:git-send-pack[1]
6d35cc76 156
2a245013
JH
157GIT
158---
9e1f0a85 159Part of the linkgit:git[1] suite