Assess branching concept #1
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The current branching concept needs to be reassessed. The
master
branch is marked as thedefault
branch although the complete development is done on thedevelop
branch. That should be changed.Possible changes:
develop
branch thedefault
branch and use themaster
branch only for releasetags
master
branch thedefault
branch and do the development on feature branches that are merged into the master by merge request only (favorable)Done