blob: f5836e46d080d8f1f9931a8cd1aa22d0654341ba [file] [log] [blame]
Junio C Hamano7df6dcf2009-09-13 09:51:171git-remote-helpers(1)
2=====================
3
4NAME
5----
Junio C Hamano0c053e82010-04-19 06:46:346git-remote-helpers - Helper programs to interact with remote repositories
Junio C Hamano7df6dcf2009-09-13 09:51:177
8SYNOPSIS
9--------
Junio C Hamano15567bc2011-07-23 00:51:5910[verse]
Junio C Hamano0c053e82010-04-19 06:46:3411'git remote-<transport>' <repository> [<URL>]
Junio C Hamano7df6dcf2009-09-13 09:51:1712
13DESCRIPTION
14-----------
15
Junio C Hamano0c053e82010-04-19 06:46:3416Remote helper programs are normally not used directly by end users,
17but they are invoked by git when it needs to interact with remote
18repositories git does not support natively. A given helper will
19implement a subset of the capabilities documented here. When git
20needs to interact with a repository using a remote helper, it spawns
21the helper as an independent process, sends commands to the helper's
22standard input, and expects results from the helper's standard
23output. Because a remote helper runs as an independent process from
24git, there is no need to re-link git to add a new helper, nor any
25need to link the helper with the implementation of git.
26
Junio C Hamano7bd050f2011-09-22 06:32:2227Every helper must support the "capabilities" command, which git
28uses to determine what other commands the helper will accept. Those
29other commands can be used to discover and update remote refs,
30transport objects between the object database and the remote repository,
31and update the local object store.
Junio C Hamano0c053e82010-04-19 06:46:3432
33Git comes with a "curl" family of remote helpers, that handle various
34transport protocols, such as 'git-remote-http', 'git-remote-https',
35'git-remote-ftp' and 'git-remote-ftps'. They implement the capabilities
36'fetch', 'option', and 'push'.
37
Junio C Hamano7bd050f2011-09-22 06:32:2238INPUT FORMAT
39------------
40
41Git sends the remote helper a list of commands on standard input, one
42per line. The first command is always the 'capabilities' command, in
43response to which the remote helper must print a list of the
44capabilities it supports (see below) followed by a blank line. The
45response to the capabilities command determines what commands Git uses
46in the remainder of the command stream.
47
48The command stream is terminated by a blank line. In some cases
49(indicated in the documentation of the relevant commands), this blank
50line is followed by a payload in some other protocol (e.g., the pack
51protocol), while in others it indicates the end of input.
52
53Capabilities
54~~~~~~~~~~~~
55
56Each remote helper is expected to support only a subset of commands.
57The operations a helper supports are declared to git in the response
58to the `capabilities` command (see COMMANDS, below).
59
60'option'::
61For specifying settings like `verbosity` (how much output to
62write to stderr) and `depth` (how much history is wanted in the
63case of a shallow clone) that affect how other commands are
64carried out.
65
66'connect'::
67For fetching and pushing using git's native packfile protocol
68that requires a bidirectional, full-duplex connection.
69
70'push'::
71For listing remote refs and pushing specified objects from the
72local object store to remote refs.
73
74'fetch'::
75For listing remote refs and fetching the associated history to
76the local object store.
77
78'import'::
79For listing remote refs and fetching the associated history as
80a fast-import stream.
81
82'refspec' <refspec>::
83This modifies the 'import' capability, allowing the produced
84fast-import stream to modify refs in a private namespace
85instead of writing to refs/heads or refs/remotes directly.
86It is recommended that all importers providing the 'import'
87capability use this.
88+
89A helper advertising the capability
Junio C Hamanob76a6862012-05-02 22:02:4690`refspec refs/heads/*:refs/svn/origin/branches/*`
Junio C Hamano7bd050f2011-09-22 06:32:2291is saying that, when it is asked to `import refs/heads/topic`, the
92stream it outputs will update the `refs/svn/origin/branches/topic`
93ref.
94+
95This capability can be advertised multiple times. The first
96applicable refspec takes precedence. The left-hand of refspecs
97advertised with this capability must cover all refs reported by
98the list command. If no 'refspec' capability is advertised,
Junio C Hamanob76a6862012-05-02 22:02:4699there is an implied `refspec *:*`.
Junio C Hamano7bd050f2011-09-22 06:32:22100
101Capabilities for Pushing
102~~~~~~~~~~~~~~~~~~~~~~~~
103'connect'::
104Can attempt to connect to 'git receive-pack' (for pushing),
105'git upload-pack', etc for communication using the
106packfile protocol.
107+
108Supported commands: 'connect'.
109
110'push'::
111Can discover remote refs and push local commits and the
112history leading up to them to new or existing remote refs.
113+
114Supported commands: 'list for-push', 'push'.
115
116If a helper advertises both 'connect' and 'push', git will use
117'connect' if possible and fall back to 'push' if the helper requests
118so when connecting (see the 'connect' command under COMMANDS).
119
120Capabilities for Fetching
121~~~~~~~~~~~~~~~~~~~~~~~~~
122'connect'::
123Can try to connect to 'git upload-pack' (for fetching),
124'git receive-pack', etc for communication using the
125packfile protocol.
126+
127Supported commands: 'connect'.
128
129'fetch'::
130Can discover remote refs and transfer objects reachable from
131them to the local object store.
132+
133Supported commands: 'list', 'fetch'.
134
135'import'::
136Can discover remote refs and output objects reachable from
137them as a stream in fast-import format.
138+
139Supported commands: 'list', 'import'.
140
141If a helper advertises 'connect', git will use it if possible and
142fall back to another capability if the helper requests so when
143connecting (see the 'connect' command under COMMANDS).
144When choosing between 'fetch' and 'import', git prefers 'fetch'.
145Other frontends may have some other order of preference.
146
147'refspec' <refspec>::
148This modifies the 'import' capability.
149+
150A helper advertising
Junio C Hamanob76a6862012-05-02 22:02:46151`refspec refs/heads/*:refs/svn/origin/branches/*`
Junio C Hamano7bd050f2011-09-22 06:32:22152in its capabilities is saying that, when it handles
153`import refs/heads/topic`, the stream it outputs will update the
154`refs/svn/origin/branches/topic` ref.
155+
156This capability can be advertised multiple times. The first
157applicable refspec takes precedence. The left-hand of refspecs
158advertised with this capability must cover all refs reported by
159the list command. If no 'refspec' capability is advertised,
Junio C Hamanob76a6862012-05-02 22:02:46160there is an implied `refspec *:*`.
Junio C Hamano7bd050f2011-09-22 06:32:22161
Junio C Hamano0c053e82010-04-19 06:46:34162INVOCATION
163----------
164
165Remote helper programs are invoked with one or (optionally) two
166arguments. The first argument specifies a remote repository as in git;
167it is either the name of a configured remote or a URL. The second
168argument specifies a URL; it is usually of the form
169'<transport>://<address>', but any arbitrary string is possible.
Junio C Hamanofbc773c2011-08-02 00:09:12170The 'GIT_DIR' environment variable is set up for the remote helper
171and can be used to determine where to store additional data or from
172which directory to invoke auxiliary git commands.
Junio C Hamano0c053e82010-04-19 06:46:34173
174When git encounters a URL of the form '<transport>://<address>', where
175'<transport>' is a protocol that it cannot handle natively, it
176automatically invokes 'git remote-<transport>' with the full URL as
177the second argument. If such a URL is encountered directly on the
178command line, the first argument is the same as the second, and if it
179is encountered in a configured remote, the first argument is the name
180of that remote.
181
182A URL of the form '<transport>::<address>' explicitly instructs git to
183invoke 'git remote-<transport>' with '<address>' as the second
184argument. If such a URL is encountered directly on the command line,
185the first argument is '<address>', and if it is encountered in a
186configured remote, the first argument is the name of that remote.
187
188Additionally, when a configured remote has 'remote.<name>.vcs' set to
189'<transport>', git explicitly invokes 'git remote-<transport>' with
190'<name>' as the first argument. If set, the second argument is
191'remote.<name>.url'; otherwise, the second argument is omitted.
Junio C Hamano7df6dcf2009-09-13 09:51:17192
193COMMANDS
194--------
195
196Commands are given by the caller on the helper's standard input, one per line.
197
198'capabilities'::
199Lists the capabilities of the helper, one per line, ending
Junio C Hamano0c053e82010-04-19 06:46:34200with a blank line. Each capability may be preceded with '*',
201which marks them mandatory for git version using the remote
Junio C Hamano3c8d6702010-01-13 23:09:03202helper to understand (unknown mandatory capability is fatal
203error).
Junio C Hamano7df6dcf2009-09-13 09:51:17204
205'list'::
206Lists the refs, one per line, in the format "<value> <name>
207[<attr> ...]". The value may be a hex sha1 hash, "@<dest>" for
208a symref, or "?" to indicate that the helper could not get the
209value of the ref. A space-separated list of attributes follows
Junio C Hamano0c053e82010-04-19 06:46:34210the name; unrecognized attributes are ignored. The list ends
211with a blank line.
Junio C Hamano3b70d3c2009-11-21 17:37:37212+
213If 'push' is supported this may be called as 'list for-push'
214to obtain the current refs prior to sending one or more 'push'
215commands to the helper.
216
217'option' <name> <value>::
Junio C Hamano0c053e82010-04-19 06:46:34218Sets the transport helper option <name> to <value>. Outputs a
Junio C Hamano3b70d3c2009-11-21 17:37:37219single line containing one of 'ok' (option successfully set),
220'unsupported' (option not recognized) or 'error <msg>'
Junio C Hamano0c053e82010-04-19 06:46:34221(option <name> is supported but <value> is not valid
Junio C Hamano3b70d3c2009-11-21 17:37:37222for it). Options should be set before other commands,
Junio C Hamano0c053e82010-04-19 06:46:34223and may influence the behavior of those commands.
Junio C Hamano3b70d3c2009-11-21 17:37:37224+
225Supported if the helper has the "option" capability.
Junio C Hamano7df6dcf2009-09-13 09:51:17226
227'fetch' <sha1> <name>::
Junio C Hamano3b70d3c2009-11-21 17:37:37228Fetches the given object, writing the necessary objects
229to the database. Fetch commands are sent in a batch, one
Junio C Hamano0c053e82010-04-19 06:46:34230per line, terminated with a blank line.
Junio C Hamano3b70d3c2009-11-21 17:37:37231Outputs a single blank line when all fetch commands in the
232same batch are complete. Only objects which were reported
233in the ref list with a sha1 may be fetched this way.
234+
235Optionally may output a 'lock <file>' line indicating a file under
236GIT_DIR/objects/pack which is keeping a pack until refs can be
237suitably updated.
Junio C Hamano7df6dcf2009-09-13 09:51:17238+
239Supported if the helper has the "fetch" capability.
240
Junio C Hamano3b70d3c2009-11-21 17:37:37241'push' +<src>:<dst>::
Junio C Hamano0c053e82010-04-19 06:46:34242Pushes the given local <src> commit or branch to the
Junio C Hamano3b70d3c2009-11-21 17:37:37243remote branch described by <dst>. A batch sequence of
Junio C Hamano7bd050f2011-09-22 06:32:22244one or more 'push' commands is terminated with a blank line
245(if there is only one reference to push, a single 'push' command
246is followed by a blank line). For example, the following would
247be two batches of 'push', the first asking the remote-helper
248to push the local ref 'master' to the remote ref 'master' and
249the local 'HEAD' to the remote 'branch', and the second
250asking to push ref 'foo' to ref 'bar' (forced update requested
251by the '+').
252+
253------------
254push refs/heads/master:refs/heads/master
255push HEAD:refs/heads/branch
256\n
257push +refs/heads/foo:refs/heads/bar
258\n
259------------
Junio C Hamano3b70d3c2009-11-21 17:37:37260+
261Zero or more protocol options may be entered after the last 'push'
262command, before the batch's terminating blank line.
263+
264When the push is complete, outputs one or more 'ok <dst>' or
265'error <dst> <why>?' lines to indicate success or failure of
266each pushed ref. The status report output is terminated by
267a blank line. The option field <why> may be quoted in a C
268style string if it contains an LF.
269+
270Supported if the helper has the "push" capability.
271
Junio C Hamano096dde22009-12-26 23:14:11272'import' <name>::
273Produces a fast-import stream which imports the current value
274of the named ref. It may additionally import other refs as
275needed to construct the history efficiently. The script writes
276to a helper-specific private namespace. The value of the named
277ref should be written to a location in this namespace derived
278by applying the refspecs from the "refspec" capability to the
279name of the ref.
280+
Junio C Hamano0c053e82010-04-19 06:46:34281Especially useful for interoperability with a foreign versioning
282system.
283+
Junio C Hamano7bd050f2011-09-22 06:32:22284Just like 'push', a batch sequence of one or more 'import' is
285terminated with a blank line. For each batch of 'import', the remote
286helper should produce a fast-import stream terminated by a 'done'
287command.
288+
Junio C Hamano096dde22009-12-26 23:14:11289Supported if the helper has the "import" capability.
290
Junio C Hamano3c8d6702010-01-13 23:09:03291'connect' <service>::
292Connects to given service. Standard input and standard output
293of helper are connected to specified service (git prefix is
294included in service name so e.g. fetching uses 'git-upload-pack'
295as service) on remote side. Valid replies to this command are
296empty line (connection established), 'fallback' (no smart
297transport support, fall back to dumb transports) and just
298exiting with error message printed (can't connect, don't
299bother trying to fall back). After line feed terminating the
300positive (empty) response, the output of service starts. After
301the connection ends, the remote helper exits.
302+
303Supported if the helper has the "connect" capability.
304
Junio C Hamano7df6dcf2009-09-13 09:51:17305If a fatal error occurs, the program writes the error message to
306stderr and exits. The caller should expect that a suitable error
307message has been printed if the child closes the connection without
308completing a valid response for the current command.
309
310Additional commands may be supported, as may be determined from
311capabilities reported by the helper.
312
Junio C Hamano7df6dcf2009-09-13 09:51:17313REF LIST ATTRIBUTES
314-------------------
315
Junio C Hamano3b70d3c2009-11-21 17:37:37316'for-push'::
317The caller wants to use the ref list to prepare push
318commands. A helper might chose to acquire the ref list by
319opening a different type of connection to the destination.
320
Junio C Hamano096dde22009-12-26 23:14:11321'unchanged'::
322This ref is unchanged since the last import or fetch, although
323the helper cannot necessarily determine what value that produced.
324
Junio C Hamano3b70d3c2009-11-21 17:37:37325OPTIONS
326-------
Junio C Hamano63c2bc92011-02-28 06:41:28327'option verbosity' <n>::
Junio C Hamano0c053e82010-04-19 06:46:34328Changes the verbosity of messages displayed by the helper.
Junio C Hamano63c2bc92011-02-28 06:41:28329A value of 0 for <n> means that processes operate
Junio C Hamano0c053e82010-04-19 06:46:34330quietly, and the helper produces only error output.
3311 is the default level of verbosity, and higher values
Junio C Hamano63c2bc92011-02-28 06:41:28332of <n> correspond to the number of -v flags passed on the
Junio C Hamano3b70d3c2009-11-21 17:37:37333command line.
334
335'option progress' \{'true'|'false'\}::
Junio C Hamano0c053e82010-04-19 06:46:34336Enables (or disables) progress messages displayed by the
Junio C Hamano3b70d3c2009-11-21 17:37:37337transport helper during a command.
338
339'option depth' <depth>::
Junio C Hamano0c053e82010-04-19 06:46:34340Deepens the history of a shallow repository.
Junio C Hamano3b70d3c2009-11-21 17:37:37341
342'option followtags' \{'true'|'false'\}::
343If enabled the helper should automatically fetch annotated
344tag objects if the object the tag points at was transferred
345during the fetch command. If the tag is not fetched by
346the helper a second fetch command will usually be sent to
347ask for the tag specifically. Some helpers may be able to
348use this option to avoid a second network connection.
349
350'option dry-run' \{'true'|'false'\}:
351If true, pretend the operation completed successfully,
352but don't actually change any repository data. For most
353helpers this only applies to the 'push', if supported.
Junio C Hamano7df6dcf2009-09-13 09:51:17354
Junio C Hamano3c8d6702010-01-13 23:09:03355'option servpath <c-style-quoted-path>'::
Junio C Hamano0c053e82010-04-19 06:46:34356Sets service path (--upload-pack, --receive-pack etc.) for
357next connect. Remote helper may support this option, but
358must not rely on this option being set before
Junio C Hamano3c8d6702010-01-13 23:09:03359connect request occurs.
360
Junio C Hamano0c053e82010-04-19 06:46:34361SEE ALSO
362--------
363linkgit:git-remote[1]
364
Junio C Hamano7bd050f2011-09-22 06:32:22365linkgit:git-remote-testgit[1]
366
Junio C Hamano7df6dcf2009-09-13 09:51:17367GIT
368---
369Part of the linkgit:git[1] suite