Documentation/describe: improve one-line summary
[git.git] / Documentation / git-upload-pack.txt
blob0abc806ea9072e563a7bdc1905442180cbc6c27a
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 [verse]
12 'git-upload-pack' [--strict] [--timeout=<n>] <directory>
14 DESCRIPTION
15 -----------
16 Invoked by 'git fetch-pack', learns what
17 objects the other side is missing, and sends them after packing.
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'.
25 OPTIONS
26 -------
28 --strict::
29         Do not try <directory>/.git/ if <directory> is no Git directory.
31 --timeout=<n>::
32         Interrupt transfer after <n> seconds of inactivity.
34 <directory>::
35         The repository to sync from.
37 SEE ALSO
38 --------
39 linkgit:gitnamespaces[7]
41 GIT
42 ---
43 Part of the linkgit:git[1] suite