Feature

Feature Graphic

Feature branches are used for any new features. After they are ready to be merged a MR needs to be created and merged. Merging will not automatically trigger new deployment. You will need to use release instead.

More on this is detailed below in the guide.


How?

TagFlower

  1. Create a new branch from master using tagflower and naming convention. eg. tagflower feature UR-1333 or tagflower feature user-login to create a new branch
  2. Work on the feature and use MR to merge it to the master or other branch

By hand using git tools

  1. Create a new branch from master using the naming convention eg. git checkout -B feature/UR-1333 or git checkout -B feature/user-login
  2. Work on the feature and use MR to merge it to the master or other branch

If you want to release changes to the environemnts, eg. development, after the MR is merged, follow release docs.