We are going to develop a webapp with a MVC framework. We have developers and designers in our team. We want to use git. Is there any way designers could only see some directories of the project? (views). I dont want designers loking and accidentaly changing other files than views.
|
|
One of the possible options is to use Git subtrees (or submodules, but I personally dislike them, see linked question for a list of reasons). Put views into a separate Git repo, and pull it as a subtree in developers main repo which is not accessible to designers. Or keep everything in a single repo, but deny any commits to M and C parts from designer users in a pre-commit hook (and/or in pre-receive hook on server if you're paranoid). You may also do a sparse checkout with Git, but I personally think that other two solutions are more practical. |
|||
|
|
|
Make two different repos for code and for designers. You could also use Submodules to group the sub projects and track them together; but I have not used that so I cannot give any specific hints. On the other hand, if you adopt a "git style" way of setting up the repositories (e.g. each user have their own private public mirror of their repository; where everyone has read access but only the owner has write acccess. And if you want, a canonical (master/trunk) repo if you want where only trusted developers have write access) accidental modifications should not be a big problem. You can just pull from the designers repo and see if it makes sense and correct errors before merging it into the "canonical" master branch. |
|||||
|