Merge branch 'tb/use-common-win32-pathfuncs-on-cygwin'
[git.git] / Documentation / git-upload-pack.txt
blob998f52d3df71e29d4178251de375d70cd570a1d8
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' [--[no-]strict] [--timeout=<n>] [--stateless-rpc]
13                   [--advertise-refs] <directory>
15 DESCRIPTION
16 -----------
17 Invoked by 'git fetch-pack', learns what
18 objects the other side is missing, and sends them after packing.
20 This command is usually not invoked directly by the end user.
21 The UI for the protocol is on the 'git fetch-pack' side, and the
22 program pair is meant to be used to pull updates from a remote
23 repository.  For push operations, see 'git send-pack'.
26 OPTIONS
27 -------
29 --[no-]strict::
30         Do not try <directory>/.git/ if <directory> is no Git directory.
32 --timeout=<n>::
33         Interrupt transfer after <n> seconds of inactivity.
35 --stateless-rpc::
36         Perform only a single read-write cycle with stdin and stdout.
37         This fits with the HTTP POST request processing model where
38         a program may read the request, write a response, and must exit.
40 --advertise-refs::
41         Only the initial ref advertisement is output, and the program exits
42         immediately. This fits with the HTTP GET request model, where
43         no request content is received but a response must be produced.
45 <directory>::
46         The repository to sync from.
48 SEE ALSO
49 --------
50 linkgit:gitnamespaces[7]
52 GIT
53 ---
54 Part of the linkgit:git[1] suite