Documentation / git-fetch-pack.txton commit Sync with 1.7.10.5 (a890c99)
   1git-fetch-pack(1)
   2=================
   3
   4NAME
   5----
   6git-fetch-pack - Receive missing objects from another repository
   7
   8
   9SYNOPSIS
  10--------
  11[verse]
  12'git fetch-pack' [--all] [--quiet|-q] [--keep|-k] [--thin] [--include-tag] [--upload-pack=<git-upload-pack>] [--depth=<n>] [--no-progress] [-v] [<host>:]<directory> [<refs>...]
  13
  14DESCRIPTION
  15-----------
  16Usually you would want to use 'git fetch', which is a
  17higher level wrapper of this command, instead.
  18
  19Invokes 'git-upload-pack' on a possibly remote repository
  20and asks it to send objects missing from this repository, to
  21update the named heads.  The list of commits available locally
  22is found out by scanning the local refs/ hierarchy and sent to
  23'git-upload-pack' running on the other end.
  24
  25This command degenerates to download everything to complete the
  26asked refs from the remote side when the local side does not
  27have a common ancestor commit.
  28
  29
  30OPTIONS
  31-------
  32--all::
  33        Fetch all remote refs.
  34
  35--stdin::
  36        Take the list of refs from stdin, one per line. If there
  37        are refs specified on the command line in addition to this
  38        option, then the refs from stdin are processed after those
  39        on the command line.
  40+
  41If '--stateless-rpc' is specified together with this option then
  42the list of refs must be in packet format (pkt-line). Each ref must
  43be in a separate packet, and the list must end with a flush packet.
  44
  45-q::
  46--quiet::
  47        Pass '-q' flag to 'git unpack-objects'; this makes the
  48        cloning process less verbose.
  49
  50-k::
  51--keep::
  52        Do not invoke 'git unpack-objects' on received data, but
  53        create a single packfile out of it instead, and store it
  54        in the object database. If provided twice then the pack is
  55        locked against repacking.
  56
  57--thin::
  58        Fetch a "thin" pack, which records objects in deltified form based
  59        on objects not included in the pack to reduce network traffic.
  60
  61--include-tag::
  62        If the remote side supports it, annotated tags objects will
  63        be downloaded on the same connection as the other objects if
  64        the object the tag references is downloaded.  The caller must
  65        otherwise determine the tags this option made available.
  66
  67--upload-pack=<git-upload-pack>::
  68        Use this to specify the path to 'git-upload-pack' on the
  69        remote side, if is not found on your $PATH.
  70        Installations of sshd ignores the user's environment
  71        setup scripts for login shells (e.g. .bash_profile) and
  72        your privately installed git may not be found on the system
  73        default $PATH.  Another workaround suggested is to set
  74        up your $PATH in ".bashrc", but this flag is for people
  75        who do not want to pay the overhead for non-interactive
  76        shells by having a lean .bashrc file (they set most of
  77        the things up in .bash_profile).
  78
  79--exec=<git-upload-pack>::
  80        Same as \--upload-pack=<git-upload-pack>.
  81
  82--depth=<n>::
  83        Limit fetching to ancestor-chains not longer than n.
  84
  85--no-progress::
  86        Do not show the progress.
  87
  88-v::
  89        Run verbosely.
  90
  91<host>::
  92        A remote host that houses the repository.  When this
  93        part is specified, 'git-upload-pack' is invoked via
  94        ssh.
  95
  96<directory>::
  97        The repository to sync from.
  98
  99<refs>...::
 100        The remote heads to update from. This is relative to
 101        $GIT_DIR (e.g. "HEAD", "refs/heads/master").  When
 102        unspecified, update from all heads the remote side has.
 103
 104GIT
 105---
 106Part of the linkgit:git[1] suite