blob: 71f16083d6b2c366a54db1d966e17ab2aeda1ef1 [file] [log] [blame]
Junio C Hamano1a4e8412005-12-27 08:17:231git-upload-pack(1)
2==================
3
4NAME
5----
Junio C Hamano7c73c662007-01-19 00:37:506git-upload-pack - Send objects packed back to git-fetch-pack
Junio C Hamano1a4e8412005-12-27 08:17:237
8
9SYNOPSIS
10--------
Junio C Hamano15567bc2011-07-23 00:51:5911[verse]
Junio C Hamano1aa40d22010-01-21 17:46:4312'git-upload-pack' [--strict] [--timeout=<n>] <directory>
Junio C Hamano1a4e8412005-12-27 08:17:2313
14DESCRIPTION
15-----------
Junio C Hamano1aa40d22010-01-21 17:46:4316Invoked by 'git fetch-pack', learns what
Junio C Hamano1a4e8412005-12-27 08:17:2317objects the other side is missing, and sends them after packing.
18
19This command is usually not invoked directly by the end user.
Junio C Hamano1aa40d22010-01-21 17:46:4320The UI for the protocol is on the 'git fetch-pack' side, and the
Junio C Hamano1a4e8412005-12-27 08:17:2321program pair is meant to be used to pull updates from a remote
Junio C Hamano1aa40d22010-01-21 17:46:4322repository. For push operations, see 'git send-pack'.
Junio C Hamano1a4e8412005-12-27 08:17:2323
24
25OPTIONS
26-------
Junio C Hamanoaa83a7d2007-03-05 02:37:2927
Junio C Hamanoeb415992008-06-08 22:49:4728--strict::
Junio C Hamanoaa83a7d2007-03-05 02:37:2929Do not try <directory>/.git/ if <directory> is no git directory.
30
Junio C Hamanoeb415992008-06-08 22:49:4731--timeout=<n>::
Junio C Hamanoaa83a7d2007-03-05 02:37:2932Interrupt transfer after <n> seconds of inactivity.
33
Junio C Hamano1a4e8412005-12-27 08:17:2334<directory>::
35The repository to sync from.
36
Junio C Hamanof7279012011-08-18 06:13:1337SEE ALSO
38--------
39linkgit:gitnamespaces[7]
40
Junio C Hamano1a4e8412005-12-27 08:17:2341GIT
42---
Junio C Hamanof7c042d2008-06-06 22:50:5343Part of the linkgit:git[1] suite