erg/doc/EN/dev_guide/branches.md
2022-09-04 10:26:13 +09:00

34 lines
574 B
Markdown

# Branch naming and operation policy
## main
* main development branch
* 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