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