I've installed Gitolite 3.5.3 on Ubuntu 12.04. I created test repo and I can access it over ssh only with gitolite user but not others. I need to allow access other system users (user1,user,user2) or usergroup to git(push, pull merge etc) over ssh like this:
git clone user1@domain.com:megaproject
But I try to connect like this:
git clone user@domain.com:megaproject
and write correct password for this user I get:
fatal: 'megaproject' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
Even if I create keydir
directory in the home folder of gitolite user with my ssh public key - nothing changes.
What should I change to provide access in such a way?