i have folder structure as below :
repo1
|
|---file1
|---fold1
|
|---file2
|---repo2
|
|
|---file3
Lets say i have two users, user1 and user2.
Now i need to :
- setup
repo1andrepo2as two separateGIT repositories. - setup
user1to have permission forrepo1anduser2forrepo2. user1should be able to pullfile1andfold1contents but notrepo2user2should be able to pullrepo2and files under it but notrepo1- after
user2makes changes and commits torepo2, it should be reflected underrepo1in the server
Is this level of permissions possible with GIT?