-
Notifications
You must be signed in to change notification settings - Fork 54
Open
Description
I would like to make the branch names a bit more constant. Currently we use something like:
3.0.0
3.0.0-project
3.0.0-fix-navbar
I would like to change this to
3.0.0/release
3.0.0/project
3.0.0/fix/navbar
3.0.0/feature/cool-new-feature
3.0.0/no-clue-where-to-put-it
I did some research and the convention seems to be:
release/3.0.0
feature/project
fix/navbar
but I am convinced we should keep sorting the branches by release, since we have very long-living branches and we need to track where those branch from.
What do you think @MyPyDavid @afuetterer @CalamityC (and anyone else with opinions on those things)?
MyPyDavid