Merge master.kernel.org:/pub/scm/gitk/gitk
[git.git] / Documentation / git-receive-pack.txt
1 git-receive-pack(1)
2 ===================
3 v0.1, July 2005
4
5 NAME
6 ----
7 git-receive-pack - Receive what is pushed into it
8
9
10 SYNOPSIS
11 --------
12 'git-receive-pack' <directory>
13
14 DESCRIPTION
15 -----------
16 Invoked by 'git-send-pack' and updates the repository with the
17 information fed from the remote end.
18
19 This command is usually not invoked directly by the end user.
20 The UI for the protocol is on the 'git-send-pack' side, and the
21 program pair is meant to be used to push updates to remote
22 repository.  For pull operations, see 'git-fetch-pack' and
23 'git-clone-pack'.
24
25
26 OPTIONS
27 -------
28 <directory>::
29         The repository to sync into.
30
31 Author
32 ------
33 Written by Linus Torvalds <torvalds@osdl.org>
34
35 Documentation
36 --------------
37 Documentation by Junio C Hamano.
38
39 GIT
40 ---
41 Part of the link:git.html[git] suite