Documentation / git-upload-pack.txton commit l10n: es.po v2.20.0 round 3 (7c6767b)
   1git-upload-pack(1)
   2==================
   3
   4NAME
   5----
   6git-upload-pack - Send objects packed back to git-fetch-pack
   7
   8
   9SYNOPSIS
  10--------
  11[verse]
  12'git-upload-pack' [--[no-]strict] [--timeout=<n>] [--stateless-rpc]
  13                  [--advertise-refs] <directory>
  14
  15DESCRIPTION
  16-----------
  17Invoked by 'git fetch-pack', learns what
  18objects the other side is missing, and sends them after packing.
  19
  20This command is usually not invoked directly by the end user.
  21The UI for the protocol is on the 'git fetch-pack' side, and the
  22program pair is meant to be used to pull updates from a remote
  23repository.  For push operations, see 'git send-pack'.
  24
  25
  26OPTIONS
  27-------
  28
  29--[no-]strict::
  30        Do not try <directory>/.git/ if <directory> is no Git directory.
  31
  32--timeout=<n>::
  33        Interrupt transfer after <n> seconds of inactivity.
  34
  35--stateless-rpc::
  36        Perform only a single read-write cycle with stdin and stdout.
  37        This fits with the HTTP POST request processing model where
  38        a program may read the request, write a response, and must exit.
  39
  40--advertise-refs::
  41        Only the initial ref advertisement is output, and the program exits
  42        immediately. This fits with the HTTP GET request model, where
  43        no request content is received but a response must be produced.
  44
  45<directory>::
  46        The repository to sync from.
  47
  48SEE ALSO
  49--------
  50linkgit:gitnamespaces[7]
  51
  52GIT
  53---
  54Part of the linkgit:git[1] suite