Create a feature branch

After setting up a node group for feature testing, create a feature branch in your control repository. A feature branch allows you to develop and test code before merging it with the main branch.

  1. Create a feature branch in your control repository, and name the branch clearly as a feature branch (for example, my_feature_branch or feature_<TICKET_NUMBER>).

    A Git diagram showing a production branch with an offshoot branch called
                        my_feature_branch.

  2. Make changes to the code on the feature branch, and commit and push the changes to the feature branch.