Documentation / git-upload-pack.txton commit fetch & clone: do not output progress when not on a tty (83a5ad6)
   1git-upload-pack(1)
   2==================
   3
   4NAME
   5----
   6git-upload-pack - Send objects packed back to git-fetch-pack
   7
   8
   9SYNOPSIS
  10--------
  11'git-upload-pack' [--strict] [--timeout=<n>] [--no-progress] <directory>
  12
  13DESCRIPTION
  14-----------
  15Invoked by 'git-fetch-pack', learns what
  16objects the other side is missing, and sends them after packing.
  17
  18This command is usually not invoked directly by the end user.
  19The UI for the protocol is on the 'git-fetch-pack' side, and the
  20program pair is meant to be used to pull updates from a remote
  21repository.  For push operations, see 'git-send-pack'.
  22
  23
  24OPTIONS
  25-------
  26
  27\--strict::
  28        Do not try <directory>/.git/ if <directory> is no git directory.
  29
  30\--timeout=<n>::
  31        Interrupt transfer after <n> seconds of inactivity.
  32
  33\--no-progress::
  34        Do not show the progress.
  35
  36<directory>::
  37        The repository to sync from.
  38
  39Author
  40------
  41Written by Linus Torvalds <torvalds@osdl.org>
  42
  43Documentation
  44--------------
  45Documentation by Junio C Hamano.
  46
  47GIT
  48---
  49Part of the gitlink:git[7] suite