Documentation / git-upload-pack.txton commit Merge branch 'jc/add-u-A-default-to-top' into maint (a878e7e)
   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' [--strict] [--timeout=<n>] <directory>
  13
  14DESCRIPTION
  15-----------
  16Invoked by 'git fetch-pack', learns what
  17objects the other side is missing, and sends them after packing.
  18
  19This command is usually not invoked directly by the end user.
  20The UI for the protocol is on the 'git fetch-pack' side, and the
  21program pair is meant to be used to pull updates from a remote
  22repository.  For push operations, see 'git send-pack'.
  23
  24
  25OPTIONS
  26-------
  27
  28--strict::
  29        Do not try <directory>/.git/ if <directory> is no Git directory.
  30
  31--timeout=<n>::
  32        Interrupt transfer after <n> seconds of inactivity.
  33
  34<directory>::
  35        The repository to sync from.
  36
  37SEE ALSO
  38--------
  39linkgit:gitnamespaces[7]
  40
  41GIT
  42---
  43Part of the linkgit:git[1] suite