Skip to content

Latest commit

 

History

History
63 lines (48 loc) · 2.25 KB

contributing.md

File metadata and controls

63 lines (48 loc) · 2.25 KB

How to contribute

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.

Before contributing

  • 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.

An Example of Submitting Code Change to PolarDB

Fork Your Own Branch

On PolarDB Github page, Click fork button to create your own PolarDB repository.

Create Local Repository

git clone https://github.com/your_github/PolarDB-for-PostgreSQL.git

Create a dev Branch (named as test-github)

git branch test-github

Make Changes and Commit Locally

git status
git add files-to-change
git commit -m "modification for test-github"

Rebase and Commit to Remote Repository

git checkout main
git pull
git checkout test-github
git rebase main
-- resolve conflict, compile and test --
git push origin test-github

Create a PR

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.

Address Reviewers' Comments

Resolve all problems raised by reviewers and update PR.

Merge

It is done by PolarDB committers.


Copyright © Alibaba Group, Inc.