VCS Workflow recomendations
MorgoZ
Posts: 116
Hi all,
i´m deciding wich version control system use, and by now i´m testing git and subversion+tortoise.
The matter is that we have a lot of AMX projects based on a "general" or "basic" code, wich is modified depending on each project requirements.
So, the "basic" code and each Project has its own version evolution. It´s obvious that when the basic code evolves, some projects may be affected and should be updated with the new code, but not all projects, it depends on the modules affected by the changes and the projects that use them.
Ok, now the question is how would you face the workflow in a VCS:
Would you make a main repository with all the projects (including the "basic" one) and then a branch for each one? Or would you make a repository for each Project with a linear workflow for each?
Any other idea will be appreciated
Thanks for the ideas!
i´m deciding wich version control system use, and by now i´m testing git and subversion+tortoise.
The matter is that we have a lot of AMX projects based on a "general" or "basic" code, wich is modified depending on each project requirements.
So, the "basic" code and each Project has its own version evolution. It´s obvious that when the basic code evolves, some projects may be affected and should be updated with the new code, but not all projects, it depends on the modules affected by the changes and the projects that use them.
Ok, now the question is how would you face the workflow in a VCS:
Would you make a main repository with all the projects (including the "basic" one) and then a branch for each one? Or would you make a repository for each Project with a linear workflow for each?
Any other idea will be appreciated
Thanks for the ideas!
0
Comments
I tend to be a bit OCD about breaking code up into reusable components so don't have 'core' code template that I use. I instead each project tends to be a custom core that ties together the components required to create the desired system behaviour. That being said, if you've got a continuously evolving standard project you may get a bit of benefit from keeping this in a central repository's master branch, creating a new branch for each project then merging / rebasing things back onto the master that you want as part of the next evolution.