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