]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/gitremote-helpers.txt
Merge branch 'mt/dir-iterator-updates'
[thirdparty/git.git] / Documentation / gitremote-helpers.txt
CommitLineData
439cc746 1gitremote-helpers(7)
bd4a3d61 2====================
6eb996b5
DB
3
4NAME
5----
bd4a3d61 6gitremote-helpers - Helper programs to interact with remote repositories
6eb996b5
DB
7
8SYNOPSIS
9--------
7791a1d9 10[verse]
b6c8d2d6 11'git remote-<transport>' <repository> [<URL>]
6eb996b5
DB
12
13DESCRIPTION
14-----------
15
00b84e9d 16Remote helper programs are normally not used directly by end users,
2de9b711
TA
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
00b84e9d
RR
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
2de9b711
TA
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.
00b84e9d 26
2de9b711 27Every helper must support the "capabilities" command, which Git
b4fc8d6a
JN
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.
00b84e9d
RR
32
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'.
6eb996b5 37
f829a9ea
MH
38INVOCATION
39----------
40
41Remote helper programs are invoked with one or (optionally) two
2de9b711 42arguments. The first argument specifies a remote repository as in Git;
f829a9ea
MH
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.
eee7f4a2 46The `GIT_DIR` environment variable is set up for the remote helper
f829a9ea 47and can be used to determine where to store additional data or from
2de9b711 48which directory to invoke auxiliary Git commands.
f829a9ea 49
2de9b711 50When Git encounters a URL of the form '<transport>://<address>', where
f829a9ea
MH
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
2de9b711 58A URL of the form '<transport>::<address>' explicitly instructs Git to
f829a9ea
MH
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
ae9f6311 64Additionally, when a configured remote has `remote.<name>.vcs` set to
2de9b711 65'<transport>', Git explicitly invokes 'git remote-<transport>' with
f829a9ea 66'<name>' as the first argument. If set, the second argument is
ae9f6311 67`remote.<name>.url`; otherwise, the second argument is omitted.
f829a9ea 68
b4fc8d6a
JN
69INPUT 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.
2de9b711 88The operations a helper supports are declared to Git in the response
b4fc8d6a
JN
89to the `capabilities` command (see COMMANDS, below).
90
0673bb28
MH
91In the following, we list all defined capabilities and for
92each we list which commands a helper with that capability
93must provide.
b4b106e5 94
b4fc8d6a 95Capabilities for Pushing
0673bb28 96^^^^^^^^^^^^^^^^^^^^^^^^
b4fc8d6a
JN
97'connect'::
98 Can attempt to connect to 'git receive-pack' (for pushing),
0673bb28
MH
99 'git upload-pack', etc for communication using
100 git's native packfile protocol. This
101 requires a bidirectional, full-duplex connection.
b4fc8d6a
JN
102+
103Supported commands: 'connect'.
104
edc9caf7
BW
105'stateless-connect'::
106 Experimental; for internal use only.
107 Can attempt to connect to a remote server for communication
108 using git's wire-protocol version 2. See the documentation
109 for the stateless-connect command for more information.
110+
111Supported commands: 'stateless-connect'.
112
b4fc8d6a
JN
113'push'::
114 Can discover remote refs and push local commits and the
115 history leading up to them to new or existing remote refs.
116+
117Supported commands: 'list for-push', 'push'.
118
b4b106e5
MH
119'export'::
120 Can discover remote refs and push specified objects from a
121 fast-import stream to remote refs.
122+
123Supported commands: 'list for-push', 'export'.
124
2de9b711 125If a helper advertises 'connect', Git will use it if possible and
b4b106e5
MH
126fall back to another capability if the helper requests so when
127connecting (see the 'connect' command under COMMANDS).
2de9b711 128When choosing between 'push' and 'export', Git prefers 'push'.
b4b106e5
MH
129Other frontends may have some other order of preference.
130
597b831a
MM
131'no-private-update'::
132 When using the 'refspec' capability, git normally updates the
133 private ref on successful push. This update is disabled when
134 the remote-helper declares the capability 'no-private-update'.
135
b4fc8d6a
JN
136
137Capabilities for Fetching
0673bb28 138^^^^^^^^^^^^^^^^^^^^^^^^^
b4fc8d6a
JN
139'connect'::
140 Can try to connect to 'git upload-pack' (for fetching),
141 'git receive-pack', etc for communication using the
2de9b711 142 Git's native packfile protocol. This
0673bb28 143 requires a bidirectional, full-duplex connection.
b4fc8d6a
JN
144+
145Supported commands: 'connect'.
146
edc9caf7
BW
147'stateless-connect'::
148 Experimental; for internal use only.
149 Can attempt to connect to a remote server for communication
150 using git's wire-protocol version 2. See the documentation
151 for the stateless-connect command for more information.
152+
153Supported commands: 'stateless-connect'.
154
b4fc8d6a
JN
155'fetch'::
156 Can discover remote refs and transfer objects reachable from
157 them to the local object store.
158+
159Supported commands: 'list', 'fetch'.
160
161'import'::
162 Can discover remote refs and output objects reachable from
163 them as a stream in fast-import format.
164+
165Supported commands: 'list', 'import'.
166
9ba38048
NTND
167'check-connectivity'::
168 Can guarantee that when a clone is requested, the received
169 pack is self contained and is connected.
170
2de9b711 171If a helper advertises 'connect', Git will use it if possible and
b4fc8d6a
JN
172fall back to another capability if the helper requests so when
173connecting (see the 'connect' command under COMMANDS).
2de9b711 174When choosing between 'fetch' and 'import', Git prefers 'fetch'.
b4fc8d6a
JN
175Other frontends may have some other order of preference.
176
0673bb28
MH
177Miscellaneous capabilities
178^^^^^^^^^^^^^^^^^^^^^^^^^^
179
180'option'::
181 For specifying settings like `verbosity` (how much output to
182 write to stderr) and `depth` (how much history is wanted in the
183 case of a shallow clone) that affect how other commands are
184 carried out.
185
b4fc8d6a 186'refspec' <refspec>::
bb0a5cc9
FC
187 For remote helpers that implement 'import' or 'export', this capability
188 allows the refs to be constrained to a private namespace, instead of
189 writing to refs/heads or refs/remotes directly.
0673bb28 190 It is recommended that all importers providing the 'import'
21610d82 191 capability use this. It's mandatory for 'export'.
b4fc8d6a 192+
0673bb28 193A helper advertising the capability
6cf378f0 194`refspec refs/heads/*:refs/svn/origin/branches/*`
0673bb28
MH
195is saying that, when it is asked to `import refs/heads/topic`, the
196stream it outputs will update the `refs/svn/origin/branches/topic`
197ref.
b4fc8d6a
JN
198+
199This capability can be advertised multiple times. The first
200applicable refspec takes precedence. The left-hand of refspecs
201advertised with this capability must cover all refs reported by
7a43c554
FC
202the list command. If no 'refspec' capability is advertised,
203there is an implied `refspec *:*`.
3f36eb43
MM
204+
205When writing remote-helpers for decentralized version control
206systems, it is advised to keep a local copy of the repository to
207interact with, and to let the private namespace refs point to this
208local repository, while the refs/remotes namespace is used to track
209the remote repository.
b4fc8d6a 210
0673bb28
MH
211'bidi-import'::
212 This modifies the 'import' capability.
213 The fast-import commands 'cat-blob' and 'ls' can be used by remote-helpers
214 to retrieve information about blobs and trees that already exist in
215 fast-import's memory. This requires a channel from fast-import to the
216 remote-helper.
2de9b711 217 If it is advertised in addition to "import", Git establishes a pipe from
0673bb28 218 fast-import to the remote-helper's stdin.
2de9b711
TA
219 It follows that Git and fast-import are both connected to the
220 remote-helper's stdin. Because Git can send multiple commands to
0673bb28
MH
221 the remote-helper it is required that helpers that use 'bidi-import'
222 buffer all 'import' commands of a batch before sending data to fast-import.
223 This is to prevent mixing commands and fast-import responses on the
224 helper's stdin.
225
226'export-marks' <file>::
2de9b711 227 This modifies the 'export' capability, instructing Git to dump the
0673bb28 228 internal marks table to <file> when complete. For details,
bcf9626a 229 read up on `--export-marks=<file>` in linkgit:git-fast-export[1].
0673bb28
MH
230
231'import-marks' <file>::
2de9b711 232 This modifies the 'export' capability, instructing Git to load the
0673bb28 233 marks specified in <file> before processing any input. For details,
bcf9626a 234 read up on `--import-marks=<file>` in linkgit:git-fast-export[1].
0673bb28 235
0d957a4d
JK
236'signed-tags'::
237 This modifies the 'export' capability, instructing Git to pass
bcf9626a
MM
238 `--signed-tags=verbatim` to linkgit:git-fast-export[1]. In the
239 absence of this capability, Git will use `--signed-tags=warn-strip`.
0673bb28
MH
240
241
242
6eb996b5
DB
243COMMANDS
244--------
245
246Commands are given by the caller on the helper's standard input, one per line.
247
248'capabilities'::
249 Lists the capabilities of the helper, one per line, ending
d43427d3 250 with a blank line. Each capability may be preceded with '*',
2de9b711 251 which marks them mandatory for Git versions using the remote
b20c457a
MH
252 helper to understand. Any unknown mandatory capability is a
253 fatal error.
754cb1ae
MH
254+
255Support for this command is mandatory.
6eb996b5
DB
256
257'list'::
258 Lists the refs, one per line, in the format "<value> <name>
259 [<attr> ...]". The value may be a hex sha1 hash, "@<dest>" for
260 a symref, or "?" to indicate that the helper could not get the
261 value of the ref. A space-separated list of attributes follows
d43427d3
RR
262 the name; unrecognized attributes are ignored. The list ends
263 with a blank line.
ae4efe19 264+
9ec8bcda
MH
265See REF LIST ATTRIBUTES for a list of currently defined attributes.
266+
754cb1ae
MH
267Supported if the helper has the "fetch" or "import" capability.
268
269'list for-push'::
270 Similar to 'list', except that it is used if and only if
271 the caller wants to the resulting ref list to prepare
272 push commands.
273 A helper supporting both push and fetch can use this
274 to distinguish for which operation the output of 'list'
275 is going to be used, possibly reducing the amount
276 of work that needs to be performed.
277+
278Supported if the helper has the "push" or "export" capability.
6eb996b5 279
ef08ef9e 280'option' <name> <value>::
d43427d3 281 Sets the transport helper option <name> to <value>. Outputs a
ef08ef9e
SP
282 single line containing one of 'ok' (option successfully set),
283 'unsupported' (option not recognized) or 'error <msg>'
d43427d3 284 (option <name> is supported but <value> is not valid
ef08ef9e 285 for it). Options should be set before other commands,
d43427d3 286 and may influence the behavior of those commands.
ef08ef9e 287+
9ec8bcda
MH
288See OPTIONS for a list of currently defined options.
289+
ef08ef9e 290Supported if the helper has the "option" capability.
6eb996b5
DB
291
292'fetch' <sha1> <name>::
292ce46b
SP
293 Fetches the given object, writing the necessary objects
294 to the database. Fetch commands are sent in a batch, one
d43427d3 295 per line, terminated with a blank line.
292ce46b
SP
296 Outputs a single blank line when all fetch commands in the
297 same batch are complete. Only objects which were reported
9ec8bcda 298 in the output of 'list' with a sha1 may be fetched this way.
292ce46b
SP
299+
300Optionally may output a 'lock <file>' line indicating a file under
301GIT_DIR/objects/pack which is keeping a pack until refs can be
302suitably updated.
6eb996b5 303+
9ba38048
NTND
304If option 'check-connectivity' is requested, the helper must output
305'connectivity-ok' if the clone is self-contained and connected.
306+
6eb996b5
DB
307Supported if the helper has the "fetch" capability.
308
ae4efe19 309'push' +<src>:<dst>::
d43427d3 310 Pushes the given local <src> commit or branch to the
ae4efe19 311 remote branch described by <dst>. A batch sequence of
960e3114
MM
312 one or more 'push' commands is terminated with a blank line
313 (if there is only one reference to push, a single 'push' command
314 is followed by a blank line). For example, the following would
315 be two batches of 'push', the first asking the remote-helper
316 to push the local ref 'master' to the remote ref 'master' and
661c3e9b 317 the local `HEAD` to the remote 'branch', and the second
960e3114
MM
318 asking to push ref 'foo' to ref 'bar' (forced update requested
319 by the '+').
320+
321------------
322push refs/heads/master:refs/heads/master
323push HEAD:refs/heads/branch
324\n
325push +refs/heads/foo:refs/heads/bar
326\n
327------------
ae4efe19
SP
328+
329Zero or more protocol options may be entered after the last 'push'
330command, before the batch's terminating blank line.
331+
332When the push is complete, outputs one or more 'ok <dst>' or
333'error <dst> <why>?' lines to indicate success or failure of
334each pushed ref. The status report output is terminated by
335a blank line. The option field <why> may be quoted in a C
336style string if it contains an LF.
337+
338Supported if the helper has the "push" capability.
339
e65e91ed
DB
340'import' <name>::
341 Produces a fast-import stream which imports the current value
342 of the named ref. It may additionally import other refs as
72ff8943
DB
343 needed to construct the history efficiently. The script writes
344 to a helper-specific private namespace. The value of the named
345 ref should be written to a location in this namespace derived
346 by applying the refspecs from the "refspec" capability to the
347 name of the ref.
e65e91ed 348+
d43427d3
RR
349Especially useful for interoperability with a foreign versioning
350system.
351+
960e3114
MM
352Just like 'push', a batch sequence of one or more 'import' is
353terminated with a blank line. For each batch of 'import', the remote
354helper should produce a fast-import stream terminated by a 'done'
355command.
356+
271bfd67
FA
357Note that if the 'bidi-import' capability is used the complete batch
358sequence has to be buffered before starting to send data to fast-import
359to prevent mixing of commands and fast-import responses on the helper's
360stdin.
361+
754cb1ae 362Supported if the helper has the "import" capability.
e65e91ed 363
b4b106e5
MH
364'export'::
365 Instructs the remote helper that any subsequent input is
366 part of a fast-import stream (generated by 'git fast-export')
367 containing objects which should be pushed to the remote.
368+
369Especially useful for interoperability with a foreign versioning
370system.
371+
372The 'export-marks' and 'import-marks' capabilities, if specified,
373affect this command in so far as they are passed on to 'git
374fast-export', which then will load/store a table of marks for
375local objects. This can be used to implement for incremental
376operations.
377+
754cb1ae 378Supported if the helper has the "export" capability.
b4b106e5 379
fa8c097c
IL
380'connect' <service>::
381 Connects to given service. Standard input and standard output
382 of helper are connected to specified service (git prefix is
383 included in service name so e.g. fetching uses 'git-upload-pack'
384 as service) on remote side. Valid replies to this command are
385 empty line (connection established), 'fallback' (no smart
386 transport support, fall back to dumb transports) and just
387 exiting with error message printed (can't connect, don't
388 bother trying to fall back). After line feed terminating the
389 positive (empty) response, the output of service starts. After
390 the connection ends, the remote helper exits.
391+
392Supported if the helper has the "connect" capability.
393
edc9caf7
BW
394'stateless-connect' <service>::
395 Experimental; for internal use only.
396 Connects to the given remote service for communication using
397 git's wire-protocol version 2. Valid replies to this command
398 are empty line (connection established), 'fallback' (no smart
399 transport support, fall back to dumb transports) and just
400 exiting with error message printed (can't connect, don't bother
401 trying to fall back). After line feed terminating the positive
402 (empty) response, the output of the service starts. Messages
403 (both request and response) must consist of zero or more
404 PKT-LINEs, terminating in a flush packet. The client must not
405 expect the server to store any state in between request-response
406 pairs. After the connection ends, the remote helper exits.
407+
408Supported if the helper has the "stateless-connect" capability.
409
6eb996b5
DB
410If a fatal error occurs, the program writes the error message to
411stderr and exits. The caller should expect that a suitable error
412message has been printed if the child closes the connection without
413completing a valid response for the current command.
414
415Additional commands may be supported, as may be determined from
416capabilities reported by the helper.
417
6eb996b5
DB
418REF LIST ATTRIBUTES
419-------------------
420
9ec8bcda
MH
421The 'list' command produces a list of refs in which each ref
422may be followed by a list of attributes. The following ref list
423attributes are defined.
6eb996b5 424
f8ec9167
DB
425'unchanged'::
426 This ref is unchanged since the last import or fetch, although
427 the helper cannot necessarily determine what value that produced.
6eb996b5 428
ef08ef9e
SP
429OPTIONS
430-------
9ec8bcda
MH
431
432The following options are defined and (under suitable circumstances)
2de9b711 433set by Git if the remote helper has the 'option' capability.
9ec8bcda 434
3b0d2405 435'option verbosity' <n>::
d43427d3 436 Changes the verbosity of messages displayed by the helper.
3b0d2405 437 A value of 0 for <n> means that processes operate
d43427d3
RR
438 quietly, and the helper produces only error output.
439 1 is the default level of verbosity, and higher values
3b0d2405 440 of <n> correspond to the number of -v flags passed on the
ef08ef9e
SP
441 command line.
442
4538a882 443'option progress' {'true'|'false'}::
d43427d3 444 Enables (or disables) progress messages displayed by the
ef08ef9e
SP
445 transport helper during a command.
446
447'option depth' <depth>::
d43427d3 448 Deepens the history of a shallow repository.
ef08ef9e 449
508ea882
NTND
450'option deepen-since <timestamp>::
451 Deepens the history of a shallow repository based on time.
452
a45a2600
NTND
453'option deepen-not <ref>::
454 Deepens the history of a shallow repository excluding ref.
455 Multiple options add up.
456
cccf74e2
NTND
457'option deepen-relative {'true'|'false'}::
458 Deepens the history of a shallow repository relative to
459 current boundary. Only valid when used with "option depth".
460
4538a882 461'option followtags' {'true'|'false'}::
ef08ef9e
SP
462 If enabled the helper should automatically fetch annotated
463 tag objects if the object the tag points at was transferred
464 during the fetch command. If the tag is not fetched by
465 the helper a second fetch command will usually be sent to
466 ask for the tag specifically. Some helpers may be able to
467 use this option to avoid a second network connection.
468
4538a882 469'option dry-run' {'true'|'false'}:
ae4efe19 470 If true, pretend the operation completed successfully,
8d75a1d1 471 but don't actually change any repository data. For most
ae4efe19
SP
472 helpers this only applies to the 'push', if supported.
473
fa8c097c 474'option servpath <c-style-quoted-path>'::
d43427d3
RR
475 Sets service path (--upload-pack, --receive-pack etc.) for
476 next connect. Remote helper may support this option, but
477 must not rely on this option being set before
fa8c097c
IL
478 connect request occurs.
479
4538a882 480'option check-connectivity' {'true'|'false'}::
9ba38048
NTND
481 Request the helper to check connectivity of a clone.
482
4538a882 483'option force' {'true'|'false'}::
510fa6f5
FC
484 Request the helper to perform a force update. Defaults to
485 'false'.
486
2aaf37b6 487'option cloning' {'true'|'false'}::
16094885
NTND
488 Notify the helper this is a clone request (i.e. the current
489 repository is guaranteed empty).
490
2aaf37b6 491'option update-shallow' {'true'|'false'}::
16094885
NTND
492 Allow to extend .git/shallow if the new refs require it.
493
2aaf37b6 494'option pushcert' {'true'|'false'}::
b9299a2b
DB
495 GPG sign pushes.
496
438fc684 497'option push-option <string>::
5621760f 498 Transmit <string> as a push option. As the push option
438fc684
SB
499 must not contain LF or NUL characters, the string is not encoded.
500
88e2f9ed
JT
501'option from-promisor' {'true'|'false'}::
502 Indicate that these objects are being fetched from a promisor.
503
504'option no-dependents' {'true'|'false'}::
505 Indicate that only the objects wanted need to be fetched, not
506 their dependents.
507
b6c8d2d6
RR
508SEE ALSO
509--------
510linkgit:git-remote[1]
511
26726718
MH
512linkgit:git-remote-ext[1]
513
514linkgit:git-remote-fd[1]
515
26726718
MH
516linkgit:git-fast-import[1]
517
6eb996b5
DB
518GIT
519---
520Part of the linkgit:git[1] suite