Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 1.02 KB

CONTRIBUTING.md

File metadata and controls

21 lines (18 loc) · 1.02 KB

Contributing to Calmora

Thank you for considering contributing to Calmora! We appreciate any help you can provide, whether it’s reporting an issue, improving the documentation, or submitting code.

How to Contribute

  1. Fork the Repository: Fork the repository to your own GitHub account.
  2. Create a New Branch: Make sure to create a new branch for your changes:
    git checkout -b feature/my-new-feature
  3. Make Your Changes: Develop your feature or fix your bug. Make sure the code adheres to our coding standards.
  4. Write Tests: If you're adding functionality, please add tests that cover your changes.
  5. Commit Your Changes: Follow conventional commit messages to describe your changes:
git commit -m "feat: add new feature"
  1. Push Your Changes: Push your changes to your forked repository:
git push origin feature/my-new-feature
  1. Create a Pull Request: Once your changes are pushed, open a pull request to the main branch of the original repository.