PolarDB PostgreSQL is an open source product from PostgreSQL and other open source projects. Our main target is to create a larger community for PostgreSQL. Contributors are welcome to submit their code and ideas. In a long run, we hope this project can be managed by developers from both inside and outside Alibaba.
- Read and follow our Code of Conduct.
- Sign CLA of PolarDB for PostgreSQL: Please download PolarDB CLA. Follow the instructions to sign it.
Here is a checklist to prepare and submit your PR (pull request).
- Create your own Github branch by forking alibaba/PolarDB-for-PostgreSQL.
- Checkout README for how to start PolarDB from source code.
- Push changes to your personal fork and make sure they follow our coding style.
- Create a PR with a detail description, if commit messages do not express themselves.
- Submit PR for review and address all feedbacks.
- Wait for merging (done by committers).
Let's use an example to walk through the list.
On PolarDB Github page, Click fork button to create your own PolarDB repository.
git clone https://github.com/your_github/PolarDB-for-PostgreSQL.git
git branch test-github
git status
git add files-to-change
git commit -m "modification for test-github"
git checkout main
git pull
git checkout test-github
git rebase main
-- resolve conflict, compile and test --
git push origin test-github
Click New pull request or Compare & pull request button, choose to compare branches alibaba/PolarDB-for-PostgreSQL and your_github/test-github, and write PR description.
Resolve all problems raised by reviewers and update PR.
It is done by PolarDB committers.
Copyright © Alibaba Group, Inc.