Reputation: 143
The challenge is as follows. I have a GIT server with many repositories. My goal is to give access to GIT server for new created user, but set priveleges to access only one repository, not all of them.
Is it possible?
Thanks.
Upvotes: 1
Views: 3487
Reputation: 95048
git
doesn't have builtin authentication, you need additional tools. For SSH the tool is gitolite. You can configure fine-grained access control.
You can also install web-based development environments, see a partial list at Free GIT Server with Web GUI a la BitBucket/GitHub.
Upvotes: 1
Reputation: 4092
Steps on the server:
chmod g+rx
.You need manage the specific permisions from ssh, user system and file system.
Upvotes: 1