OceanBase 贡献指南
OceanBase 社区热情欢迎每一位对数据库技术热爱的开发者,期待携手开启思维碰撞之旅。无论是文档格式调整或文字修正、问题修复还是增加新功能,都是对 OceanBase 社区参与和贡献方式之一,立刻开启您的 First Contribution 吧!
如何找到一个合适issue
- 通过good first issue标签可以找到适合新手入门的issue
- 通过
bug
/new feature
找到当前版本的bug和建议添加的功能 找到合适的issue之后,可以在issue下回复/assign
将issue分配给自己
代码贡献流程
以 Centos7 操作系统为例
1. Fork 项目仓库
- 访问项目的 GitHub 地址。
- 点击 Fork 按钮创建远程分支。
2. 配置本地环境变量
3. 克隆代码
mkdir -p $working_dir
cd $working_dir
git clone git@github.com:$user/oceanbase.git
# 也可以使用: git clone https://github.com/$user/oceanbase
# 添加上游分支
cd $working_dir/oceanbase
git remote add upstream git@github.com:oceanbase/oceanbase.git
# 或: git remote add upstream https://github.com/oceanbase/oceanbase
# 为上游分支设置 no_push
git remote set-url --push upstream no_push
# 确认远程分支有效
git remote -v
4. 创建新分支
# 更新本地 master 分支。
new_branch_name={issue_xxx} # 设定分支名,建议直接使用issue+id的命名
cd $working_dir/oceanbase
git fetch upstream
git checkout master
git rebase upstream/master
git checkout -b $new_branch_name
5. 开发
在新建的分支上完成开发
6. 提交代码
# 检查本地文件状态
git status
# 添加您希望提交的文件
# 如果您希望提交所有更改,直接使用 `git add .`
git add <file> ...
# 为了让 github 自动将 pull request 关联上 github issue,
# 建议 commit message 中带上 "fixed #{issueid}", 其中{issueid} 为issue 的id,
git commit -m "fixed #xxxx: update the xx"
# 在开发分支执行以下操作
git fetch upstream
git rebase upstream/master
git push -u origin $new_branch_name
7. 创建 PR
- 访问您 Fork 的仓库。
- 单击 {new_branch_name} 分支旁的 Compare & pull request 按钮。
8. 签署 CLA 协议
签署Contributor License Agreement (CLA) ;在提交 Pull Request 的过程中需要签署后才能进入下一步流程。如果没有签署,在提交流程会有如下报错:
9. 代码审查与合并
有review、合并权限的维护者,会帮助开发者进行代码review;review意见通过后,后续的操作都会由维护者进行,包括运行各项测试(目前包括centos和ubuntu的编译),最终代码会由维护者通过后合入
10. 祝贺成为贡献者
当 pull request 合并后, 则所有的 contributing 工作全部完成, 恭喜您, 您成为 OceanBase 贡献者.