[PATCH] Added hook in git-receive-pack
[git.git] / Documentation / git-receive-pack.txt
1 git-receive-pack(1)
2 ===================
3 v0.1, July 2005
4
5 NAME
6 ----
7 git-receive-pack - Receive what is pushed into it
8
9
10 SYNOPSIS
11 --------
12 'git-receive-pack' <directory>
13
14 DESCRIPTION
15 -----------
16 Invoked by 'git-send-pack' and updates the repository with the
17 information fed from the remote end.
18
19 This command is usually not invoked directly by the end user.
20 The UI for the protocol is on the 'git-send-pack' side, and the
21 program pair is meant to be used to push updates to remote
22 repository.  For pull operations, see 'git-fetch-pack' and
23 'git-clone-pack'.
24
25 The command allows for creation and fast forwarding of sha1 refs
26 (heads/tags) on the remote end (strictly speaking, it is the
27 local end receive-pack runs, but to the user who is sitting at
28 the send-pack end, it is updating the remote.  Confused?)
29
30 Before each ref is updated, if $GIT_DIR/hooks/update file exists
31 and executable, it is called with three parameters:
32
33        $GIT_DIR/hooks/update refname sha1-old sha1-new
34
35 The refname parameter is relative to $GIT_DIR; e.g. for the
36 master head this is "refs/heads/master".  Two sha1 are the
37 object names for the refname before and after the update.  Note
38 that the hook is called before the refname is updated, so either
39 sha1-old is 0{40} (meaning there is no such ref yet), or it
40 should match what is recorded in refname.
41
42 The hook should exit with non-zero status if it wants to
43 disallow updating the named ref.  Otherwise it should exit with
44 zero.
45
46 The same hook is also called with an empty string as refname and
47 no other arguments just before git-receive-pack exits.  This can
48 be used to implement repository wide cleanup task if needed.
49 The exit code from this hook invocation is ignored; the only
50 thing left for git-receive-pack to do at that point is to exit
51 itself anyway.
52
53 Using this hook, it is easy to generate mails on updates to
54 the local repository. This example script sends a mail with
55 the commits pushed to the repository:
56
57         #!/bin/sh
58         case "$#,$1" in
59         1,) # help packed repository pulled via dumb protocol.
60             git-update-server-info
61             ;;
62         *)  # mail out commit update information.
63             if expr "$2" : '0*$' >/dev/null
64             then
65                 echo "Created now ref."
66                 git-rev-list --pretty "$2"
67             else
68                 echo "New commits"
69                 git-rev-list --pretty "$3" "^$2"
70             fi |
71             mail -s "Changes to ref $1" commit-list@mydomain
72         esac
73         exit 0
74
75 OPTIONS
76 -------
77 <directory>::
78         The repository to sync into.
79
80 Author
81 ------
82 Written by Linus Torvalds <torvalds@osdl.org>
83
84 Documentation
85 --------------
86 Documentation by Junio C Hamano.
87
88 GIT
89 ---
90 Part of the link:git.html[git] suite