Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 1.21 KB

CONTRIBUTING.md

File metadata and controls

42 lines (30 loc) · 1.21 KB

Contributing to tambola

Thank you for your interest in contributing to the tambola project! We appreciate your help in making this project better.

How to Contribute

  1. Fork the Repository:

    • Create your own fork of the repository by clicking the "Fork" button at the top right of the page.
  2. Create a Branch:

    • Create a new branch for your changes:
      git checkout -b feature-branch
  3. Make Your Changes:

    • Implement your changes or new features in the new branch.
  4. Commit Your Changes:

    • Commit your changes with a descriptive message:
      git add .
      git commit -m 'Add a new feature or fix a bug'
  5. Push to Your Fork:

    • Push your changes to your fork:
      git push origin feature-branch
  6. Create a Pull Request:

    • Go to the original repository and create a pull request from your fork and branch.

Guidelines

  • Code Style: Try to use Tailwind if possible.
  • Testing: Ensure that your changes do not break existing functionality. Write tests if applicable.
  • Documentation: Update documentation if your changes affect how the project is used.

Thank you for contributing to tambola!