Development Process

This section provides an overview of the ways to contribute to Quantum Grid.

1. Forking the Repository

To contribute, you’ll need to fork the Quantum Grid repository on GitHub:

  1. Click on the "Fork" button at the top-right of the repository page.
  2. Clone your forked repository to your local machine.

2. Working on a Feature or Fix

  1. Create a new branch for your feature or bug fix:
    git checkout -b feature/your-feature-name
    
  2. Make your changes and commit them with descriptive messages.
  3. Push your changes to your forked repository:
    git push origin feature/your-feature-name
    

3. Creating a Pull Request

Navigate to the original Quantum Grid repository. Click on "Pull Requests" and then "New Pull Request". Select your branch and provide a clear description of your changes, highlighting any relevant context and the purpose of the modifications. Submit the pull request for review.