1

I have one repository in git which has many sub-projects.Like this

repo

parent project
   |
   |----project 1
   |----project 2
   |----project 3
   |----project 4

Now, I would like to give access such that user1 can access only project1, user2 can access only project2 and so on.

I have gone through these links but didn't suffice my requirements.

Thanks

Imran

Community
  • 1
  • 1
  • You shouldn't put more than one project into one repository. It would be a better idea to put each project in its own repository. – fuz Apr 28 '15 at 13:13
  • 1
    Git is not design for granular ACL, per-directories permissions is worth the effort. It won't be much difference hosting one git repos or multiple git repos. – number5 Apr 28 '15 at 13:15

1 Answers1

1

I think git won't have this feature. You can use Gerrit (Web based code review and project management for Git based projects).

Dilip Kumar
  • 2,504
  • 2
  • 17
  • 33