1git-receive-pack(1) 2=================== 3 4NAME 5---- 6git-receive-pack - Receive what is pushed into the repository 7 8 9SYNOPSIS 10-------- 11[verse] 12'git-receive-pack' <directory> 13 14DESCRIPTION 15----------- 16Invoked by 'git send-pack' and updates the repository with the 17information fed from the remote end. 18 19This command is usually not invoked directly by the end user. 20The UI for the protocol is on the 'git send-pack' side, and the 21program pair is meant to be used to push updates to remote 22repository. For pull operations, see linkgit:git-fetch-pack[1]. 23 24The command allows for creation and fast-forwarding of sha1 refs 25(heads/tags) on the remote end (strictly speaking, it is the 26local end 'git-receive-pack' runs, but to the user who is sitting at 27the send-pack end, it is updating the remote. Confused?) 28 29There are other real-world examples of using update and 30post-update hooks found in the Documentation/howto directory. 31 32'git-receive-pack' honours the receive.denyNonFastForwards config 33option, which tells it if updates to a ref should be denied if they 34are not fast-forwards. 35 36OPTIONS 37------- 38<directory>:: 39 The repository to sync into. 40 41pre-receive Hook 42---------------- 43Before any ref is updated, if $GIT_DIR/hooks/pre-receive file exists 44and is executable, it will be invoked once with no parameters. The 45standard input of the hook will be one line per ref to be updated: 46 47 sha1-old SP sha1-new SP refname LF 48 49The refname value is relative to $GIT_DIR; e.g. for the master 50head this is "refs/heads/master". The two sha1 values before 51each refname are the object names for the refname before and after 52the update. Refs to be created will have sha1-old equal to 0\{40}, 53while refs to be deleted will have sha1-new equal to 0\{40}, otherwise 54sha1-old and sha1-new should be valid objects in the repository. 55 56When accepting a signed push (see linkgit:git-push[1]), the signed 57push certificate is stored in a blob and an environment variable 58`GIT_PUSH_CERT` can be consulted for its object name. See the 59description of `post-receive` hook for an example. In addition, the 60certificate is verified using GPG and the result is exported with 61the following environment variables: 62 63`GIT_PUSH_CERT_SIGNER`:: 64 The name and the e-mail address of the owner of the key that 65 signed the push certificate. 66 67`GIT_PUSH_CERT_KEY`:: 68 The GPG key ID of the key that signed the push certificate. 69 70`GIT_PUSH_CERT_STATUS`:: 71 The status of GPG verification of the push certificate, 72 using the same mnemonic as used in `%G?` format of `git log` 73 family of commands (see linkgit:git-log[1]). 74 75`GIT_PUSH_CERT_NONCE`:: 76 The nonce string the process asked the signer to include 77 in the push certificate. If this does not match the value 78 recorded on the "nonce" header in the push certificate, it 79 may indicate that the certificate is a valid one that is 80 being replayed from a separate "git push" session. 81 82`GIT_PUSH_CERT_NONCE_STATUS`:: 83`UNSOLICITED`;; 84 "git push --signed" sent a nonce when we did not ask it to 85 send one. 86`MISSING`;; 87 "git push --signed" did not send any nonce header. 88`BAD`;; 89 "git push --signed" sent a bogus nonce. 90`OK`;; 91 "git push --signed" sent the nonce we asked it to send. 92 93This hook is called before any refname is updated and before any 94fast-forward checks are performed. 95 96If the pre-receive hook exits with a non-zero exit status no updates 97will be performed, and the update, post-receive and post-update 98hooks will not be invoked either. This can be useful to quickly 99bail out if the update is not to be supported. 100 101update Hook 102----------- 103Before each ref is updated, if $GIT_DIR/hooks/update file exists 104and is executable, it is invoked once per ref, with three parameters: 105 106 $GIT_DIR/hooks/update refname sha1-old sha1-new 107 108The refname parameter is relative to $GIT_DIR; e.g. for the master 109head this is "refs/heads/master". The two sha1 arguments are 110the object names for the refname before and after the update. 111Note that the hook is called before the refname is updated, 112so either sha1-old is 0\{40} (meaning there is no such ref yet), 113or it should match what is recorded in refname. 114 115The hook should exit with non-zero status if it wants to disallow 116updating the named ref. Otherwise it should exit with zero. 117 118Successful execution (a zero exit status) of this hook does not 119ensure the ref will actually be updated, it is only a prerequisite. 120As such it is not a good idea to send notices (e.g. email) from 121this hook. Consider using the post-receive hook instead. 122 123post-receive Hook 124----------------- 125After all refs were updated (or attempted to be updated), if any 126ref update was successful, and if $GIT_DIR/hooks/post-receive 127file exists and is executable, it will be invoked once with no 128parameters. The standard input of the hook will be one line 129for each successfully updated ref: 130 131 sha1-old SP sha1-new SP refname LF 132 133The refname value is relative to $GIT_DIR; e.g. for the master 134head this is "refs/heads/master". The two sha1 values before 135each refname are the object names for the refname before and after 136the update. Refs that were created will have sha1-old equal to 1370\{40}, while refs that were deleted will have sha1-new equal to 1380\{40}, otherwise sha1-old and sha1-new should be valid objects in 139the repository. 140 141The `GIT_PUSH_CERT*` environment variables can be inspected, just as 142in `pre-receive` hook, after accepting a signed push. 143 144Using this hook, it is easy to generate mails describing the updates 145to the repository. This example script sends one mail message per 146ref listing the commits pushed to the repository, and logs the push 147certificates of signed pushes with good signatures to a logger 148service: 149 150 #!/bin/sh 151 # mail out commit update information. 152 while read oval nval ref 153 do 154 if expr "$oval" : '0*$' >/dev/null 155 then 156 echo "Created a new ref, with the following commits:" 157 git rev-list --pretty "$nval" 158 else 159 echo "New commits:" 160 git rev-list --pretty "$nval" "^$oval" 161 fi | 162 mail -s "Changes to ref $ref" commit-list@mydomain 163 done 164 # log signed push certificate, if any 165 if test -n "${GIT_PUSH_CERT-}" && test ${GIT_PUSH_CERT_STATUS} = G 166 then 167 ( 168 echo expected nonce is ${GIT_PUSH_NONCE} 169 git cat-file blob ${GIT_PUSH_CERT} 170 ) | mail -s "push certificate from $GIT_PUSH_CERT_SIGNER" push-log@mydomain 171 fi 172 exit 0 173 174The exit code from this hook invocation is ignored, however a 175non-zero exit code will generate an error message. 176 177Note that it is possible for refname to not have sha1-new when this 178hook runs. This can easily occur if another user modifies the ref 179after it was updated by 'git-receive-pack', but before the hook was able 180to evaluate it. It is recommended that hooks rely on sha1-new 181rather than the current value of refname. 182 183post-update Hook 184---------------- 185After all other processing, if at least one ref was updated, and 186if $GIT_DIR/hooks/post-update file exists and is executable, then 187post-update will be called with the list of refs that have been updated. 188This can be used to implement any repository wide cleanup tasks. 189 190The exit code from this hook invocation is ignored; the only thing 191left for 'git-receive-pack' to do at that point is to exit itself 192anyway. 193 194This hook can be used, for example, to run `git update-server-info` 195if the repository is packed and is served via a dumb transport. 196 197 #!/bin/sh 198 exec git update-server-info 199 200 201SEE ALSO 202-------- 203linkgit:git-send-pack[1], linkgit:gitnamespaces[7] 204 205GIT 206--- 207Part of the linkgit:git[1] suite