summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 05ff564)
raw | patch | inline | side by side (parent: 05ff564)
author | Petr Baudis <pasky@ucw.cz> | |
Tue, 25 Oct 2005 21:43:30 +0000 (23:43 +0200) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Wed, 26 Oct 2005 05:51:13 +0000 (22:51 -0700) |
Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/git-shell.txt | [new file with mode: 0644] | patch | blob |
Documentation/git.txt | patch | blob | history |
diff --git a/Documentation/git-shell.txt b/Documentation/git-shell.txt
--- /dev/null
@@ -0,0 +1,35 @@
+git-shell(1)
+============
+
+NAME
+----
+git-shell - Restricted login shell for GIT over SSH only
+
+
+SYNOPSIS
+--------
+'git-shell -c <command> <argument>'
+
+DESCRIPTION
+-----------
+This is meant to be used as a login shell for SSH accounts you want
+to restrict to GIT pull/push access only. It permits execution only
+of server-side GIT commands implementing the pull/push functionality.
+The commands can be executed only by the '-c' option; the shell is not
+interactive.
+
+Currently, only the `git-receive-pack` and `git-upload-pack` commands
+are permitted to be called, with a single required argument.
+
+Author
+------
+Written by Linus Torvalds <torvalds@osdl.org>
+
+Documentation
+--------------
+Documentation by Petr Baudis and the git-list <git@vger.kernel.org>.
+
+GIT
+---
+Part of the gitlink:git[7] suite
+
diff --git a/Documentation/git.txt b/Documentation/git.txt
index 796c4f61ea232aef526ab1032879cf3431d6324d..769054bac1b4187d77b354f38f7fdc1a1380da64 100644 (file)
--- a/Documentation/git.txt
+++ b/Documentation/git.txt
gitlink:git-send-pack[1]::
Pushes to a remote repository, intelligently.
+gitlink:git-shell[1]::
+ Restricted shell for GIT-only SSH access.
+
gitlink:git-ssh-fetch[1]::
Pulls from a remote repository over ssh connection
Previously this command was known as git-ssh-pull.