summaryrefslogtreecommitdiff
path: root/Documentation/git-receive-pack.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-07-14 07:10:05 (GMT)
committerLinus Torvalds <torvalds@g5.osdl.org>2005-07-14 15:54:31 (GMT)
commit2a24501363727dad1df47cc0fca47c57fedfd895 (patch)
treed9d8e0f9e759ae2e1b01e5443e1f07260ad4884a /Documentation/git-receive-pack.txt
parent8b3d9dc0e21eb8c7d90173acb330932569e6f52c (diff)
downloadgit-2a24501363727dad1df47cc0fca47c57fedfd895.zip
git-2a24501363727dad1df47cc0fca47c57fedfd895.tar.gz
git-2a24501363727dad1df47cc0fca47c57fedfd895.tar.bz2
[PATCH] Documentation: send/receive.
This adds documentation for 'smarter push' family of commands. Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'Documentation/git-receive-pack.txt')
-rw-r--r--Documentation/git-receive-pack.txt41
1 files changed, 41 insertions, 0 deletions
diff --git a/Documentation/git-receive-pack.txt b/Documentation/git-receive-pack.txt
new file mode 100644
index 0000000..d3a835d
--- /dev/null
+++ b/Documentation/git-receive-pack.txt
@@ -0,0 +1,41 @@
+git-receive-pack(1)
+===================
+v0.1, July 2005
+
+NAME
+----
+git-receive-pack - Receive what is pushed into it
+
+
+SYNOPSIS
+--------
+'git-receive-pack' <directory>
+
+DESCRIPTION
+-----------
+Invoked by 'git-send-pack' and updates the repository with the
+information fed from the remote end.
+
+This command is usually not invoked directly by the end user.
+The UI for the protocol is on the 'git-send-pack' side, and the
+program pair is meant to be used to push updates to remote
+repository. For pull operations, see 'git-fetch-pack' and
+'git-clone-pack'.
+
+
+OPTIONS
+-------
+<directory>::
+ The repository to sync into.
+
+Author
+------
+Written by Linus Torvalds <torvalds@osdl.org>
+
+Documentation
+--------------
+Documentation by Junio C Hamano.
+
+GIT
+---
+Part of the link:git.html[git] suite