I have a git repository hosted on my SunOS server, that I remotely use through ssh
git clone ssh://myUser@mydomain.com/path/to/git
Now I need to add more users to be able to access that repository, but not sure how.
I have added one testUser to ssh, but I can't seem to limit that user privileges to only use git.
testUser is able to ssh through and browse the entire server.
How can I create users that can only access git remotely, to clone/pull/push etc...
thanks