Develop multiple very similar projects at once
Posted
by Raveren
on Stack Overflow
See other posts from Stack Overflow
or by Raveren
Published on 2010-06-07T15:54:27Z
Indexed on
2010/06/07
16:02 UTC
Read the original article
Hit count: 208
I am developing a semi-complicated site that is available in several countries at once. Much effort has been put in to make the code bases as similar as possible to one another and ultimately only the config file and some representational data will differ between them.
Each project has its own SVN repository which maps directly to a live test site. That part is handled by the IDE we use to work.
Now I am in need to create a some sort of system to keep all these projects in sync.
The best theoretical solution so far is to create a local hook script that would fire on committing and
Merge the committed files from the project that is being committed to all other projects
Optionally upload them to the live site, replacing previous files
The first problem is that I don't know how I would do the merging - I guess it would be like applying a SVN patch or something. The second is if I do not want to upload the changes to the live server, how would I go about synching the live and local code bases (replace older files?).
I am posting this question, not going through the potentially huge trouble of solving the aforementioned problems myself is that I believe this is a pretty common situation and someone would already have a solution and others may benefit from the answers in the future.
Lastly, I'm on windows7, develop PHP and use tortoiseSVN.
© Stack Overflow or respective owner