blob: bed9e1f097d3aa144a62765129bf3b599d365dcf [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 Hamano15567bc2011-07-23 00:51:5911[verse]
Junio C Hamanof7279012011-08-18 06:13:1312'git send-pack' [--all] [--dry-run] [--force] [--receive-pack=<git-receive-pack>] [--quiet] [--verbose] [--thin] [<host>:]<directory> [<ref>...]
Junio C Hamano1a4e8412005-12-27 08:17:2313
14DESCRIPTION
15-----------
Junio C Hamano1aa40d22010-01-21 17:46:4316Usually you would want to use 'git push', which is a
Junio C Hamanofce7c7e2008-07-02 03:06:3817higher-level wrapper of this command, instead. See linkgit:git-push[1].
Junio C Hamanoe58607f2007-01-17 23:27:4518
Junio C Hamanoba4b9282008-07-06 05:20:3119Invokes 'git-receive-pack' on a possibly remote repository, and
Junio C Hamano1a4e8412005-12-27 08:17:2320updates it from the current repository, sending named refs.
21
22
23OPTIONS
24-------
Junio C Hamanoeb415992008-06-08 22:49:4725--receive-pack=<git-receive-pack>::
Junio C Hamanoba4b9282008-07-06 05:20:3126Path to the 'git-receive-pack' program on the remote
Junio C Hamano1a4e8412005-12-27 08:17:2327end. Sometimes useful when pushing to a remote
28repository over ssh, and you do not have the program in
29a directory on the default $PATH.
30
Junio C Hamanoeb415992008-06-08 22:49:4731--exec=<git-receive-pack>::
Junio C Hamano4ad294b2007-01-20 02:22:5032Same as \--receive-pack=<git-receive-pack>.
33
Junio C Hamanoeb415992008-06-08 22:49:4734--all::
Junio C Hamano1a4e8412005-12-27 08:17:2335Instead of explicitly specifying which refs to update,
Junio C Hamanod2d9ae12007-09-19 02:27:5736update all heads that locally exist.
Junio C Hamano1a4e8412005-12-27 08:17:2337
Junio C Hamanoeb415992008-06-08 22:49:4738--dry-run::
Junio C Hamano764a6672007-10-23 01:23:3139Do everything except actually send the updates.
40
Junio C Hamanoeb415992008-06-08 22:49:4741--force::
Junio C Hamano1a4e8412005-12-27 08:17:2342Usually, the command refuses to update a remote ref that
43is not an ancestor of the local ref used to overwrite it.
44This flag disables the check. What this means is that
45the remote repository can lose commits; use it with
46care.
47
Junio C Hamanof7279012011-08-18 06:13:1348--quiet::
49Print only error messages.
50
Junio C Hamanoeb415992008-06-08 22:49:4751--verbose::
Junio C Hamano4ad294b2007-01-20 02:22:5052Run verbosely.
53
Junio C Hamanoeb415992008-06-08 22:49:4754--thin::
Junio C Hamano4fdccb22010-02-19 09:58:1455Send a "thin" pack, which records objects in deltified form based
56on objects not included in the pack to reduce network traffic.
Junio C Hamano4ad294b2007-01-20 02:22:5057
Junio C Hamano1a4e8412005-12-27 08:17:2358<host>::
59A remote host to house the repository. When this
Junio C Hamanoba4b9282008-07-06 05:20:3160part is specified, 'git-receive-pack' is invoked via
Junio C Hamano1a4e8412005-12-27 08:17:2361ssh.
62
63<directory>::
64The repository to update.
65
Junio C Hamano21c0b422006-10-12 19:10:3666<ref>...::
Junio C Hamano1a4e8412005-12-27 08:17:2367The remote refs to update.
68
69
70Specifying the Refs
71-------------------
72
73There are three ways to specify which refs to update on the
74remote end.
75
Junio C Hamano341071d2006-06-04 07:24:4876With '--all' flag, all refs that exist locally are transferred to
Junio C Hamano1a4e8412005-12-27 08:17:2377the remote side. You cannot specify any '<ref>' if you use
78this flag.
79
Junio C Hamanod2d9ae12007-09-19 02:27:5780Without '--all' and without any '<ref>', the heads that exist
Junio C Hamano1a4e8412005-12-27 08:17:2381both on the local side and on the remote side are updated.
82
83When one or more '<ref>' are specified explicitly, it can be either a
84single pattern, or a pair of such pattern separated by a colon
85":" (this means that a ref name cannot have a colon in it). A
86single pattern '<name>' is just a shorthand for '<name>:<name>'.
87
88Each pattern pair consists of the source side (before the colon)
89and the destination side (after the colon). The ref to be
90pushed is determined by finding a match that matches the source
91side, and where it is pushed is determined by using the
Junio C Hamanoe0facb92007-12-05 10:59:4892destination side. The rules used to match a ref are the same
Junio C Hamano1aa40d22010-01-21 17:46:4393rules used by 'git rev-parse' to resolve a symbolic ref
Junio C Hamanofce7c7e2008-07-02 03:06:3894name. See linkgit:git-rev-parse[1].
Junio C Hamano1a4e8412005-12-27 08:17:2395
96 - It is an error if <src> does not match exactly one of the
97 local refs.
98
99 - It is an error if <dst> matches more than one remote refs.
100
101 - If <dst> does not match any remote ref, either
102
103 * it has to start with "refs/"; <dst> is used as the
104 destination literally in this case.
105
106 * <src> == <dst> and the ref that matched the <src> must not
107 exist in the set of remote refs; the ref matched <src>
108 locally is used as the name of the destination.
109
110Without '--force', the <src> ref is stored at the remote only if
111<dst> does not exist, or <dst> is a proper subset (i.e. an
Junio C Hamano3f680f32009-11-16 02:10:54112ancestor) of <src>. This check, known as "fast-forward check",
Junio C Hamano1a4e8412005-12-27 08:17:23113is performed in order to avoid accidentally overwriting the
114remote ref and lose other peoples' commits from there.
115
Junio C Hamano3f680f32009-11-16 02:10:54116With '--force', the fast-forward check is disabled for all refs.
Junio C Hamano1a4e8412005-12-27 08:17:23117
118Optionally, a <ref> parameter can be prefixed with a plus '+' sign
119to disable the fast-forward check only on that ref.
120
Junio C Hamano1a4e8412005-12-27 08:17:23121GIT
122---
Junio C Hamanof7c042d2008-06-06 22:50:53123Part of the linkgit:git[1] suite