InterviewSolution
| 1. |
What Factors Influence The Opening Of A Feature Branch? |
|
Answer» Typically, feature branches are created in cases where the new feature or enhancement has broad-sweeping CHANGES to the code base such that introducing them in the TRUNK may be too disruptive. ALSO, feature branches may be used for prototyping or proof-of-concept for code that may never END up in trunk. Typically, feature branches are created in cases where the new feature or enhancement has broad-sweeping changes to the code base such that introducing them in the trunk may be too disruptive. Also, feature branches may be used for prototyping or proof-of-concept for code that may never end up in trunk. |
|