Skip to content

Latest commit

 

History

History
64 lines (41 loc) · 1.9 KB

contributing.md

File metadata and controls

64 lines (41 loc) · 1.9 KB

Contributing to Image Search Engine

Thank you for considering contributing to the Image Search Engine project! We welcome contributions from the community to make this project even better.

How to Contribute

  1. Fork the Repository

    • Click on the "Fork" button on the top right of the repository page to create a copy of the project in your GitHub account.
  2. Clone the Forked Repository

    • Clone your forked repository to your local machine using:
 git clone https://github.com/your-username/image-search-engine.git
 cd image-search-engine
  1. Create a Branch
  • Create a new branch for your feature or bug fix:
git checkout -b feature-name
  1. Make Your Changes
  • Make sure your code follows the project's style guidelines.
  • Test your changes thoroughly.
  1. Commit Your Changes

Commit your changes with a clear and descriptive message:

git commit -m "Add a detailed description of your changes"
  1. Push to Your Fork
  • Push your branch to your forked repository:
    git push origin feature-name
    
  1. Create a Pull Request
  • Go to the original repository and create a pull request from your forked branch.
  • Provide a clear title and description for your pull request, detailing what changes were made and why.

Code Style Guidelines

  • Use clean and descriptive names for variables and functions.
  • Keep your code well-organized and commented where necessary.
  • Follow best practices for HTML, CSS, and JavaScript.

Reporting Issues

If you encounter any bugs or have suggestions for improvements, please open an issue on the repository with a clear description of the problem or idea.

Code of Conduct

Please be respectful and considerate of others when contributing to this project. Maintain a friendly and collaborative environment for all contributors.

Thank you for your interest in contributing to the Image Search Engine!