blob: 71ca4ef442e08acad27b4d7873a7f153dc4c79dc [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 Hamano1aa40d22010-01-21 17:46:4311'git-upload-pack' [--strict] [--timeout=<n>] <directory>
Junio C Hamano1a4e8412005-12-27 08:17:2312
13DESCRIPTION
14-----------
Junio C Hamano1aa40d22010-01-21 17:46:4315Invoked by 'git fetch-pack', learns what
Junio C Hamano1a4e8412005-12-27 08:17:2316objects the other side is missing, and sends them after packing.
17
18This command is usually not invoked directly by the end user.
Junio C Hamano1aa40d22010-01-21 17:46:4319The UI for the protocol is on the 'git fetch-pack' side, and the
Junio C Hamano1a4e8412005-12-27 08:17:2320program pair is meant to be used to pull updates from a remote
Junio C Hamano1aa40d22010-01-21 17:46:4321repository. For push operations, see 'git send-pack'.
Junio C Hamano1a4e8412005-12-27 08:17:2322
23
24OPTIONS
25-------
Junio C Hamanoaa83a7d2007-03-05 02:37:2926
Junio C Hamanoeb415992008-06-08 22:49:4727--strict::
Junio C Hamanoaa83a7d2007-03-05 02:37:2928Do not try <directory>/.git/ if <directory> is no git directory.
29
Junio C Hamanoeb415992008-06-08 22:49:4730--timeout=<n>::
Junio C Hamanoaa83a7d2007-03-05 02:37:2931Interrupt transfer after <n> seconds of inactivity.
32
Junio C Hamano1a4e8412005-12-27 08:17:2333<directory>::
34The repository to sync from.
35
36Author
37------
38Written by Linus Torvalds <torvalds@osdl.org>
39
40Documentation
41--------------
42Documentation by Junio C Hamano.
43
44GIT
45---
Junio C Hamanof7c042d2008-06-06 22:50:5346Part of the linkgit:git[1] suite