I'm working on a combined web/client app that has branches for production, test, and development. I'm using svn post commit hooks to deploy updates to the production and test servers. The client app needs to point to different urls depending on production, test, or development. How can I manage this using subversion? Options I've thought of are:
Option 1
Keep a file with branch-specific details that is never merged between branches.
This option is easier from a build management perspective but is prone to error since I have to remember to ignore that change every time a merge is performed.
Option 2
Create production, test and development builds of the client no matter which branch, and rely on svn hooks to pull down the correct binaries.
How do you handle this? Any better ideas?
