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