Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 1.49 KB

CONTRIBUTING.md

File metadata and controls

51 lines (36 loc) · 1.49 KB

Contributing to JCT - Jamnagar Complaint Tracer App

Thank you for your interest in contributing to the JCT app! Your contributions help make this app better and more efficient for public complaint reporting.

How to Contribute

1. Fork the Repository

  • Navigate to the JCT repository and click on Fork to create your own copy of the project.

2. Clone Your Fork

  • Clone the forked repository to your local machine using:
    git clone https://github.com/your-username/JCT.git
    cd JCT

3. Create a New Branch

  • Use a descriptive name for your branch, e.g., fix-issue-123 or add-new-feature:
    git checkout -b your-branch-name

4. Make Changes

  • Make sure your code follows the best practices and is well-tested.
  • Keep the codebase clean and readable.
  • Ensure Flutter and Firebase configurations are correctly set.

5. Commit Your Changes

  • Write clear and concise commit messages:
    git add .
    git commit -m "Brief description of your changes"

6. Push to GitHub

  • Push your branch to GitHub:
    git push origin your-branch-name

7. Submit a Pull Request (PR)

  • Go to the repository on GitHub and click on New Pull Request.
  • Provide a detailed description of the changes you've made, including the issue number if applicable.

Once submitted, your PR will be reviewed and, if approved, merged into the main branch.

Thank you for your contributions and making JCT better!