What is your favorite web app deployment workflow with SVN?

后端 未结 11 1219
陌清茗
陌清茗 2021-01-31 00:29

We are currently using a somewhat complicated deployment setup that involves a remote SVN server, 3 SVN branches for DEV, STAGE, and PROD, promoting code between them through pa

11条回答
  •  星月不相逢
    2021-01-31 00:39

    Trunk contains the current "primary" development codebase.

    A developer will often create an individual branch for any medium to long-term project that could hose the trunk codebase and get in the way of the other devs. When he's complete he'll merge back into trunk.

    We create a tagged-release every time we push code to production. The folder in /tags is simply the version number.

    To deploy to production we're doing an SVN Export to Staging. When that's satisfactory we use a simple rsync to roll out to the production clusters.

提交回复
热议问题