]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-upload-pack.txt
Final batch before 2.9-rc1
[thirdparty/git.git] / Documentation / git-upload-pack.txt
CommitLineData
8b3d9dc0
JH
1git-upload-pack(1)
2==================
8b3d9dc0
JH
3
4NAME
5----
c3f0baac 6git-upload-pack - Send objects packed back to git-fetch-pack
8b3d9dc0
JH
7
8
9SYNOPSIS
10--------
7791a1d9 11[verse]
0b444cdb 12'git-upload-pack' [--strict] [--timeout=<n>] <directory>
8b3d9dc0
JH
13
14DESCRIPTION
15-----------
0b444cdb 16Invoked by 'git fetch-pack', learns what
8b3d9dc0
JH
17objects the other side is missing, and sends them after packing.
18
19This command is usually not invoked directly by the end user.
0b444cdb 20The UI for the protocol is on the 'git fetch-pack' side, and the
8b3d9dc0 21program pair is meant to be used to pull updates from a remote
0b444cdb 22repository. For push operations, see 'git send-pack'.
8b3d9dc0
JH
23
24
25OPTIONS
26-------
83a5ad61 27
3240240f 28--strict::
2de9b711 29 Do not try <directory>/.git/ if <directory> is no Git directory.
83a5ad61 30
3240240f 31--timeout=<n>::
83a5ad61
JS
32 Interrupt transfer after <n> seconds of inactivity.
33
8b3d9dc0
JH
34<directory>::
35 The repository to sync from.
36
d49483f0
JT
37SEE ALSO
38--------
39linkgit:gitnamespaces[7]
40
8b3d9dc0
JH
41GIT
42---
9e1f0a85 43Part of the linkgit:git[1] suite