mirror of
https://github.com/git/git.git
synced 2024-11-01 14:57:52 +01:00
674a1d2628
git-shell's man page explicitly lists all allowed commands, but 'cvs server' was missing. Add it. Signed-off-by: Lars Noschinski <lars@public.noschinski.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
35 lines
862 B
Text
35 lines
862 B
Text
git-shell(1)
|
|
============
|
|
|
|
NAME
|
|
----
|
|
git-shell - Restricted login shell for GIT-only SSH access
|
|
|
|
|
|
SYNOPSIS
|
|
--------
|
|
'$(git --exec-path)/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 three commands are permitted to be called, 'git-receive-pack'
|
|
'git-upload-pack' with a single required argument or 'cvs server' (to invoke
|
|
'git-cvsserver').
|
|
|
|
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 linkgit:git[1] suite
|