1GIT-UPLOAD-PACK(1) Git Manual GIT-UPLOAD-PACK(1)
2
3
4
6 git-upload-pack - Send objects packed back to git-fetch-pack
7
9 git-upload-pack [--strict] [--timeout=<n>] <directory>
10
12 Invoked by git fetch-pack, learns what objects the other side is
13 missing, and sends them after packing.
14
15 This command is usually not invoked directly by the end user. The UI
16 for the protocol is on the git fetch-pack side, and the program pair is
17 meant to be used to pull updates from a remote repository. For push
18 operations, see git send-pack.
19
21 --strict
22 Do not try <directory>/.git/ if <directory> is no git directory.
23
24 --timeout=<n>
25 Interrupt transfer after <n> seconds of inactivity.
26
27 <directory>
28 The repository to sync from.
29
31 Written by Linus Torvalds <torvalds@osdl.org[1]>
32
34 Documentation by Junio C Hamano.
35
37 Part of the git(1) suite
38
40 1. torvalds@osdl.org
41 mailto:torvalds@osdl.org
42
43
44
45Git 1.7.1 08/16/2017 GIT-UPLOAD-PACK(1)