Merge git-tools repository under "tools" subdirectory
[git.git] / Documentation / git-send-pack.txt
1 git-send-pack(1)
2 ================
3 v0.1, July 2005
4
5 NAME
6 ----
7 git-send-pack - Push missing objects packed.
8
9
10 SYNOPSIS
11 --------
12 'git-send-pack' [--exec=<git-receive-pack>] [<host>:]<directory> [<head>...]
13
14 DESCRIPTION
15 -----------
16 Invokes 'git-receive-pack' on a possibly remote repository, and
17 updates it from the current repository, sending named heads.
18
19
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.
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
36 Author
37 ------
38 Written by Linus Torvalds <torvalds@osdl.org>
39
40 Documentation
41 --------------
42 Documentation by Junio C Hamano.
43
44 GIT
45 ---
46 Part of the link:git.html[git] suite