Skip to content

Latest commit

 

History

History
61 lines (38 loc) · 2.47 KB

CONTRIBUTING.md

File metadata and controls

61 lines (38 loc) · 2.47 KB

Contributing to Pixel Intelligence

Thank you for considering contributing to Pixel Intelligence! We welcome contributions from the community to help improve and expand this project.

How to Contribute

Reporting Bugs

If you find a bug, please report it by opening an issue on our GitHub Issues page. Include as much detail as possible to help us understand and reproduce the issue.

Suggesting Features

We are always looking for new ideas to improve Pixel Intelligence. If you have a feature request, please open an issue on our GitHub Issues page and describe the feature in detail.

Submitting Pull Requests

  1. Fork the repository: Click the "Fork" button at the top right of the repository page to create a copy of the repository on your GitHub account.

  2. Clone your fork: Clone your forked repository to your local machine.

    git clone https://github.com/<your-username>/pixel-intelligence.git
    cd pixel-intelligence
  3. Create a new branch: Create a new branch for your feature or bugfix.

    git checkout -b feature-or-bugfix-name
  4. Make your changes: Implement your feature or bugfix.

  5. Commit your changes: Commit your changes with a descriptive commit message.

    git add .
    git commit -m "Description of the feature or bugfix"
  6. Push to your fork: Push your changes to your forked repository.

    git push origin feature-or-bugfix-name
  7. Open a pull request: Go to the original repository and open a pull request. Provide a clear and descriptive title and description for your pull request.

Code Style

Please follow the existing code style and conventions used in the project. This helps maintain consistency and readability throughout the codebase.

Testing

Ensure that your changes do not break existing functionality. If possible, add tests for your changes to help maintain the project's stability.

Code of Conduct

Please note that this project is released with a Contributor Code of Conduct. By participating in this project, you agree to abide by its terms.

Getting Help

If you need help or have any questions, feel free to open an issue on our GitHub Issues page or reach out to the project maintainers.

Thank you for contributing to Pixel Intelligence!