This is very similar to the following question but I haven't found the answer yet... Setting up SVN+SSH for multiple users through one local user
My Subversion server has a single 'svn' user account that all of my users access through SVN+SHH. An example entry from /home/svn/.ssh/authorized_keys looks like:
command="/usr/bin/svnserve -t -r /home/svn/repos --tunnel-user=matt",no-port-forwarding,no-agent-forwarding,no-X11-forwarding ssh-rsa AAA...BBB matt@macbook.pub
How can I also allow these users to SSH in regularly as the 'svn' user so they can create new repositories when necessary? I would like to avoid creating a separate 'svnadmin' user account to accomplish this.