2005-07-14 09:08:37 +02:00
|
|
|
git-upload-pack(1)
|
|
|
|
==================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-19 00:53:37 +01:00
|
|
|
git-upload-pack - Send objects packed back to git-fetch-pack
|
2005-07-14 09:08:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2010-01-10 00:33:00 +01:00
|
|
|
'git-upload-pack' [--strict] [--timeout=<n>] <directory>
|
2005-07-14 09:08:37 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2010-01-10 00:33:00 +01:00
|
|
|
Invoked by 'git fetch-pack', learns what
|
2005-07-14 09:08:37 +02:00
|
|
|
objects the other side is missing, and sends them after packing.
|
|
|
|
|
|
|
|
This command is usually not invoked directly by the end user.
|
2010-01-10 00:33:00 +01:00
|
|
|
The UI for the protocol is on the 'git fetch-pack' side, and the
|
2005-07-14 09:08:37 +02:00
|
|
|
program pair is meant to be used to pull updates from a remote
|
2010-01-10 00:33:00 +01:00
|
|
|
repository. For push operations, see 'git send-pack'.
|
2005-07-14 09:08:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
2007-02-20 03:01:44 +01:00
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
--strict::
|
2007-02-20 03:01:44 +01:00
|
|
|
Do not try <directory>/.git/ if <directory> is no git directory.
|
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
--timeout=<n>::
|
2007-02-20 03:01:44 +01:00
|
|
|
Interrupt transfer after <n> seconds of inactivity.
|
|
|
|
|
2005-07-14 09:08:37 +02:00
|
|
|
<directory>::
|
|
|
|
The repository to sync from.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|