Topics ▾
Email
Version 1.7.5 ▾
git-upload-pack last updated in 1.8.2.1
Changes in the git-upload-pack manual
Setup and Config
Getting and Creating Projects
Basic Snapshotting
Branching and Merging
Sharing and Updating Projects
Inspection and Comparison
Patching
Debugging
External Systems
Administration
Server Admin
Plumbing Commands
- 1.8.2.2 → 1.8.2.3 no changes
-
1.8.2.1
04/07/13
- 1.7.7.1 → 1.8.1.6 no changes
-
1.7.7
09/30/11
- 1.7.6.2 → 1.7.6.6 no changes
-
1.7.6.1
08/24/11
- 1.7.5.1 → 1.7.6 no changes
-
1.7.5
04/24/11
- 1.7.0.1 → 1.7.4.5 no changes
-
1.7.0
02/12/10
- 1.6.5.7 → 1.6.6.3 no changes
-
1.6.5.6
12/10/09
- 1.6.5.1 → 1.6.5.5 no changes
-
1.6.5
10/10/09
- 1.6.0.1 → 1.6.4.5 no changes
-
1.6.0
08/17/08
- 1.5.6.1 → 1.5.6.6 no changes
-
1.5.6
06/18/08
- 1.5.4.1 → 1.5.5.6 no changes
-
1.5.4
02/02/08
git-upload-pack(1) Manual Page
NAME
git-upload-pack - Send objects packed back to git-fetch-pack
SYNOPSIS
git-upload-pack [--strict] [--timeout=<n>] <directory>
DESCRIPTION
Invoked by git fetch-pack, learns what objects the other side is missing, and sends them after packing.
This command is usually not invoked directly by the end user. The UI for the protocol is on the git fetch-pack side, and the program pair is meant to be used to pull updates from a remote repository. For push operations, see git send-pack.
OPTIONS
- --strict
Do not try <directory>/.git/ if <directory> is no git directory.
- --timeout=<n>
Interrupt transfer after <n> seconds of inactivity.
- <directory>
The repository to sync from.
GIT
Part of the git(1) suite