Re: Permissions and authorisations in git repository
From: Konstantin Khomoutov <hidden>
Date: 2016-06-15 22:50:28
On Fri, 28 Jan 2011 03:41:24 -0800 (PST) vikram2rhyme [off-list ref] wrote:
I am wondering if there are any permission and authorization control over git repository.
[...] In the simplest case -- r/w access via SSH -- those who know the login/password or possess the necessary private key have (full) access to the repository. The repository can also be made accessible for read-only via Git protocol (as a whole as well). This can be used for simple write/read access discrimination. If a more fine-grained control is needed, third-party tools exist: gitolite: https://github.com/sitaramc/gitolite gitosis: http://swik.net/gitosis Note that as Git does not suffer from a centralised VCS syndrome of having a single repository shared by everyone involved, the problem you're facing might not exist at all: every developer or a group of related developers maintains their own repository and a "central" repository (in whatever sense you're willing to put into it) is owned by a special person or a group of persons.