blob: 205bfd2d259abd33873305d28281166a42285f6e [file] [log] [blame]
Junio C Hamano1a4e8412005-12-27 08:17:231git-send-pack(1)
2================
3
4NAME
5----
Junio C Hamanoee1e4282007-02-04 08:32:046git-send-pack - Push objects over git protocol to another repository
Junio C Hamano1a4e8412005-12-27 08:17:237
8
9SYNOPSIS
10--------
Junio C Hamano4ad294b2007-01-20 02:22:5011'git-send-pack' [--all] [--force] [--receive-pack=<git-receive-pack>] [--verbose] [--thin] [<host>:]<directory> [<ref>...]
Junio C Hamano1a4e8412005-12-27 08:17:2312
13DESCRIPTION
14-----------
Junio C Hamanoe58607f2007-01-17 23:27:4515Usually you would want to use gitlink:git-push[1] which is a
16higher level wrapper of this command instead.
17
Junio C Hamano1a4e8412005-12-27 08:17:2318Invokes 'git-receive-pack' on a possibly remote repository, and
19updates it from the current repository, sending named refs.
20
21
22OPTIONS
23-------
Junio C Hamano4ad294b2007-01-20 02:22:5024\--receive-pack=<git-receive-pack>::
Junio C Hamano1a4e8412005-12-27 08:17:2325Path to the 'git-receive-pack' program on the remote
26end. Sometimes useful when pushing to a remote
27repository over ssh, and you do not have the program in
28a directory on the default $PATH.
29
Junio C Hamano4ad294b2007-01-20 02:22:5030\--exec=<git-receive-pack>::
31Same as \--receive-pack=<git-receive-pack>.
32
33\--all::
Junio C Hamano1a4e8412005-12-27 08:17:2334Instead of explicitly specifying which refs to update,
35update all refs that locally exist.
36
Junio C Hamano4ad294b2007-01-20 02:22:5037\--force::
Junio C Hamano1a4e8412005-12-27 08:17:2338Usually, the command refuses to update a remote ref that
39is not an ancestor of the local ref used to overwrite it.
40This flag disables the check. What this means is that
41the remote repository can lose commits; use it with
42care.
43
Junio C Hamano4ad294b2007-01-20 02:22:5044\--verbose::
45Run verbosely.
46
47\--thin::
48Spend extra cycles to minimize the number of objects to be sent.
49Use it on slower connection.
50
Junio C Hamano1a4e8412005-12-27 08:17:2351<host>::
52A remote host to house the repository. When this
53part is specified, 'git-receive-pack' is invoked via
54ssh.
55
56<directory>::
57The repository to update.
58
Junio C Hamano21c0b422006-10-12 19:10:3659<ref>...::
Junio C Hamano1a4e8412005-12-27 08:17:2360The remote refs to update.
61
62
63Specifying the Refs
64-------------------
65
66There are three ways to specify which refs to update on the
67remote end.
68
Junio C Hamano341071d2006-06-04 07:24:4869With '--all' flag, all refs that exist locally are transferred to
Junio C Hamano1a4e8412005-12-27 08:17:2370the remote side. You cannot specify any '<ref>' if you use
71this flag.
72
73Without '--all' and without any '<ref>', the refs that exist
74both on the local side and on the remote side are updated.
75
76When one or more '<ref>' are specified explicitly, it can be either a
77single pattern, or a pair of such pattern separated by a colon
78":" (this means that a ref name cannot have a colon in it). A
79single pattern '<name>' is just a shorthand for '<name>:<name>'.
80
81Each pattern pair consists of the source side (before the colon)
82and the destination side (after the colon). The ref to be
83pushed is determined by finding a match that matches the source
84side, and where it is pushed is determined by using the
85destination side.
86
87 - It is an error if <src> does not match exactly one of the
88 local refs.
89
90 - It is an error if <dst> matches more than one remote refs.
91
92 - If <dst> does not match any remote ref, either
93
94 * it has to start with "refs/"; <dst> is used as the
95 destination literally in this case.
96
97 * <src> == <dst> and the ref that matched the <src> must not
98 exist in the set of remote refs; the ref matched <src>
99 locally is used as the name of the destination.
100
101Without '--force', the <src> ref is stored at the remote only if
102<dst> does not exist, or <dst> is a proper subset (i.e. an
103ancestor) of <src>. This check, known as "fast forward check",
104is performed in order to avoid accidentally overwriting the
105remote ref and lose other peoples' commits from there.
106
107With '--force', the fast forward check is disabled for all refs.
108
109Optionally, a <ref> parameter can be prefixed with a plus '+' sign
110to disable the fast-forward check only on that ref.
111
112
113Author
114------
115Written by Linus Torvalds <torvalds@osdl.org>
116
117Documentation
118--------------
119Documentation by Junio C Hamano.
120
121GIT
122---
123Part of the gitlink:git[7] suite