2005-10-25 23:43:30 +02:00
|
|
|
git-shell(1)
|
|
|
|
============
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-19 00:53:37 +01:00
|
|
|
git-shell - Restricted login shell for GIT-only SSH access
|
2005-10-25 23:43:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2008-06-30 20:56:34 +02:00
|
|
|
'$(git --exec-path)/git-shell' -c <command> <argument>
|
2005-10-25 23:43:30 +02:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2008-07-03 07:41:41 +02:00
|
|
|
Currently, only the 'git-receive-pack' and 'git-upload-pack' commands
|
2005-10-25 23:43:30 +02:00
|
|
|
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
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|