When should you branch?

后端 未结 12 1361
情深已故
情深已故 2020-11-22 04:24

When working with a SCM system, when should you branch?

12条回答
  •  礼貌的吻别
    2020-11-22 04:58

    There are various purposes for branching:

    1. Feature/bug branches. Dynamic and active branches that get moved back into the trunk when the feature/bugfix is complete.
    2. Static branches (tags in Subversion, though in essence just a 'normal branch'). They provide a static snapshot of say, a release. Even though they could be worked on, they remain untouched.

提交回复
热议问题