transport-helper: change import semantics
[git/dscho.git] / Documentation / git-upload-pack.txt
blob4c0ca9ded25a27c11636ef9af5f7c1f2e6970c12
1 git-upload-pack(1)
2 ==================
4 NAME
5 ----
6 git-upload-pack - Send objects packed back to git-fetch-pack
9 SYNOPSIS
10 --------
11 'git-upload-pack' [--strict] [--timeout=<n>] <directory>
13 DESCRIPTION
14 -----------
15 Invoked by 'git fetch-pack', learns what
16 objects the other side is missing, and sends them after packing.
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'.
24 OPTIONS
25 -------
27 --strict::
28         Do not try <directory>/.git/ if <directory> is no git directory.
30 --timeout=<n>::
31         Interrupt transfer after <n> seconds of inactivity.
33 <directory>::
34         The repository to sync from.
36 GIT
37 ---
38 Part of the linkgit:git[1] suite