mirror of
https://github.com/erg-lang/erg.git
synced 2025-08-12 22:59:35 +00:00
34 lines
600 B
Markdown
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
|