]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-upload-pack.txt
ref namespaces: Support remote repositories via upload-pack and receive-pack
[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--------
0b444cdb 11'git-upload-pack' [--strict] [--timeout=<n>] <directory>
8b3d9dc0
JH
12
13DESCRIPTION
14-----------
0b444cdb 15Invoked by 'git fetch-pack', learns what
8b3d9dc0
JH
16objects the other side is missing, and sends them after packing.
17
18This command is usually not invoked directly by the end user.
0b444cdb 19The UI for the protocol is on the 'git fetch-pack' side, and the
8b3d9dc0 20program pair is meant to be used to pull updates from a remote
0b444cdb 21repository. For push operations, see 'git send-pack'.
8b3d9dc0
JH
22
23
24OPTIONS
25-------
83a5ad61 26
3240240f 27--strict::
83a5ad61
JS
28 Do not try <directory>/.git/ if <directory> is no git directory.
29
3240240f 30--timeout=<n>::
83a5ad61
JS
31 Interrupt transfer after <n> seconds of inactivity.
32
8b3d9dc0
JH
33<directory>::
34 The repository to sync from.
35
8b3d9dc0
JH
36GIT
37---
9e1f0a85 38Part of the linkgit:git[1] suite