equal
deleted
inserted
replaced
|
1 =========================== |
|
2 Project branching models. |
|
3 =========================== |
|
4 .. contents:: |
|
5 |
|
6 Branch types. |
|
7 ============= |
|
8 |
|
9 Development branch. |
|
10 ------------------- |
|
11 |
|
12 * For main development activities. |
|
13 * Usually for bug fixes, small enhancements. |
|
14 * Also for development if project on initial development stage. |
|
15 |
|
16 Names: dev, devel, trunk |
|
17 |
|
18 Release branch. |
|
19 --------------- |
|
20 |
|
21 * Used to support long running major/minor versions (include bug fixes or |
|
22 features backporting). |
|
23 * No any new features development. |
|
24 * Release branch created from development branch. |
|
25 * From release branch you make tags to product releases for customer. |
|
26 |