Merge refs/heads/master from paulus
[git.git] / Documentation / git-upload-pack.txt
1 git-upload-pack(1)
2 ==================
3 v0.1, July 2005
4
5 NAME
6 ----
7 git-upload-pack - Send missing objects packed.
8
9
10 SYNOPSIS
11 --------
12 'git-upload-pack' <directory>
13
14 DESCRIPTION
15 -----------
16 Invoked by 'git-clone-pack' and/or 'git-fetch-pack', learns what
17 objects the other side is missing, and sends them after packing.
18
19 This command is usually not invoked directly by the end user.
20 The UI for the protocol is on the 'git-fetch-pack' side, and the
21 program pair is meant to be used to pull updates from a remote
22 repository.  For push operations, see 'git-send-pack'.
23
24
25 OPTIONS
26 -------
27 <directory>::
28         The repository to sync from.
29
30 Author
31 ------
32 Written by Linus Torvalds <torvalds@osdl.org>
33
34 Documentation
35 --------------
36 Documentation by Junio C Hamano.
37
38 GIT
39 ---
40 Part of the link:git.html[git] suite