Branch structure for a web site

Posted by steve_d on Stack Overflow See other posts from Stack Overflow or by steve_d
Published on 2010-03-16T22:24:59Z Indexed on 2010/03/16 22:31 UTC
Read the original article Hit count: 219

I was recently reading the TFS Branching Guide and it suggests a branch for every release. For a web site, there is only one "version" released at a time. In that case is it appropriate to have a single "Production" branch? Then, during the process of preparing for a release, you merge changes from the Main branch into Production. (As opposed to the suggestion to branch each release.) If you need to do a hotfix, do it in the Production branch, then reverse integrate into Main. Doing it this way allows you to keep configuration files for Production intact in the Production branch.

© Stack Overflow or respective owner

Related posts about version-control

Related posts about web-applications