blob: 6d696e0f90b3f0b67adde7ef4aa4fa6816e391eb [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
38INVOCATION
39----------
40
41Remote helper programs are invoked with one or (optionally) two
42arguments. The first argument specifies a remote repository as in git;
43it is either the name of a configured remote or a URL. The second
44argument specifies a URL; it is usually of the form
45'<transport>://<address>', but any arbitrary string is possible.
Junio C Hamanofbc773c2011-08-02 00:09:1246The 'GIT_DIR' environment variable is set up for the remote helper
47and can be used to determine where to store additional data or from
48which directory to invoke auxiliary git commands.
Junio C Hamano0c053e82010-04-19 06:46:3449
50When git encounters a URL of the form '<transport>://<address>', where
51'<transport>' is a protocol that it cannot handle natively, it
52automatically invokes 'git remote-<transport>' with the full URL as
53the second argument. If such a URL is encountered directly on the
54command line, the first argument is the same as the second, and if it
55is encountered in a configured remote, the first argument is the name
56of that remote.
57
58A URL of the form '<transport>::<address>' explicitly instructs git to
59invoke 'git remote-<transport>' with '<address>' as the second
60argument. If such a URL is encountered directly on the command line,
61the first argument is '<address>', and if it is encountered in a
62configured remote, the first argument is the name of that remote.
63
64Additionally, when a configured remote has 'remote.<name>.vcs' set to
65'<transport>', git explicitly invokes 'git remote-<transport>' with
66'<name>' as the first argument. If set, the second argument is
67'remote.<name>.url'; otherwise, the second argument is omitted.
Junio C Hamano7df6dcf2009-09-13 09:51:1768
Junio C Hamano0b0417b2012-12-13 20:35:0269INPUT FORMAT
70------------
71
72Git sends the remote helper a list of commands on standard input, one
73per line. The first command is always the 'capabilities' command, in
74response to which the remote helper must print a list of the
75capabilities it supports (see below) followed by a blank line. The
76response to the capabilities command determines what commands Git uses
77in the remainder of the command stream.
78
79The command stream is terminated by a blank line. In some cases
80(indicated in the documentation of the relevant commands), this blank
81line is followed by a payload in some other protocol (e.g., the pack
82protocol), while in others it indicates the end of input.
83
84Capabilities
85~~~~~~~~~~~~
86
87Each remote helper is expected to support only a subset of commands.
88The operations a helper supports are declared to git in the response
89to the `capabilities` command (see COMMANDS, below).
90
91In the following, we list all defined capabilities and for
92each we list which commands a helper with that capability
93must provide.
94
95Capabilities for Pushing
96^^^^^^^^^^^^^^^^^^^^^^^^
97'connect'::
98Can attempt to connect to 'git receive-pack' (for pushing),
99'git upload-pack', etc for communication using
100git's native packfile protocol. This
101requires a bidirectional, full-duplex connection.
102+
103Supported commands: 'connect'.
104
105'push'::
106Can discover remote refs and push local commits and the
107history leading up to them to new or existing remote refs.
108+
109Supported commands: 'list for-push', 'push'.
110
111'export'::
112Can discover remote refs and push specified objects from a
113fast-import stream to remote refs.
114+
115Supported commands: 'list for-push', 'export'.
116
117If a helper advertises 'connect', git will use it if possible and
118fall back to another capability if the helper requests so when
119connecting (see the 'connect' command under COMMANDS).
120When choosing between 'push' and 'export', git prefers 'push'.
121Other frontends may have some other order of preference.
122
123
124Capabilities for Fetching
125^^^^^^^^^^^^^^^^^^^^^^^^^
126'connect'::
127Can try to connect to 'git upload-pack' (for fetching),
128'git receive-pack', etc for communication using the
129git's native packfile protocol. This
130requires a bidirectional, full-duplex connection.
131+
132Supported commands: 'connect'.
133
134'fetch'::
135Can discover remote refs and transfer objects reachable from
136them to the local object store.
137+
138Supported commands: 'list', 'fetch'.
139
140'import'::
141Can discover remote refs and output objects reachable from
142them as a stream in fast-import format.
143+
144Supported commands: 'list', 'import'.
145
146If a helper advertises 'connect', git will use it if possible and
147fall back to another capability if the helper requests so when
148connecting (see the 'connect' command under COMMANDS).
149When choosing between 'fetch' and 'import', git prefers 'fetch'.
150Other frontends may have some other order of preference.
151
152Miscellaneous capabilities
153^^^^^^^^^^^^^^^^^^^^^^^^^^
154
155'option'::
156For specifying settings like `verbosity` (how much output to
157write to stderr) and `depth` (how much history is wanted in the
158case of a shallow clone) that affect how other commands are
159carried out.
160
161'refspec' <refspec>::
162This modifies the 'import' capability, allowing the produced
163fast-import stream to modify refs in a private namespace
164instead of writing to refs/heads or refs/remotes directly.
165It is recommended that all importers providing the 'import'
166capability use this.
167+
168A helper advertising the capability
169`refspec refs/heads/*:refs/svn/origin/branches/*`
170is saying that, when it is asked to `import refs/heads/topic`, the
171stream it outputs will update the `refs/svn/origin/branches/topic`
172ref.
173+
174This capability can be advertised multiple times. The first
175applicable refspec takes precedence. The left-hand of refspecs
176advertised with this capability must cover all refs reported by
177the list command. If no 'refspec' capability is advertised,
178there is an implied `refspec *:*`.
179
180'bidi-import'::
181This modifies the 'import' capability.
182The fast-import commands 'cat-blob' and 'ls' can be used by remote-helpers
183to retrieve information about blobs and trees that already exist in
184fast-import's memory. This requires a channel from fast-import to the
185remote-helper.
186If it is advertised in addition to "import", git establishes a pipe from
187fast-import to the remote-helper's stdin.
188It follows that git and fast-import are both connected to the
189remote-helper's stdin. Because git can send multiple commands to
190the remote-helper it is required that helpers that use 'bidi-import'
191buffer all 'import' commands of a batch before sending data to fast-import.
192This is to prevent mixing commands and fast-import responses on the
193helper's stdin.
194
195'export-marks' <file>::
196This modifies the 'export' capability, instructing git to dump the
197internal marks table to <file> when complete. For details,
198read up on '--export-marks=<file>' in linkgit:git-fast-export[1].
199
200'import-marks' <file>::
201This modifies the 'export' capability, instructing git to load the
202marks specified in <file> before processing any input. For details,
203read up on '--import-marks=<file>' in linkgit:git-fast-export[1].
204
205
206
207
Junio C Hamano7df6dcf2009-09-13 09:51:17208COMMANDS
209--------
210
211Commands are given by the caller on the helper's standard input, one per line.
212
213'capabilities'::
214Lists the capabilities of the helper, one per line, ending
Junio C Hamano0c053e82010-04-19 06:46:34215with a blank line. Each capability may be preceded with '*',
Junio C Hamano0b0417b2012-12-13 20:35:02216which marks them mandatory for git versions using the remote
217helper to understand. Any unknown mandatory capability is a
218fatal error.
219+
220Support for this command is mandatory.
Junio C Hamano7df6dcf2009-09-13 09:51:17221
222'list'::
223Lists the refs, one per line, in the format "<value> <name>
224[<attr> ...]". The value may be a hex sha1 hash, "@<dest>" for
225a symref, or "?" to indicate that the helper could not get the
226value of the ref. A space-separated list of attributes follows
Junio C Hamano0c053e82010-04-19 06:46:34227the name; unrecognized attributes are ignored. The list ends
228with a blank line.
Junio C Hamano3b70d3c2009-11-21 17:37:37229+
Junio C Hamano0b0417b2012-12-13 20:35:02230See REF LIST ATTRIBUTES for a list of currently defined attributes.
231+
232Supported if the helper has the "fetch" or "import" capability.
233
234'list for-push'::
235Similar to 'list', except that it is used if and only if
236the caller wants to the resulting ref list to prepare
237push commands.
238A helper supporting both push and fetch can use this
239to distinguish for which operation the output of 'list'
240is going to be used, possibly reducing the amount
241of work that needs to be performed.
242+
243Supported if the helper has the "push" or "export" capability.
Junio C Hamano3b70d3c2009-11-21 17:37:37244
245'option' <name> <value>::
Junio C Hamano0c053e82010-04-19 06:46:34246Sets the transport helper option <name> to <value>. Outputs a
Junio C Hamano3b70d3c2009-11-21 17:37:37247single line containing one of 'ok' (option successfully set),
248'unsupported' (option not recognized) or 'error <msg>'
Junio C Hamano0c053e82010-04-19 06:46:34249(option <name> is supported but <value> is not valid
Junio C Hamano3b70d3c2009-11-21 17:37:37250for it). Options should be set before other commands,
Junio C Hamano0c053e82010-04-19 06:46:34251and may influence the behavior of those commands.
Junio C Hamano3b70d3c2009-11-21 17:37:37252+
Junio C Hamano0b0417b2012-12-13 20:35:02253See OPTIONS for a list of currently defined options.
254+
Junio C Hamano3b70d3c2009-11-21 17:37:37255Supported if the helper has the "option" capability.
Junio C Hamano7df6dcf2009-09-13 09:51:17256
257'fetch' <sha1> <name>::
Junio C Hamano3b70d3c2009-11-21 17:37:37258Fetches the given object, writing the necessary objects
259to the database. Fetch commands are sent in a batch, one
Junio C Hamano0c053e82010-04-19 06:46:34260per line, terminated with a blank line.
Junio C Hamano3b70d3c2009-11-21 17:37:37261Outputs a single blank line when all fetch commands in the
262same batch are complete. Only objects which were reported
Junio C Hamano0b0417b2012-12-13 20:35:02263in the output of 'list' with a sha1 may be fetched this way.
Junio C Hamano3b70d3c2009-11-21 17:37:37264+
265Optionally may output a 'lock <file>' line indicating a file under
266GIT_DIR/objects/pack which is keeping a pack until refs can be
267suitably updated.
Junio C Hamano7df6dcf2009-09-13 09:51:17268+
269Supported if the helper has the "fetch" capability.
270
Junio C Hamano3b70d3c2009-11-21 17:37:37271'push' +<src>:<dst>::
Junio C Hamano0c053e82010-04-19 06:46:34272Pushes the given local <src> commit or branch to the
Junio C Hamano3b70d3c2009-11-21 17:37:37273remote branch described by <dst>. A batch sequence of
Junio C Hamano7bd050f2011-09-22 06:32:22274one or more 'push' commands is terminated with a blank line
275(if there is only one reference to push, a single 'push' command
276is followed by a blank line). For example, the following would
277be two batches of 'push', the first asking the remote-helper
278to push the local ref 'master' to the remote ref 'master' and
279the local 'HEAD' to the remote 'branch', and the second
280asking to push ref 'foo' to ref 'bar' (forced update requested
281by the '+').
282+
283------------
284push refs/heads/master:refs/heads/master
285push HEAD:refs/heads/branch
286\n
287push +refs/heads/foo:refs/heads/bar
288\n
289------------
Junio C Hamano3b70d3c2009-11-21 17:37:37290+
291Zero or more protocol options may be entered after the last 'push'
292command, before the batch's terminating blank line.
293+
294When the push is complete, outputs one or more 'ok <dst>' or
295'error <dst> <why>?' lines to indicate success or failure of
296each pushed ref. The status report output is terminated by
297a blank line. The option field <why> may be quoted in a C
298style string if it contains an LF.
299+
300Supported if the helper has the "push" capability.
301
Junio C Hamano096dde22009-12-26 23:14:11302'import' <name>::
303Produces a fast-import stream which imports the current value
304of the named ref. It may additionally import other refs as
305needed to construct the history efficiently. The script writes
306to a helper-specific private namespace. The value of the named
307ref should be written to a location in this namespace derived
308by applying the refspecs from the "refspec" capability to the
309name of the ref.
310+
Junio C Hamano0c053e82010-04-19 06:46:34311Especially useful for interoperability with a foreign versioning
312system.
313+
Junio C Hamano7bd050f2011-09-22 06:32:22314Just like 'push', a batch sequence of one or more 'import' is
315terminated with a blank line. For each batch of 'import', the remote
316helper should produce a fast-import stream terminated by a 'done'
317command.
318+
Junio C Hamanoa1295452012-11-13 22:32:04319Note that if the 'bidi-import' capability is used the complete batch
320sequence has to be buffered before starting to send data to fast-import
321to prevent mixing of commands and fast-import responses on the helper's
322stdin.
323+
Junio C Hamano0b0417b2012-12-13 20:35:02324Supported if the helper has the "import" capability.
325
326'export'::
327Instructs the remote helper that any subsequent input is
328part of a fast-import stream (generated by 'git fast-export')
329containing objects which should be pushed to the remote.
330+
331Especially useful for interoperability with a foreign versioning
332system.
333+
334The 'export-marks' and 'import-marks' capabilities, if specified,
335affect this command in so far as they are passed on to 'git
336fast-export', which then will load/store a table of marks for
337local objects. This can be used to implement for incremental
338operations.
339+
340Supported if the helper has the "export" capability.
Junio C Hamano096dde22009-12-26 23:14:11341
Junio C Hamano3c8d6702010-01-13 23:09:03342'connect' <service>::
343Connects to given service. Standard input and standard output
344of helper are connected to specified service (git prefix is
345included in service name so e.g. fetching uses 'git-upload-pack'
346as service) on remote side. Valid replies to this command are
347empty line (connection established), 'fallback' (no smart
348transport support, fall back to dumb transports) and just
349exiting with error message printed (can't connect, don't
350bother trying to fall back). After line feed terminating the
351positive (empty) response, the output of service starts. After
352the connection ends, the remote helper exits.
353+
354Supported if the helper has the "connect" capability.
355
Junio C Hamano7df6dcf2009-09-13 09:51:17356If a fatal error occurs, the program writes the error message to
357stderr and exits. The caller should expect that a suitable error
358message has been printed if the child closes the connection without
359completing a valid response for the current command.
360
361Additional commands may be supported, as may be determined from
362capabilities reported by the helper.
363
Junio C Hamano7df6dcf2009-09-13 09:51:17364REF LIST ATTRIBUTES
365-------------------
366
Junio C Hamano0b0417b2012-12-13 20:35:02367The 'list' command produces a list of refs in which each ref
368may be followed by a list of attributes. The following ref list
369attributes are defined.
Junio C Hamano3b70d3c2009-11-21 17:37:37370
Junio C Hamano096dde22009-12-26 23:14:11371'unchanged'::
372This ref is unchanged since the last import or fetch, although
373the helper cannot necessarily determine what value that produced.
374
Junio C Hamano3b70d3c2009-11-21 17:37:37375OPTIONS
376-------
Junio C Hamano0b0417b2012-12-13 20:35:02377
378The following options are defined and (under suitable circumstances)
379set by git if the remote helper has the 'option' capability.
380
Junio C Hamano63c2bc92011-02-28 06:41:28381'option verbosity' <n>::
Junio C Hamano0c053e82010-04-19 06:46:34382Changes the verbosity of messages displayed by the helper.
Junio C Hamano63c2bc92011-02-28 06:41:28383A value of 0 for <n> means that processes operate
Junio C Hamano0c053e82010-04-19 06:46:34384quietly, and the helper produces only error output.
3851 is the default level of verbosity, and higher values
Junio C Hamano63c2bc92011-02-28 06:41:28386of <n> correspond to the number of -v flags passed on the
Junio C Hamano3b70d3c2009-11-21 17:37:37387command line.
388
389'option progress' \{'true'|'false'\}::
Junio C Hamano0c053e82010-04-19 06:46:34390Enables (or disables) progress messages displayed by the
Junio C Hamano3b70d3c2009-11-21 17:37:37391transport helper during a command.
392
393'option depth' <depth>::
Junio C Hamano0c053e82010-04-19 06:46:34394Deepens the history of a shallow repository.
Junio C Hamano3b70d3c2009-11-21 17:37:37395
396'option followtags' \{'true'|'false'\}::
397If enabled the helper should automatically fetch annotated
398tag objects if the object the tag points at was transferred
399during the fetch command. If the tag is not fetched by
400the helper a second fetch command will usually be sent to
401ask for the tag specifically. Some helpers may be able to
402use this option to avoid a second network connection.
403
404'option dry-run' \{'true'|'false'\}:
405If true, pretend the operation completed successfully,
406but don't actually change any repository data. For most
407helpers this only applies to the 'push', if supported.
Junio C Hamano7df6dcf2009-09-13 09:51:17408
Junio C Hamano3c8d6702010-01-13 23:09:03409'option servpath <c-style-quoted-path>'::
Junio C Hamano0c053e82010-04-19 06:46:34410Sets service path (--upload-pack, --receive-pack etc.) for
411next connect. Remote helper may support this option, but
412must not rely on this option being set before
Junio C Hamano3c8d6702010-01-13 23:09:03413connect request occurs.
414
Junio C Hamano0c053e82010-04-19 06:46:34415SEE ALSO
416--------
417linkgit:git-remote[1]
418
Junio C Hamano7bd050f2011-09-22 06:32:22419linkgit:git-remote-testgit[1]
420
Junio C Hamano7df6dcf2009-09-13 09:51:17421GIT
422---
423Part of the linkgit:git[1] suite