blob: 6f1e269ae43e00d631feb8798a2a95aef48e8287 [file] [log] [blame]
Junio C Hamanob5513772019-04-22 03:38:391gitremote-helpers(7)
Junio C Hamanob5e079f2013-02-08 00:02:522====================
Junio C Hamano7df6dcf2009-09-13 09:51:173
4NAME
5----
Junio C Hamanob5e079f2013-02-08 00:02:526gitremote-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,
Junio C Hamano076ffcc2013-02-06 05:13:2117but 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
Junio C Hamano0c053e82010-04-19 06:46:3420needs 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
Junio C Hamano076ffcc2013-02-06 05:13:2124Git, 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.
Junio C Hamano0c053e82010-04-19 06:46:3426
Junio C Hamano076ffcc2013-02-06 05:13:2127Every helper must support the "capabilities" command, which Git
Junio C Hamano7bd050f2011-09-22 06:32:2228uses 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
Junio C Hamano076ffcc2013-02-06 05:13:2142arguments. The first argument specifies a remote repository as in Git;
Junio C Hamano0c053e82010-04-19 06:46:3443it 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 Hamano042f2142016-06-27 18:05:0546The `GIT_DIR` environment variable is set up for the remote helper
Junio C Hamanofbc773c2011-08-02 00:09:1247and can be used to determine where to store additional data or from
Junio C Hamano076ffcc2013-02-06 05:13:2148which directory to invoke auxiliary Git commands.
Junio C Hamano0c053e82010-04-19 06:46:3449
Junio C Hamano076ffcc2013-02-06 05:13:2150When Git encounters a URL of the form '<transport>://<address>', where
Junio C Hamano0c053e82010-04-19 06:46:3451'<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
Junio C Hamano076ffcc2013-02-06 05:13:2158A URL of the form '<transport>::<address>' explicitly instructs Git to
Junio C Hamano0c053e82010-04-19 06:46:3459invoke '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
Junio C Hamano042f2142016-06-27 18:05:0564Additionally, when a configured remote has `remote.<name>.vcs` set to
Junio C Hamano076ffcc2013-02-06 05:13:2165'<transport>', Git explicitly invokes 'git remote-<transport>' with
Junio C Hamano0c053e82010-04-19 06:46:3466'<name>' as the first argument. If set, the second argument is
Junio C Hamano042f2142016-06-27 18:05:0567`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.
Junio C Hamano076ffcc2013-02-06 05:13:2188The operations a helper supports are declared to Git in the response
Junio C Hamano0b0417b2012-12-13 20:35:0289to 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
Junio C Hamanoccb82522018-05-08 07:52:09105'stateless-connect'::
106Experimental; for internal use only.
107Can attempt to connect to a remote server for communication
108using git's wire-protocol version 2. See the documentation
109for the stateless-connect command for more information.
110+
111Supported commands: 'stateless-connect'.
112
Junio C Hamano0b0417b2012-12-13 20:35:02113'push'::
114Can discover remote refs and push local commits and the
115history leading up to them to new or existing remote refs.
116+
117Supported commands: 'list for-push', 'push'.
118
119'export'::
120Can discover remote refs and push specified objects from a
121fast-import stream to remote refs.
122+
123Supported commands: 'list for-push', 'export'.
124
Junio C Hamano076ffcc2013-02-06 05:13:21125If a helper advertises 'connect', Git will use it if possible and
Junio C Hamano0b0417b2012-12-13 20:35:02126fall back to another capability if the helper requests so when
127connecting (see the 'connect' command under COMMANDS).
Junio C Hamano076ffcc2013-02-06 05:13:21128When choosing between 'push' and 'export', Git prefers 'push'.
Junio C Hamano0b0417b2012-12-13 20:35:02129Other frontends may have some other order of preference.
130
Junio C Hamano0e0e0d22013-09-12 23:25:03131'no-private-update'::
132When using the 'refspec' capability, git normally updates the
133private ref on successful push. This update is disabled when
134the remote-helper declares the capability 'no-private-update'.
135
Junio C Hamano0b0417b2012-12-13 20:35:02136
137Capabilities for Fetching
138^^^^^^^^^^^^^^^^^^^^^^^^^
139'connect'::
140Can try to connect to 'git upload-pack' (for fetching),
141'git receive-pack', etc for communication using the
Junio C Hamano076ffcc2013-02-06 05:13:21142Git's native packfile protocol. This
Junio C Hamano0b0417b2012-12-13 20:35:02143requires a bidirectional, full-duplex connection.
144+
145Supported commands: 'connect'.
146
Junio C Hamanoccb82522018-05-08 07:52:09147'stateless-connect'::
148Experimental; for internal use only.
149Can attempt to connect to a remote server for communication
150using git's wire-protocol version 2. See the documentation
151for the stateless-connect command for more information.
152+
153Supported commands: 'stateless-connect'.
154
Junio C Hamano0b0417b2012-12-13 20:35:02155'fetch'::
156Can discover remote refs and transfer objects reachable from
157them to the local object store.
158+
159Supported commands: 'list', 'fetch'.
160
161'import'::
162Can discover remote refs and output objects reachable from
163them as a stream in fast-import format.
164+
165Supported commands: 'list', 'import'.
166
Junio C Hamano8eac2682013-09-09 22:35:20167'check-connectivity'::
168Can guarantee that when a clone is requested, the received
169pack is self contained and is connected.
170
Junio C Hamano076ffcc2013-02-06 05:13:21171If a helper advertises 'connect', Git will use it if possible and
Junio C Hamano0b0417b2012-12-13 20:35:02172fall back to another capability if the helper requests so when
173connecting (see the 'connect' command under COMMANDS).
Junio C Hamano076ffcc2013-02-06 05:13:21174When choosing between 'fetch' and 'import', Git prefers 'fetch'.
Junio C Hamano0b0417b2012-12-13 20:35:02175Other frontends may have some other order of preference.
176
177Miscellaneous capabilities
178^^^^^^^^^^^^^^^^^^^^^^^^^^
179
180'option'::
181For specifying settings like `verbosity` (how much output to
182write to stderr) and `depth` (how much history is wanted in the
183case of a shallow clone) that affect how other commands are
184carried out.
185
186'refspec' <refspec>::
Junio C Hamanoc7102962013-05-29 23:57:17187For remote helpers that implement 'import' or 'export', this capability
188allows the refs to be constrained to a private namespace, instead of
189writing to refs/heads or refs/remotes directly.
Junio C Hamano0b0417b2012-12-13 20:35:02190It is recommended that all importers providing the 'import'
Junio C Hamanoc7102962013-05-29 23:57:17191capability use this. It's mandatory for 'export'.
Junio C Hamano0b0417b2012-12-13 20:35:02192+
193A helper advertising the capability
194`refspec refs/heads/*:refs/svn/origin/branches/*`
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.
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
Junio C Hamanoc7102962013-05-29 23:57:17202the list command. If no 'refspec' capability is advertised,
203there is an implied `refspec *:*`.
Junio C Hamano0e0e0d22013-09-12 23:25:03204+
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.
Junio C Hamano0b0417b2012-12-13 20:35:02210
211'bidi-import'::
212This modifies the 'import' capability.
213The fast-import commands 'cat-blob' and 'ls' can be used by remote-helpers
214to retrieve information about blobs and trees that already exist in
215fast-import's memory. This requires a channel from fast-import to the
216remote-helper.
Junio C Hamano076ffcc2013-02-06 05:13:21217If it is advertised in addition to "import", Git establishes a pipe from
Junio C Hamano0b0417b2012-12-13 20:35:02218fast-import to the remote-helper's stdin.
Junio C Hamano076ffcc2013-02-06 05:13:21219It follows that Git and fast-import are both connected to the
220remote-helper's stdin. Because Git can send multiple commands to
Junio C Hamano0b0417b2012-12-13 20:35:02221the remote-helper it is required that helpers that use 'bidi-import'
222buffer all 'import' commands of a batch before sending data to fast-import.
223This is to prevent mixing commands and fast-import responses on the
224helper's stdin.
225
226'export-marks' <file>::
Junio C Hamano076ffcc2013-02-06 05:13:21227This modifies the 'export' capability, instructing Git to dump the
Junio C Hamano0b0417b2012-12-13 20:35:02228internal marks table to <file> when complete. For details,
Junio C Hamano92d80372016-07-13 22:00:05229read up on `--export-marks=<file>` in linkgit:git-fast-export[1].
Junio C Hamano0b0417b2012-12-13 20:35:02230
231'import-marks' <file>::
Junio C Hamano076ffcc2013-02-06 05:13:21232This modifies the 'export' capability, instructing Git to load the
Junio C Hamano0b0417b2012-12-13 20:35:02233marks specified in <file> before processing any input. For details,
Junio C Hamano92d80372016-07-13 22:00:05234read up on `--import-marks=<file>` in linkgit:git-fast-export[1].
Junio C Hamano0b0417b2012-12-13 20:35:02235
Junio C Hamanoac002b62013-04-25 01:02:58236'signed-tags'::
237This modifies the 'export' capability, instructing Git to pass
Junio C Hamano92d80372016-07-13 22:00:05238`--signed-tags=verbatim` to linkgit:git-fast-export[1]. In the
239absence of this capability, Git will use `--signed-tags=warn-strip`.
Junio C Hamano0b0417b2012-12-13 20:35:02240
Junio C Hamanoa8911782020-07-07 05:35:57241'object-format'::
242This indicates that the helper is able to interact with the remote
243side using an explicit hash algorithm extension.
Junio C Hamano0b0417b2012-12-13 20:35:02244
245
Junio C Hamano7df6dcf2009-09-13 09:51:17246COMMANDS
247--------
248
249Commands are given by the caller on the helper's standard input, one per line.
250
251'capabilities'::
252Lists the capabilities of the helper, one per line, ending
Junio C Hamano0c053e82010-04-19 06:46:34253with a blank line. Each capability may be preceded with '*',
Junio C Hamano076ffcc2013-02-06 05:13:21254which marks them mandatory for Git versions using the remote
Junio C Hamano0b0417b2012-12-13 20:35:02255helper to understand. Any unknown mandatory capability is a
256fatal error.
257+
258Support for this command is mandatory.
Junio C Hamano7df6dcf2009-09-13 09:51:17259
260'list'::
261Lists the refs, one per line, in the format "<value> <name>
262[<attr> ...]". The value may be a hex sha1 hash, "@<dest>" for
Junio C Hamanoa8911782020-07-07 05:35:57263a symref, ":<keyword> <value>" for a key-value pair, or
264"?" to indicate that the helper could not get the value of the
265ref. A space-separated list of attributes follows the name;
266unrecognized attributes are ignored. The list ends with a
267blank line.
Junio C Hamano3b70d3c2009-11-21 17:37:37268+
Junio C Hamano0b0417b2012-12-13 20:35:02269See REF LIST ATTRIBUTES for a list of currently defined attributes.
Junio C Hamanoa8911782020-07-07 05:35:57270See REF LIST KEYWORDS for a list of currently defined keywords.
Junio C Hamano0b0417b2012-12-13 20:35:02271+
272Supported if the helper has the "fetch" or "import" capability.
273
274'list for-push'::
275Similar to 'list', except that it is used if and only if
276the caller wants to the resulting ref list to prepare
277push commands.
278A helper supporting both push and fetch can use this
279to distinguish for which operation the output of 'list'
280is going to be used, possibly reducing the amount
281of work that needs to be performed.
282+
283Supported if the helper has the "push" or "export" capability.
Junio C Hamano3b70d3c2009-11-21 17:37:37284
285'option' <name> <value>::
Junio C Hamano0c053e82010-04-19 06:46:34286Sets the transport helper option <name> to <value>. Outputs a
Junio C Hamano3b70d3c2009-11-21 17:37:37287single line containing one of 'ok' (option successfully set),
288'unsupported' (option not recognized) or 'error <msg>'
Junio C Hamano0c053e82010-04-19 06:46:34289(option <name> is supported but <value> is not valid
Junio C Hamano3b70d3c2009-11-21 17:37:37290for it). Options should be set before other commands,
Junio C Hamano0c053e82010-04-19 06:46:34291and may influence the behavior of those commands.
Junio C Hamano3b70d3c2009-11-21 17:37:37292+
Junio C Hamano0b0417b2012-12-13 20:35:02293See OPTIONS for a list of currently defined options.
294+
Junio C Hamano3b70d3c2009-11-21 17:37:37295Supported if the helper has the "option" capability.
Junio C Hamano7df6dcf2009-09-13 09:51:17296
297'fetch' <sha1> <name>::
Junio C Hamano3b70d3c2009-11-21 17:37:37298Fetches the given object, writing the necessary objects
299to the database. Fetch commands are sent in a batch, one
Junio C Hamano0c053e82010-04-19 06:46:34300per line, terminated with a blank line.
Junio C Hamano3b70d3c2009-11-21 17:37:37301Outputs a single blank line when all fetch commands in the
302same batch are complete. Only objects which were reported
Junio C Hamano0b0417b2012-12-13 20:35:02303in the output of 'list' with a sha1 may be fetched this way.
Junio C Hamano3b70d3c2009-11-21 17:37:37304+
Junio C Hamanoa8858312019-09-30 05:07:45305Optionally may output a 'lock <file>' line indicating the full path of
306a file under `$GIT_DIR/objects/pack` which is keeping a pack until
307refs can be suitably updated. The path must end with `.keep`. This is
308a mechanism to name a <pack,idx,keep> tuple by giving only the keep
309component. The kept pack will not be deleted by a concurrent repack,
310even though its objects may not be referenced until the fetch completes.
311The `.keep` file will be deleted at the conclusion of the fetch.
Junio C Hamano7df6dcf2009-09-13 09:51:17312+
Junio C Hamano8eac2682013-09-09 22:35:20313If option 'check-connectivity' is requested, the helper must output
314'connectivity-ok' if the clone is self-contained and connected.
315+
Junio C Hamano7df6dcf2009-09-13 09:51:17316Supported if the helper has the "fetch" capability.
317
Junio C Hamano3b70d3c2009-11-21 17:37:37318'push' +<src>:<dst>::
Junio C Hamano0c053e82010-04-19 06:46:34319Pushes the given local <src> commit or branch to the
Junio C Hamano3b70d3c2009-11-21 17:37:37320remote branch described by <dst>. A batch sequence of
Junio C Hamano7bd050f2011-09-22 06:32:22321one or more 'push' commands is terminated with a blank line
322(if there is only one reference to push, a single 'push' command
323is followed by a blank line). For example, the following would
324be two batches of 'push', the first asking the remote-helper
325to push the local ref 'master' to the remote ref 'master' and
Junio C Hamano92d80372016-07-13 22:00:05326the local `HEAD` to the remote 'branch', and the second
Junio C Hamano7bd050f2011-09-22 06:32:22327asking to push ref 'foo' to ref 'bar' (forced update requested
328by the '+').
329+
330------------
331push refs/heads/master:refs/heads/master
332push HEAD:refs/heads/branch
333\n
334push +refs/heads/foo:refs/heads/bar
335\n
336------------
Junio C Hamano3b70d3c2009-11-21 17:37:37337+
338Zero or more protocol options may be entered after the last 'push'
339command, before the batch's terminating blank line.
340+
341When the push is complete, outputs one or more 'ok <dst>' or
342'error <dst> <why>?' lines to indicate success or failure of
343each pushed ref. The status report output is terminated by
344a blank line. The option field <why> may be quoted in a C
345style string if it contains an LF.
346+
347Supported if the helper has the "push" capability.
348
Junio C Hamano096dde22009-12-26 23:14:11349'import' <name>::
350Produces a fast-import stream which imports the current value
351of the named ref. It may additionally import other refs as
352needed to construct the history efficiently. The script writes
353to a helper-specific private namespace. The value of the named
354ref should be written to a location in this namespace derived
355by applying the refspecs from the "refspec" capability to the
356name of the ref.
357+
Junio C Hamano0c053e82010-04-19 06:46:34358Especially useful for interoperability with a foreign versioning
359system.
360+
Junio C Hamano7bd050f2011-09-22 06:32:22361Just like 'push', a batch sequence of one or more 'import' is
362terminated with a blank line. For each batch of 'import', the remote
363helper should produce a fast-import stream terminated by a 'done'
364command.
365+
Junio C Hamanoa1295452012-11-13 22:32:04366Note that if the 'bidi-import' capability is used the complete batch
367sequence has to be buffered before starting to send data to fast-import
368to prevent mixing of commands and fast-import responses on the helper's
369stdin.
370+
Junio C Hamano0b0417b2012-12-13 20:35:02371Supported if the helper has the "import" capability.
372
373'export'::
374Instructs the remote helper that any subsequent input is
375part of a fast-import stream (generated by 'git fast-export')
376containing objects which should be pushed to the remote.
377+
378Especially useful for interoperability with a foreign versioning
379system.
380+
381The 'export-marks' and 'import-marks' capabilities, if specified,
382affect this command in so far as they are passed on to 'git
383fast-export', which then will load/store a table of marks for
384local objects. This can be used to implement for incremental
385operations.
386+
387Supported if the helper has the "export" capability.
Junio C Hamano096dde22009-12-26 23:14:11388
Junio C Hamano3c8d6702010-01-13 23:09:03389'connect' <service>::
390Connects to given service. Standard input and standard output
391of helper are connected to specified service (git prefix is
392included in service name so e.g. fetching uses 'git-upload-pack'
393as service) on remote side. Valid replies to this command are
394empty line (connection established), 'fallback' (no smart
395transport support, fall back to dumb transports) and just
396exiting with error message printed (can't connect, don't
397bother trying to fall back). After line feed terminating the
398positive (empty) response, the output of service starts. After
399the connection ends, the remote helper exits.
400+
401Supported if the helper has the "connect" capability.
402
Junio C Hamanoccb82522018-05-08 07:52:09403'stateless-connect' <service>::
404Experimental; for internal use only.
405Connects to the given remote service for communication using
406git's wire-protocol version 2. Valid replies to this command
407are empty line (connection established), 'fallback' (no smart
408transport support, fall back to dumb transports) and just
409exiting with error message printed (can't connect, don't bother
410trying to fall back). After line feed terminating the positive
411(empty) response, the output of the service starts. Messages
412(both request and response) must consist of zero or more
Junio C Hamano19f41f02020-06-09 01:34:59413PKT-LINEs, terminating in a flush packet. Response messages will
414then have a response end packet after the flush packet to
415indicate the end of a response. The client must not
Junio C Hamanoccb82522018-05-08 07:52:09416expect the server to store any state in between request-response
417pairs. After the connection ends, the remote helper exits.
418+
419Supported if the helper has the "stateless-connect" capability.
420
Junio C Hamano7df6dcf2009-09-13 09:51:17421If a fatal error occurs, the program writes the error message to
422stderr and exits. The caller should expect that a suitable error
423message has been printed if the child closes the connection without
424completing a valid response for the current command.
425
426Additional commands may be supported, as may be determined from
427capabilities reported by the helper.
428
Junio C Hamano7df6dcf2009-09-13 09:51:17429REF LIST ATTRIBUTES
430-------------------
431
Junio C Hamano0b0417b2012-12-13 20:35:02432The 'list' command produces a list of refs in which each ref
433may be followed by a list of attributes. The following ref list
434attributes are defined.
Junio C Hamano3b70d3c2009-11-21 17:37:37435
Junio C Hamano096dde22009-12-26 23:14:11436'unchanged'::
437This ref is unchanged since the last import or fetch, although
438the helper cannot necessarily determine what value that produced.
439
Junio C Hamanoa8911782020-07-07 05:35:57440REF LIST KEYWORDS
441-----------------
442
443The 'list' command may produce a list of key-value pairs.
444The following keys are defined.
445
446'object-format'::
447The refs are using the given hash algorithm. This keyword is only
448used if the server and client both support the object-format
449extension.
450
451
Junio C Hamano3b70d3c2009-11-21 17:37:37452OPTIONS
453-------
Junio C Hamano0b0417b2012-12-13 20:35:02454
455The following options are defined and (under suitable circumstances)
Junio C Hamano076ffcc2013-02-06 05:13:21456set by Git if the remote helper has the 'option' capability.
Junio C Hamano0b0417b2012-12-13 20:35:02457
Junio C Hamano63c2bc92011-02-28 06:41:28458'option verbosity' <n>::
Junio C Hamano0c053e82010-04-19 06:46:34459Changes the verbosity of messages displayed by the helper.
Junio C Hamano63c2bc92011-02-28 06:41:28460A value of 0 for <n> means that processes operate
Junio C Hamano0c053e82010-04-19 06:46:34461quietly, and the helper produces only error output.
4621 is the default level of verbosity, and higher values
Junio C Hamano63c2bc92011-02-28 06:41:28463of <n> correspond to the number of -v flags passed on the
Junio C Hamano3b70d3c2009-11-21 17:37:37464command line.
465
Junio C Hamano1dbca522015-05-22 20:48:55466'option progress' {'true'|'false'}::
Junio C Hamano0c053e82010-04-19 06:46:34467Enables (or disables) progress messages displayed by the
Junio C Hamano3b70d3c2009-11-21 17:37:37468transport helper during a command.
469
470'option depth' <depth>::
Junio C Hamano0c053e82010-04-19 06:46:34471Deepens the history of a shallow repository.
Junio C Hamano3b70d3c2009-11-21 17:37:37472
Junio C Hamano20829a42016-10-10 23:24:44473'option deepen-since <timestamp>::
474Deepens the history of a shallow repository based on time.
475
476'option deepen-not <ref>::
477Deepens the history of a shallow repository excluding ref.
478Multiple options add up.
479
480'option deepen-relative {'true'|'false'}::
481Deepens the history of a shallow repository relative to
482current boundary. Only valid when used with "option depth".
483
Junio C Hamano1dbca522015-05-22 20:48:55484'option followtags' {'true'|'false'}::
Junio C Hamano3b70d3c2009-11-21 17:37:37485If enabled the helper should automatically fetch annotated
486tag objects if the object the tag points at was transferred
487during the fetch command. If the tag is not fetched by
488the helper a second fetch command will usually be sent to
489ask for the tag specifically. Some helpers may be able to
490use this option to avoid a second network connection.
491
Junio C Hamano1dbca522015-05-22 20:48:55492'option dry-run' {'true'|'false'}:
Junio C Hamano3b70d3c2009-11-21 17:37:37493If true, pretend the operation completed successfully,
Junio C Hamano6b7d2152019-04-16 12:51:15494but don't actually change any repository data. For most
Junio C Hamano3b70d3c2009-11-21 17:37:37495helpers this only applies to the 'push', if supported.
Junio C Hamano7df6dcf2009-09-13 09:51:17496
Junio C Hamano3c8d6702010-01-13 23:09:03497'option servpath <c-style-quoted-path>'::
Junio C Hamano0c053e82010-04-19 06:46:34498Sets service path (--upload-pack, --receive-pack etc.) for
499next connect. Remote helper may support this option, but
500must not rely on this option being set before
Junio C Hamano3c8d6702010-01-13 23:09:03501connect request occurs.
502
Junio C Hamano1dbca522015-05-22 20:48:55503'option check-connectivity' {'true'|'false'}::
Junio C Hamano8eac2682013-09-09 22:35:20504Request the helper to check connectivity of a clone.
505
Junio C Hamano1dbca522015-05-22 20:48:55506'option force' {'true'|'false'}::
Junio C Hamano3b0cdc22014-03-18 22:06:16507Request the helper to perform a force update. Defaults to
508'false'.
509
Junio C Hamanoe89102f2017-02-15 23:18:15510'option cloning' {'true'|'false'}::
Junio C Hamano61525f92014-01-17 22:46:49511Notify the helper this is a clone request (i.e. the current
512repository is guaranteed empty).
513
Junio C Hamanoe89102f2017-02-15 23:18:15514'option update-shallow' {'true'|'false'}::
Junio C Hamano61525f92014-01-17 22:46:49515Allow to extend .git/shallow if the new refs require it.
516
Junio C Hamanoe89102f2017-02-15 23:18:15517'option pushcert' {'true'|'false'}::
Junio C Hamano3891e252015-08-31 23:06:13518GPG sign pushes.
519
Junio C Hamanoe89102f2017-02-15 23:18:15520'option push-option <string>::
Junio C Hamano4c60d9a2017-05-04 14:36:22521Transmit <string> as a push option. As the push option
Junio C Hamanoe89102f2017-02-15 23:18:15522must not contain LF or NUL characters, the string is not encoded.
523
Junio C Hamano640779d2018-02-14 01:29:14524'option from-promisor' {'true'|'false'}::
525Indicate that these objects are being fetched from a promisor.
526
527'option no-dependents' {'true'|'false'}::
528Indicate that only the objects wanted need to be fetched, not
529their dependents.
530
Junio C Hamanoebc12702019-10-23 06:04:59531'option atomic' {'true'|'false'}::
532When pushing, request the remote server to update refs in a single atomic
533transaction. If successful, all refs will be updated, or none will. If the
534remote side does not support this capability, the push will fail.
535
Junio C Hamanoa8911782020-07-07 05:35:57536'option object-format' {'true'|algorithm}::
537If 'true', indicate that the caller wants hash algorithm information
538to be passed back from the remote. This mode is used when fetching
539refs.
540+
541If set to an algorithm, indicate that the caller wants to interact with
542the remote side using that algorithm.
543
Junio C Hamano0c053e82010-04-19 06:46:34544SEE ALSO
545--------
546linkgit:git-remote[1]
547
Junio C Hamano13220242014-11-19 23:06:27548linkgit:git-remote-ext[1]
549
550linkgit:git-remote-fd[1]
551
Junio C Hamano13220242014-11-19 23:06:27552linkgit:git-fast-import[1]
553
Junio C Hamano7df6dcf2009-09-13 09:51:17554GIT
555---
556Part of the linkgit:git[1] suite