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?

link|improve this question

70% accept rate
feedback

2 Answers

up vote 5 down vote accepted

Yes, assign the git shell as the login shell for all users which shall only have git access.

link|improve this answer
2  
Ah, thanks. To make this useful, I had to use the command="…" from joey.kitenet.net/blog/entry/locking_down_ssh_authorized_keys, but at least it told me what to look for. Thanks. – David Wolever May 3 '11 at 15:50
This answer superuser.com/a/343675 elaborates the above a bit. – Tim Mar 30 at 14:13
feedback

Yes, gitolite does exactly just that. It doesn't swap out the user's shell either.

cat authorized_keys
command="/home/git/.gitolite/src/gl-auth-command jbruce",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty ssh-rsa AAAAD3NzaC1yc2EABBBCIwAAAQEAtRFmADxUSCX97CS/Uh7/N0y0vL...

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.

link|improve this answer
As the title suggests, I'd actually rather avoid using gito*. This is a small project that doesn't need any of the features offered by those tools. – David Wolever May 3 '11 at 17:29
David, the point is to look at the way gitolite is doing it since it's exactly what you're asking for (authorized_keys and command=). Passing the username to the command= is a cool idea so you can associate the user with more than just an ssh-key. Take the bits you like or just learn from it and do it from scratch. – Mauvis Ledford May 3 '11 at 17:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.