mirror of
https://github.com/git/git.git
synced 2024-11-08 18:23:01 +01:00
483bc4f045
Following what appears to be the predominant style, format names of commands and commandlines both as `teletype text`. While we're at it, add articles ("a" and "the") in some places, italicize the name of the command in the manual page synopsis line, and add a comma or two where it seems appropriate. Signed-off-by: Jonathan Nieder <jrnieder@uchicago.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
34 lines
820 B
Text
34 lines
820 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 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 linkgit:git[1] suite
|