Skip to content

Latest commit

 

History

History
executable file
·
53 lines (31 loc) · 824 Bytes

File metadata and controls

executable file
·
53 lines (31 loc) · 824 Bytes

Versioning && Gitflow 📌

  • Used SemVer for semantic versioning.

Rules 📢

Nomenclature Branches

  • feature-*

  • release ----> Protected

  • hotfix-*

  • main ----> Protected

Ejemplo

feature-login-re-v1-1

Rules

No uppercase letters allowed

No underscores allowed

No spaces allowed

No special characters allowed ($#&%?¿)

REGEX BRANCH

(((feature|release|hotfix){1}-{1})\/*([a-z|0-9|-]*)$)|develop|release|main

REGEX TAG

  • To define a tag, you must follow the following pattern:
v[0-9]+\.[0-9]+\.[0-9]+(-[a-z|0-9|-]*)$

Mas Información 📖

You can find more information about gitflow here: