Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 1.36 KB

CONTRIBUTING.md

File metadata and controls

27 lines (22 loc) · 1.36 KB

Contributing guide

Interested in contributing to this project? As an open source project, we'd really appreciate any help and contributions!

Contribute code for this project

Here's how to submit a Pull Request (PR):

  1. Fork this repository on GitHub.
    • If you have forked this repository, please follow the following guide.
    • Setup an Upstream remote to this repository https://github.com/ChromaMinecraft/chroma-minecraft-frontend.git
    • Sync your fork with the upstream.
  2. Clone your fork of the repository to your local computer.
  3. Create a branch with descriptive name to work
  • feature: git checkout -b feature/add-feature-x push into development branch.
  • bugfix: git checkout -b bugfix/missing-arguments push into development branch.
  1. Make changes, commit them, and push the branch to your repository fork.
  2. Writing unit test would be appreciated.
  3. Submit a pull request to the master branch.
  4. Address review comments if any.