gitk: Second try to work around the command line limit on Windows
[git/dscho.git] / Documentation / git-upload-pack.txt
blob71ca4ef442e08acad27b4d7873a7f153dc4c79dc
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 Author
37 ------
38 Written by Linus Torvalds <torvalds@osdl.org>
40 Documentation
41 --------------
42 Documentation by Junio C Hamano.
44 GIT
45 ---
46 Part of the linkgit:git[1] suite