Merge branch 'mm/mediawiki-dumb-push-fix'
[git.git] / Documentation / gitremote-helpers.txt
blobbe7e224a03c4c5079342c3bbb23b39ad38ca9a5c
1 gitremote-helpers(1)
2 ====================
4 NAME
5 ----
6 gitremote-helpers - Helper programs to interact with remote repositories
8 SYNOPSIS
9 --------
10 [verse]
11 'git remote-<transport>' <repository> [<URL>]
13 DESCRIPTION
14 -----------
16 Remote helper programs are normally not used directly by end users,
17 but they are invoked by Git when it needs to interact with remote
18 repositories Git does not support natively.  A given helper will
19 implement a subset of the capabilities documented here. When Git
20 needs to interact with a repository using a remote helper, it spawns
21 the helper as an independent process, sends commands to the helper's
22 standard input, and expects results from the helper's standard
23 output. Because a remote helper runs as an independent process from
24 Git, there is no need to re-link Git to add a new helper, nor any
25 need to link the helper with the implementation of Git.
27 Every helper must support the "capabilities" command, which Git
28 uses to determine what other commands the helper will accept.  Those
29 other commands can be used to discover and update remote refs,
30 transport objects between the object database and the remote repository,
31 and update the local object store.
33 Git comes with a "curl" family of remote helpers, that handle various
34 transport 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'.
38 INVOCATION
39 ----------
41 Remote helper programs are invoked with one or (optionally) two
42 arguments. The first argument specifies a remote repository as in Git;
43 it is either the name of a configured remote or a URL. The second
44 argument specifies a URL; it is usually of the form
45 '<transport>://<address>', but any arbitrary string is possible.
46 The 'GIT_DIR' environment variable is set up for the remote helper
47 and can be used to determine where to store additional data or from
48 which directory to invoke auxiliary Git commands.
50 When Git encounters a URL of the form '<transport>://<address>', where
51 '<transport>' is a protocol that it cannot handle natively, it
52 automatically invokes 'git remote-<transport>' with the full URL as
53 the second argument. If such a URL is encountered directly on the
54 command line, the first argument is the same as the second, and if it
55 is encountered in a configured remote, the first argument is the name
56 of that remote.
58 A URL of the form '<transport>::<address>' explicitly instructs Git to
59 invoke 'git remote-<transport>' with '<address>' as the second
60 argument. If such a URL is encountered directly on the command line,
61 the first argument is '<address>', and if it is encountered in a
62 configured remote, the first argument is the name of that remote.
64 Additionally, 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.
69 INPUT FORMAT
70 ------------
72 Git sends the remote helper a list of commands on standard input, one
73 per line.  The first command is always the 'capabilities' command, in
74 response to which the remote helper must print a list of the
75 capabilities it supports (see below) followed by a blank line.  The
76 response to the capabilities command determines what commands Git uses
77 in the remainder of the command stream.
79 The command stream is terminated by a blank line.  In some cases
80 (indicated in the documentation of the relevant commands), this blank
81 line is followed by a payload in some other protocol (e.g., the pack
82 protocol), while in others it indicates the end of input.
84 Capabilities
85 ~~~~~~~~~~~~
87 Each remote helper is expected to support only a subset of commands.
88 The operations a helper supports are declared to Git in the response
89 to the `capabilities` command (see COMMANDS, below).
91 In the following, we list all defined capabilities and for
92 each we list which commands a helper with that capability
93 must provide.
95 Capabilities for Pushing
96 ^^^^^^^^^^^^^^^^^^^^^^^^
97 'connect'::
98         Can attempt to connect to 'git receive-pack' (for pushing),
99         'git upload-pack', etc for communication using
100         git's native packfile protocol. This
101         requires a bidirectional, full-duplex connection.
103 Supported commands: 'connect'.
105 'push'::
106         Can discover remote refs and push local commits and the
107         history leading up to them to new or existing remote refs.
109 Supported commands: 'list for-push', 'push'.
111 'export'::
112         Can discover remote refs and push specified objects from a
113         fast-import stream to remote refs.
115 Supported commands: 'list for-push', 'export'.
117 If a helper advertises 'connect', Git will use it if possible and
118 fall back to another capability if the helper requests so when
119 connecting (see the 'connect' command under COMMANDS).
120 When choosing between 'push' and 'export', Git prefers 'push'.
121 Other frontends may have some other order of preference.
123 'no-private-update'::
124         When using the 'refspec' capability, git normally updates the
125         private ref on successful push. This update is disabled when
126         the remote-helper declares the capability 'no-private-update'.
129 Capabilities for Fetching
130 ^^^^^^^^^^^^^^^^^^^^^^^^^
131 'connect'::
132         Can try to connect to 'git upload-pack' (for fetching),
133         'git receive-pack', etc for communication using the
134         Git's native packfile protocol. This
135         requires a bidirectional, full-duplex connection.
137 Supported commands: 'connect'.
139 'fetch'::
140         Can discover remote refs and transfer objects reachable from
141         them to the local object store.
143 Supported commands: 'list', 'fetch'.
145 'import'::
146         Can discover remote refs and output objects reachable from
147         them as a stream in fast-import format.
149 Supported commands: 'list', 'import'.
151 'check-connectivity'::
152         Can guarantee that when a clone is requested, the received
153         pack is self contained and is connected.
155 If a helper advertises 'connect', Git will use it if possible and
156 fall back to another capability if the helper requests so when
157 connecting (see the 'connect' command under COMMANDS).
158 When choosing between 'fetch' and 'import', Git prefers 'fetch'.
159 Other frontends may have some other order of preference.
161 Miscellaneous capabilities
162 ^^^^^^^^^^^^^^^^^^^^^^^^^^
164 'option'::
165         For specifying settings like `verbosity` (how much output to
166         write to stderr) and `depth` (how much history is wanted in the
167         case of a shallow clone) that affect how other commands are
168         carried out.
170 'refspec' <refspec>::
171         For remote helpers that implement 'import' or 'export', this capability
172         allows the refs to be constrained to a private namespace, instead of
173         writing to refs/heads or refs/remotes directly.
174         It is recommended that all importers providing the 'import'
175         capability use this. It's mandatory for 'export'.
177 A helper advertising the capability
178 `refspec refs/heads/*:refs/svn/origin/branches/*`
179 is saying that, when it is asked to `import refs/heads/topic`, the
180 stream it outputs will update the `refs/svn/origin/branches/topic`
181 ref.
183 This capability can be advertised multiple times.  The first
184 applicable refspec takes precedence.  The left-hand of refspecs
185 advertised with this capability must cover all refs reported by
186 the list command.  If no 'refspec' capability is advertised,
187 there is an implied `refspec *:*`.
189 'bidi-import'::
190         This modifies the 'import' capability.
191         The fast-import commands 'cat-blob' and 'ls' can be used by remote-helpers
192         to retrieve information about blobs and trees that already exist in
193         fast-import's memory. This requires a channel from fast-import to the
194         remote-helper.
195         If it is advertised in addition to "import", Git establishes a pipe from
196         fast-import to the remote-helper's stdin.
197         It follows that Git and fast-import are both connected to the
198         remote-helper's stdin. Because Git can send multiple commands to
199         the remote-helper it is required that helpers that use 'bidi-import'
200         buffer all 'import' commands of a batch before sending data to fast-import.
201         This is to prevent mixing commands and fast-import responses on the
202         helper's stdin.
204 'export-marks' <file>::
205         This modifies the 'export' capability, instructing Git to dump the
206         internal marks table to <file> when complete. For details,
207         read up on '--export-marks=<file>' in linkgit:git-fast-export[1].
209 'import-marks' <file>::
210         This modifies the 'export' capability, instructing Git to load the
211         marks specified in <file> before processing any input. For details,
212         read up on '--import-marks=<file>' in linkgit:git-fast-export[1].
214 'signed-tags'::
215         This modifies the 'export' capability, instructing Git to pass
216         '--signed-tags=verbatim' to linkgit:git-fast-export[1].  In the
217         absence of this capability, Git will use '--signed-tags=warn-strip'.
221 COMMANDS
222 --------
224 Commands are given by the caller on the helper's standard input, one per line.
226 'capabilities'::
227         Lists the capabilities of the helper, one per line, ending
228         with a blank line. Each capability may be preceded with '*',
229         which marks them mandatory for Git versions using the remote
230         helper to understand. Any unknown mandatory capability is a
231         fatal error.
233 Support for this command is mandatory.
235 'list'::
236         Lists the refs, one per line, in the format "<value> <name>
237         [<attr> ...]". The value may be a hex sha1 hash, "@<dest>" for
238         a symref, or "?" to indicate that the helper could not get the
239         value of the ref. A space-separated list of attributes follows
240         the name; unrecognized attributes are ignored. The list ends
241         with a blank line.
243 See REF LIST ATTRIBUTES for a list of currently defined attributes.
245 Supported if the helper has the "fetch" or "import" capability.
247 'list for-push'::
248         Similar to 'list', except that it is used if and only if
249         the caller wants to the resulting ref list to prepare
250         push commands.
251         A helper supporting both push and fetch can use this
252         to distinguish for which operation the output of 'list'
253         is going to be used, possibly reducing the amount
254         of work that needs to be performed.
256 Supported if the helper has the "push" or "export" capability.
258 'option' <name> <value>::
259         Sets the transport helper option <name> to <value>.  Outputs a
260         single line containing one of 'ok' (option successfully set),
261         'unsupported' (option not recognized) or 'error <msg>'
262         (option <name> is supported but <value> is not valid
263         for it).  Options should be set before other commands,
264         and may influence the behavior of those commands.
266 See OPTIONS for a list of currently defined options.
268 Supported if the helper has the "option" capability.
270 'fetch' <sha1> <name>::
271         Fetches the given object, writing the necessary objects
272         to the database.  Fetch commands are sent in a batch, one
273         per line, terminated with a blank line.
274         Outputs a single blank line when all fetch commands in the
275         same batch are complete. Only objects which were reported
276         in the output of 'list' with a sha1 may be fetched this way.
278 Optionally may output a 'lock <file>' line indicating a file under
279 GIT_DIR/objects/pack which is keeping a pack until refs can be
280 suitably updated.
282 If option 'check-connectivity' is requested, the helper must output
283 'connectivity-ok' if the clone is self-contained and connected.
285 Supported if the helper has the "fetch" capability.
287 'push' +<src>:<dst>::
288         Pushes the given local <src> commit or branch to the
289         remote branch described by <dst>.  A batch sequence of
290         one or more 'push' commands is terminated with a blank line
291         (if there is only one reference to push, a single 'push' command
292         is followed by a blank line). For example, the following would
293         be two batches of 'push', the first asking the remote-helper
294         to push the local ref 'master' to the remote ref 'master' and
295         the local 'HEAD' to the remote 'branch', and the second
296         asking to push ref 'foo' to ref 'bar' (forced update requested
297         by the '+').
299 ------------
300 push refs/heads/master:refs/heads/master
301 push HEAD:refs/heads/branch
303 push +refs/heads/foo:refs/heads/bar
305 ------------
307 Zero or more protocol options may be entered after the last 'push'
308 command, before the batch's terminating blank line.
310 When the push is complete, outputs one or more 'ok <dst>' or
311 'error <dst> <why>?' lines to indicate success or failure of
312 each pushed ref.  The status report output is terminated by
313 a blank line.  The option field <why> may be quoted in a C
314 style string if it contains an LF.
316 Supported if the helper has the "push" capability.
318 'import' <name>::
319         Produces a fast-import stream which imports the current value
320         of the named ref. It may additionally import other refs as
321         needed to construct the history efficiently. The script writes
322         to a helper-specific private namespace. The value of the named
323         ref should be written to a location in this namespace derived
324         by applying the refspecs from the "refspec" capability to the
325         name of the ref.
327 Especially useful for interoperability with a foreign versioning
328 system.
330 Just like 'push', a batch sequence of one or more 'import' is
331 terminated with a blank line. For each batch of 'import', the remote
332 helper should produce a fast-import stream terminated by a 'done'
333 command.
335 Note that if the 'bidi-import' capability is used the complete batch
336 sequence has to be buffered before starting to send data to fast-import
337 to prevent mixing of commands and fast-import responses on the helper's
338 stdin.
340 Supported if the helper has the "import" capability.
342 'export'::
343         Instructs the remote helper that any subsequent input is
344         part of a fast-import stream (generated by 'git fast-export')
345         containing objects which should be pushed to the remote.
347 Especially useful for interoperability with a foreign versioning
348 system.
350 The 'export-marks' and 'import-marks' capabilities, if specified,
351 affect this command in so far as they are passed on to 'git
352 fast-export', which then will load/store a table of marks for
353 local objects. This can be used to implement for incremental
354 operations.
356 Supported if the helper has the "export" capability.
358 'connect' <service>::
359         Connects to given service. Standard input and standard output
360         of helper are connected to specified service (git prefix is
361         included in service name so e.g. fetching uses 'git-upload-pack'
362         as service) on remote side. Valid replies to this command are
363         empty line (connection established), 'fallback' (no smart
364         transport support, fall back to dumb transports) and just
365         exiting with error message printed (can't connect, don't
366         bother trying to fall back). After line feed terminating the
367         positive (empty) response, the output of service starts. After
368         the connection ends, the remote helper exits.
370 Supported if the helper has the "connect" capability.
372 If a fatal error occurs, the program writes the error message to
373 stderr and exits. The caller should expect that a suitable error
374 message has been printed if the child closes the connection without
375 completing a valid response for the current command.
377 Additional commands may be supported, as may be determined from
378 capabilities reported by the helper.
380 REF LIST ATTRIBUTES
381 -------------------
383 The 'list' command produces a list of refs in which each ref
384 may be followed by a list of attributes. The following ref list
385 attributes are defined.
387 'unchanged'::
388         This ref is unchanged since the last import or fetch, although
389         the helper cannot necessarily determine what value that produced.
391 OPTIONS
392 -------
394 The following options are defined and (under suitable circumstances)
395 set by Git if the remote helper has the 'option' capability.
397 'option verbosity' <n>::
398         Changes the verbosity of messages displayed by the helper.
399         A value of 0 for <n> means that processes operate
400         quietly, and the helper produces only error output.
401         1 is the default level of verbosity, and higher values
402         of <n> correspond to the number of -v flags passed on the
403         command line.
405 'option progress' \{'true'|'false'\}::
406         Enables (or disables) progress messages displayed by the
407         transport helper during a command.
409 'option depth' <depth>::
410         Deepens the history of a shallow repository.
412 'option followtags' \{'true'|'false'\}::
413         If enabled the helper should automatically fetch annotated
414         tag objects if the object the tag points at was transferred
415         during the fetch command.  If the tag is not fetched by
416         the helper a second fetch command will usually be sent to
417         ask for the tag specifically.  Some helpers may be able to
418         use this option to avoid a second network connection.
420 'option dry-run' \{'true'|'false'\}:
421         If true, pretend the operation completed successfully,
422         but don't actually change any repository data.  For most
423         helpers this only applies to the 'push', if supported.
425 'option servpath <c-style-quoted-path>'::
426         Sets service path (--upload-pack, --receive-pack etc.) for
427         next connect. Remote helper may support this option, but
428         must not rely on this option being set before
429         connect request occurs.
431 'option check-connectivity' \{'true'|'false'\}::
432         Request the helper to check connectivity of a clone.
434 SEE ALSO
435 --------
436 linkgit:git-remote[1]
438 linkgit:git-remote-testgit[1]
442 Part of the linkgit:git[1] suite