In the case of developing new features and fix bugs, you can ask the CUBRID committers to create a feature branch in the develop branch.
Create the name of the Feature Branch as follows:
feature/<name>
example) feature/javasp, feature/tde, feature/truncate_table
If you set the name as above, The Github Checks can be performed automatically.
The main purpose of the feature branch is to divide the code review into several rounds when the size of the code to be merged is large. Rather than merging only a part of the function in the develop branch, the feature branch will conduct efficient code review with multiple PRs and merge them more reliably in the develop branch.
Note that git commands are managed as follows:
*Note: Feature branches can be created at any time, and will be deleted after the feature has been reviewed and merged into the develop branch.