HOTSPOT –
You company uses a Git source-code repository.
You plan to implement GitFlow as a workflow strategy.
You need to identify which branch types are used for production code and preproduction code in the strategy.
Which branch type should you identify for each code type? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.
Hot Area:
Correct Answer:
Box 1: Master –
The Master branch contains production code. All development code is merged into master in sometime.
Box 2: Develop –
The Develop branch contains pre-production code. When the features are finished then they are merged into develop.
Incorrect Answers:
During the development cycle, a variety of supporting branches are used:
✑ Feature branches are used to develop new features for the upcoming releases. May branch off from develop and must merge into develop.