Is it possible to run a git server over ssh, using authorized_keys and command= to restrict access to only the git repositories, without using gitosis/gitolite?
|
feedback
|
|
Yes, assign the | |||||||
feedback
|
|
Yes, gitolite does exactly just that. It doesn't swap out the user's shell either.
Notice it also passes the username as a parameter so it knows who this ssh key belongs to. The additional benefit of not switching the user's shell (while still keeping it secure) is that if you try to ssh directly into the machine it will not only terminate the session but tell you which repos you have access to before it does, if it knows who you are. | |||||
feedback
|