Skip to content

Latest commit

 

History

History
52 lines (37 loc) · 1.75 KB

CONTRIBUTING.md

File metadata and controls

52 lines (37 loc) · 1.75 KB

Contributing to Avocodos

Thank you for considering contributing to Avocodos! We welcome contributions from the community. Here’s how you can help:

How to Contribute

  1. Fork the Repository

    • Click on the "Fork" button at the top right of the repository page.
  2. Clone Your Fork

    • Clone your forked repository to your local machine:
      git clone https://github.com/your-username/avocodos.git
  3. Create a New Branch

    • Create a new branch for your feature or bug fix:
      git checkout -b feature/your-feature-name
  4. Make Your Changes

    • Make your changes in the codebase. Ensure that your code adheres to the project's coding standards.
  5. Commit Your Changes

    • Commit your changes with a clear and descriptive commit message:
      git commit -m "Add a valid commit message here"
  6. Push Your Changes

    • Push your changes to your fork:
      git push origin feature/your-feature-name
  7. Create a Pull Request

Guidelines

  • Code Style: Please follow the existing code style and conventions used in the project.
  • Testing: Ensure that your changes are covered by tests. If applicable, add new tests for your feature.
  • Documentation: Update the documentation if your changes affect the usage of the project.

Reporting Issues

If you encounter any issues, please report them by creating a new issue in the repository. Provide as much detail as possible to help us understand the problem.

Thank You!

We appreciate your contributions to Avocodos! Together, we can make this project even better.