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