erg/doc/EN/dev_guide/branches.md
2023-01-04 14:37:48 +09:00

34 lines
600 B
Markdown

# Branch naming and operation policy
## main
* main development branch (trunk-based development)
* The following conditions must be met
* Compile succeeds
## beta (not created at this time)
* Latest beta release
* The following conditions must be met
* Compile succeeds
* All tests passed
## feature-(name)
* A branch that develops one specific feature
* No conditions
## issue-(#issue)
* branch that resolves a specific issue
* No condition
## fix-(#issue or bug name)
* branch that fixes a specific bug (If the issue is a bug, please create this instead of `issue-*`)
* No condition