Skip to content

Latest commit

 

History

History
77 lines (56 loc) · 2.12 KB

CONTRIBUTING.md

File metadata and controls

77 lines (56 loc) · 2.12 KB

Cloudberry Database community welcomes contributions from anyone, new and experienced! We appreciate your interest in contributing. This guide will help you get started with the contribution.

Code of Conduct

Everyone who participates in Cloudberry Database, either as a user or a contributor, is obliged to follow our community Code of Conduct. Every violation against it will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The moderator team is obligated to maintain confidentiality regarding the reporter of an incident.

Some behaviors that contribute to creating a positive environment include:

  • Use welcoming and inclusive language.
  • Respect differing viewpoints and experiences.
  • Accept constructive criticism gracefully.
  • Foster what's best for the community.
  • Show empathy for community members.

GitHub Contribution Workflow

  1. Fork this repo to your own GitHub account.
  2. Clone down the repo to your local system.
git clone https://github.com/your-user-name/bootcamp.git
  1. Add the upstream repo. (You only have to do this once, not every time.)
git remote add upstream https://github.com/cloudberrydb/bootcamp.git
  1. Create a new branch to hold your work.
git checkout -b new-branch-name
  1. Work on your new code.
  2. Commit your changes.
git add <the change files> 
git commit
  1. Push your changes to your GitHub repo.
git push origin new-branch-name
  1. Open a PR (Pull Request).

Go to the repo on GitHub. There will be a message about your recently pushed branch, asking if you would like to open a pull request. Follow the prompts, compare across repositories, and submit the PR.

  1. Get your code reviewed.
  2. Congratulations! Once your PR is approved, and passes the CI/CD without errors, then the code will be merged. Your code will be shipped in the recent future releases.

Sync your branch with the upstream

Before working on your next contribution, make sure your local repository is up to date:

git checkout main
git fetch upstream
git rebase upstream/main