I get lost with the Git branch model and the workflow that I want to create for my team (developers + designers).
Suppose the project is based on the MVC pattern, so we have a structure similar to:
Models /
Controllers /
Views /
Developers work on parts of M and C with some basic / generated views (e.g. Rails, Django or CakePHP) and designers work on part V
How can I control that developers work on M&C and retain some basic crap representations, while at the same time designers make sexy looks based on the actions of controllers encoded and added by developers gradually?
I tried to get it to work with three branches:
master (ready for production)
Dev
ui
but I donβt know how a designer working in the ui branch can save the code in a different place than / views, updated the working application ...
Thanks to the people for the help!
git workflow ruby-on-rails model-view-controller cakephp
revohsalf
source share