Not standardized. Read (internal) Formatting & Linting.
We use a modifed version of GitFlow.
- "feature branches" have a specific prefix:
feat/
for features and updatesfix/
for bugfixes and hotfixesrefactor/
for large internal changeschore/
for no-op changesdocs/
for documentationperf/
for performance improvementstest/
for test case updates- or other "types" from Conventional Commits
- "develop" branch is usually
main
,
but can exist as a long-lived multi-feature branch prefixed withdev/
- "release branches" (as needed) are prefixed with
release/
- "hotfix branches" are prefixed
fix/
- "master branch" is always
main