[PATCH] Reorder Makefile rules
[git/dscho.git] / Documentation / git-send-pack.txt
blob245a7d0bdedf2b76008c7ed1df290d7318b9e480
1 git-send-pack(1)
2 ================
3 v0.1, July 2005
5 NAME
6 ----
7 git-send-pack - Push missing objects packed.
10 SYNOPSIS
11 --------
12 'git-send-pack' [--exec=<git-receive-pack>] [<host>:]<directory> [<head>...]
14 DESCRIPTION
15 -----------
16 Invokes 'git-receive-pack' on a possibly remote repository, and
17 updates it from the current repository, sending named heads.
20 OPTIONS
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.
28 <host>::
29         A remote host to house the repository.  When this
30         part is specified, 'git-receive-pack' is invoked via
31         ssh.
33 <directory>::
34         The repository to update.
36 Author
37 ------
38 Written by Linus Torvalds <torvalds@osdl.org>
40 Documentation
41 --------------
42 Documentation by Junio C Hamano.
44 GIT
45 ---
46 Part of the link:git.html[git] suite