db6354195ad19a1d5f3336c3d202a6d2704e2b16
   1git-remote-helpers(1)
   2=====================
   3
   4NAME
   5----
   6git-remote-helpers - Helper programs to interact with remote repositories
   7
   8SYNOPSIS
   9--------
  10[verse]
  11'git remote-<transport>' <repository> [<URL>]
  12
  13DESCRIPTION
  14-----------
  15
  16Remote 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
  27Every 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.
  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'.
  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.
  46The '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.
  49
  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.
  68
  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.
  88The operations a helper supports are declared to git in the response
  89to the `capabilities` command (see COMMANDS, below).
  90
  91'option'::
  92        For specifying settings like `verbosity` (how much output to
  93        write to stderr) and `depth` (how much history is wanted in the
  94        case of a shallow clone) that affect how other commands are
  95        carried out.
  96
  97'connect'::
  98        For fetching and pushing using git's native packfile protocol
  99        that requires a bidirectional, full-duplex connection.
 100
 101'push'::
 102        For listing remote refs and pushing specified objects from the
 103        local object store to remote refs.
 104
 105'fetch'::
 106        For listing remote refs and fetching the associated history to
 107        the local object store.
 108
 109'export'::
 110        For listing remote refs and pushing specified objects from a
 111        fast-import stream to remote refs.
 112
 113'import'::
 114        For listing remote refs and fetching the associated history as
 115        a fast-import stream.
 116
 117'refspec' <refspec>::
 118        This modifies the 'import' capability, allowing the produced
 119        fast-import stream to modify refs in a private namespace
 120        instead of writing to refs/heads or refs/remotes directly.
 121        It is recommended that all importers providing the 'import'
 122        capability use this.
 123+
 124A helper advertising the capability
 125`refspec refs/heads/*:refs/svn/origin/branches/*`
 126is saying that, when it is asked to `import refs/heads/topic`, the
 127stream it outputs will update the `refs/svn/origin/branches/topic`
 128ref.
 129+
 130This capability can be advertised multiple times.  The first
 131applicable refspec takes precedence.  The left-hand of refspecs
 132advertised with this capability must cover all refs reported by
 133the list command.  If no 'refspec' capability is advertised,
 134there is an implied `refspec *:*`.
 135
 136'bidi-import'::
 137        The fast-import commands 'cat-blob' and 'ls' can be used by remote-helpers
 138        to retrieve information about blobs and trees that already exist in
 139        fast-import's memory. This requires a channel from fast-import to the
 140        remote-helper.
 141        If it is advertised in addition to "import", git establishes a pipe from
 142        fast-import to the remote-helper's stdin.
 143        It follows that git and fast-import are both connected to the
 144        remote-helper's stdin. Because git can send multiple commands to
 145        the remote-helper it is required that helpers that use 'bidi-import'
 146        buffer all 'import' commands of a batch before sending data to fast-import.
 147        This is to prevent mixing commands and fast-import responses on the
 148        helper's stdin.
 149
 150'export-marks' <file>::
 151        This modifies the 'export' capability, instructing git to dump the
 152        internal marks table to <file> when complete. For details,
 153        read up on '--export-marks=<file>' in linkgit:git-fast-export[1].
 154
 155'import-marks' <file>::
 156        This modifies the 'export' capability, instructing git to load the
 157        marks specified in <file> before processing any input. For details,
 158        read up on '--import-marks=<file>' in linkgit:git-fast-export[1].
 159
 160Capabilities for Pushing
 161~~~~~~~~~~~~~~~~~~~~~~~~
 162'connect'::
 163        Can attempt to connect to 'git receive-pack' (for pushing),
 164        'git upload-pack', etc for communication using the
 165        packfile protocol.
 166+
 167Supported commands: 'connect'.
 168
 169'push'::
 170        Can discover remote refs and push local commits and the
 171        history leading up to them to new or existing remote refs.
 172+
 173Supported commands: 'list for-push', 'push'.
 174
 175'export'::
 176        Can discover remote refs and push specified objects from a
 177        fast-import stream to remote refs.
 178+
 179Supported commands: 'list for-push', 'export'.
 180
 181If a helper advertises 'connect', git will use it if possible and
 182fall back to another capability if the helper requests so when
 183connecting (see the 'connect' command under COMMANDS).
 184When choosing between 'push' and 'export', git prefers 'push'.
 185Other frontends may have some other order of preference.
 186
 187
 188Capabilities for Fetching
 189~~~~~~~~~~~~~~~~~~~~~~~~~
 190'connect'::
 191        Can try to connect to 'git upload-pack' (for fetching),
 192        'git receive-pack', etc for communication using the
 193        packfile protocol.
 194+
 195Supported commands: 'connect'.
 196
 197'fetch'::
 198        Can discover remote refs and transfer objects reachable from
 199        them to the local object store.
 200+
 201Supported commands: 'list', 'fetch'.
 202
 203'import'::
 204        Can discover remote refs and output objects reachable from
 205        them as a stream in fast-import format.
 206+
 207Supported commands: 'list', 'import'.
 208
 209If a helper advertises 'connect', git will use it if possible and
 210fall back to another capability if the helper requests so when
 211connecting (see the 'connect' command under COMMANDS).
 212When choosing between 'fetch' and 'import', git prefers 'fetch'.
 213Other frontends may have some other order of preference.
 214
 215'refspec' <refspec>::
 216        This modifies the 'import' capability.
 217+
 218A helper advertising
 219`refspec refs/heads/*:refs/svn/origin/branches/*`
 220in its capabilities is saying that, when it handles
 221`import refs/heads/topic`, the stream it outputs will update the
 222`refs/svn/origin/branches/topic` ref.
 223+
 224This capability can be advertised multiple times.  The first
 225applicable refspec takes precedence.  The left-hand of refspecs
 226advertised with this capability must cover all refs reported by
 227the list command.  If no 'refspec' capability is advertised,
 228there is an implied `refspec *:*`.
 229
 230COMMANDS
 231--------
 232
 233Commands are given by the caller on the helper's standard input, one per line.
 234
 235'capabilities'::
 236        Lists the capabilities of the helper, one per line, ending
 237        with a blank line. Each capability may be preceded with '*',
 238        which marks them mandatory for git version using the remote
 239        helper to understand (unknown mandatory capability is fatal
 240        error).
 241
 242'list'::
 243        Lists the refs, one per line, in the format "<value> <name>
 244        [<attr> ...]". The value may be a hex sha1 hash, "@<dest>" for
 245        a symref, or "?" to indicate that the helper could not get the
 246        value of the ref. A space-separated list of attributes follows
 247        the name; unrecognized attributes are ignored. The list ends
 248        with a blank line.
 249+
 250If 'push' is supported this may be called as 'list for-push'
 251to obtain the current refs prior to sending one or more 'push'
 252commands to the helper.
 253
 254'option' <name> <value>::
 255        Sets the transport helper option <name> to <value>.  Outputs a
 256        single line containing one of 'ok' (option successfully set),
 257        'unsupported' (option not recognized) or 'error <msg>'
 258        (option <name> is supported but <value> is not valid
 259        for it).  Options should be set before other commands,
 260        and may influence the behavior of those commands.
 261+
 262Supported if the helper has the "option" capability.
 263
 264'fetch' <sha1> <name>::
 265        Fetches the given object, writing the necessary objects
 266        to the database.  Fetch commands are sent in a batch, one
 267        per line, terminated with a blank line.
 268        Outputs a single blank line when all fetch commands in the
 269        same batch are complete. Only objects which were reported
 270        in the ref list with a sha1 may be fetched this way.
 271+
 272Optionally may output a 'lock <file>' line indicating a file under
 273GIT_DIR/objects/pack which is keeping a pack until refs can be
 274suitably updated.
 275+
 276Supported if the helper has the "fetch" capability.
 277
 278'push' +<src>:<dst>::
 279        Pushes the given local <src> commit or branch to the
 280        remote branch described by <dst>.  A batch sequence of
 281        one or more 'push' commands is terminated with a blank line
 282        (if there is only one reference to push, a single 'push' command
 283        is followed by a blank line). For example, the following would
 284        be two batches of 'push', the first asking the remote-helper
 285        to push the local ref 'master' to the remote ref 'master' and
 286        the local 'HEAD' to the remote 'branch', and the second
 287        asking to push ref 'foo' to ref 'bar' (forced update requested
 288        by the '+').
 289+
 290------------
 291push refs/heads/master:refs/heads/master
 292push HEAD:refs/heads/branch
 293\n
 294push +refs/heads/foo:refs/heads/bar
 295\n
 296------------
 297+
 298Zero or more protocol options may be entered after the last 'push'
 299command, before the batch's terminating blank line.
 300+
 301When the push is complete, outputs one or more 'ok <dst>' or
 302'error <dst> <why>?' lines to indicate success or failure of
 303each pushed ref.  The status report output is terminated by
 304a blank line.  The option field <why> may be quoted in a C
 305style string if it contains an LF.
 306+
 307Supported if the helper has the "push" capability.
 308
 309'import' <name>::
 310        Produces a fast-import stream which imports the current value
 311        of the named ref. It may additionally import other refs as
 312        needed to construct the history efficiently. The script writes
 313        to a helper-specific private namespace. The value of the named
 314        ref should be written to a location in this namespace derived
 315        by applying the refspecs from the "refspec" capability to the
 316        name of the ref.
 317+
 318Especially useful for interoperability with a foreign versioning
 319system.
 320+
 321Just like 'push', a batch sequence of one or more 'import' is
 322terminated with a blank line. For each batch of 'import', the remote
 323helper should produce a fast-import stream terminated by a 'done'
 324command.
 325+
 326Note that if the 'bidi-import' capability is used the complete batch
 327sequence has to be buffered before starting to send data to fast-import
 328to prevent mixing of commands and fast-import responses on the helper's
 329stdin.
 330+
 331Supported if the helper has the 'import' capability.
 332
 333'export'::
 334        Instructs the remote helper that any subsequent input is
 335        part of a fast-import stream (generated by 'git fast-export')
 336        containing objects which should be pushed to the remote.
 337+
 338Especially useful for interoperability with a foreign versioning
 339system.
 340+
 341The 'export-marks' and 'import-marks' capabilities, if specified,
 342affect this command in so far as they are passed on to 'git
 343fast-export', which then will load/store a table of marks for
 344local objects. This can be used to implement for incremental
 345operations.
 346+
 347Supported if the helper has the 'export' capability.
 348
 349'connect' <service>::
 350        Connects to given service. Standard input and standard output
 351        of helper are connected to specified service (git prefix is
 352        included in service name so e.g. fetching uses 'git-upload-pack'
 353        as service) on remote side. Valid replies to this command are
 354        empty line (connection established), 'fallback' (no smart
 355        transport support, fall back to dumb transports) and just
 356        exiting with error message printed (can't connect, don't
 357        bother trying to fall back). After line feed terminating the
 358        positive (empty) response, the output of service starts. After
 359        the connection ends, the remote helper exits.
 360+
 361Supported if the helper has the "connect" capability.
 362
 363If a fatal error occurs, the program writes the error message to
 364stderr and exits. The caller should expect that a suitable error
 365message has been printed if the child closes the connection without
 366completing a valid response for the current command.
 367
 368Additional commands may be supported, as may be determined from
 369capabilities reported by the helper.
 370
 371REF LIST ATTRIBUTES
 372-------------------
 373
 374'for-push'::
 375        The caller wants to use the ref list to prepare push
 376        commands.  A helper might chose to acquire the ref list by
 377        opening a different type of connection to the destination.
 378
 379'unchanged'::
 380        This ref is unchanged since the last import or fetch, although
 381        the helper cannot necessarily determine what value that produced.
 382
 383OPTIONS
 384-------
 385'option verbosity' <n>::
 386        Changes the verbosity of messages displayed by the helper.
 387        A value of 0 for <n> means that processes operate
 388        quietly, and the helper produces only error output.
 389        1 is the default level of verbosity, and higher values
 390        of <n> correspond to the number of -v flags passed on the
 391        command line.
 392
 393'option progress' \{'true'|'false'\}::
 394        Enables (or disables) progress messages displayed by the
 395        transport helper during a command.
 396
 397'option depth' <depth>::
 398        Deepens the history of a shallow repository.
 399
 400'option followtags' \{'true'|'false'\}::
 401        If enabled the helper should automatically fetch annotated
 402        tag objects if the object the tag points at was transferred
 403        during the fetch command.  If the tag is not fetched by
 404        the helper a second fetch command will usually be sent to
 405        ask for the tag specifically.  Some helpers may be able to
 406        use this option to avoid a second network connection.
 407
 408'option dry-run' \{'true'|'false'\}:
 409        If true, pretend the operation completed successfully,
 410        but don't actually change any repository data.  For most
 411        helpers this only applies to the 'push', if supported.
 412
 413'option servpath <c-style-quoted-path>'::
 414        Sets service path (--upload-pack, --receive-pack etc.) for
 415        next connect. Remote helper may support this option, but
 416        must not rely on this option being set before
 417        connect request occurs.
 418
 419SEE ALSO
 420--------
 421linkgit:git-remote[1]
 422
 423linkgit:git-remote-testgit[1]
 424
 425GIT
 426---
 427Part of the linkgit:git[1] suite