Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 1.85 KB

CONTRIBUTING.md

File metadata and controls

43 lines (33 loc) · 1.85 KB

Contributing to stto

First off, thank you for considering contributing to stto! 🎉 We appreciate your interest and effort in improving our project.

How to Contribute

Reporting Issues

  1. Check Existing Issues: Before creating a new issue, please check the issue tracker to see if your issue has already been reported.
  2. Create a New Issue: If your issue is new, open a new issue and provide as much detail as possible. Include:
    • A clear and descriptive title
    • A description of the problem or enhancement
    • Steps to reproduce the issue (if applicable)
    • Any relevant screenshots or error messages

Contributing Code

  1. Fork the Repository: Create a fork of the repository by clicking the "Fork" button at the top right of the repository page.
  2. Clone Your Fork: Clone your fork to your local machine using:
    git clone https://github.com/mainak55512/stto.git
  3. Create a Branch: Create a new branch for your changes:
    git checkout -b your-branch-name
  4. Make Changes: Make your changes to the codebase. Ensure your changes follow the existing code style and conventions.
  5. Commit Changes: Commit your changes with a clear and descriptive commit message:
    git add .
    git commit -m "Description of your changes"
  6. Push Changes: Push your changes to your forked repository:
    git push origin your-branch-name
  7. Create a Pull Request: Go to the Pull Requests page of the original repository and click "New Pull Request." Select your branch and provide a description of your changes.

If you have any questions or need help, feel free to open an issue or reach out to us!

Thank you for contributing!