Skip to content

Contribute To Avocodos

Harjot Singh Rana edited this page Sep 5, 2024 · 1 revision

Contribute to Avocodos

We welcome contributions from the community! Here’s how you can get involved:

Steps to Contribute

  1. Fork the Repository: Create a personal copy of the Avocodos repository.
  2. Create a New Branch: Use a descriptive name for your branch.
    git checkout -b feature/your-feature-name
  3. Make Your Changes: Implement your feature or fix a bug.
  4. Commit Your Changes: Write a clear commit message.
    git commit -m "Add feature or fix description"
  5. Push Your Changes: Push your branch to your fork.
    git push origin feature/your-feature-name
  6. Create a Pull Request: Submit a pull request to the main repository.

Guidelines

  • Ensure your code adheres to the project’s coding standards.
  • Include tests for new features where applicable.