Documentation / git-send-pack.txton commit Document --strict flag to the fsck-cache command. (fb6a3d8)
   1git-send-pack(1)
   2================
   3v0.1, July 2005
   4
   5NAME
   6----
   7git-send-pack - Push missing objects packed.
   8
   9
  10SYNOPSIS
  11--------
  12'git-send-pack' [--exec=<git-receive-pack>] [<host>:]<directory> [<head>...]
  13
  14DESCRIPTION
  15-----------
  16Invokes 'git-receive-pack' on a possibly remote repository, and
  17updates it from the current repository, sending named heads.
  18
  19
  20OPTIONS
  21-------
  22--exec=<git-receive-pack>::
  23        Path to the 'git-receive-pack' program on the remote
  24        end.  Sometimes useful when pushing to a remote
  25        repository over ssh, and you do not have the program in
  26        a directory on the default $PATH.
  27
  28<host>::
  29        A remote host to house the repository.  When this
  30        part is specified, 'git-receive-pack' is invoked via
  31        ssh.
  32
  33<directory>::
  34        The repository to update.
  35
  36Author
  37------
  38Written by Linus Torvalds <torvalds@osdl.org>
  39
  40Documentation
  41--------------
  42Documentation by Junio C Hamano.
  43
  44GIT
  45---
  46Part of the link:git.html[git] suite