Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.06 KB

CONTRIBUTING.md

File metadata and controls

36 lines (28 loc) · 1.06 KB

Contributing to EsamiOnline

First off, thank you for considering contributing to EsamiOnline! Your help is greatly appreciated.

How to Contribute

Reporting Bugs

If you find a bug, please report it by opening an issue on our GitHub repository. Please include as much detail as possible.

Submitting Changes

  1. Fork the repository: Click the "Fork" button at the top right of this page.
  2. Clone your forked repository to your local machine:
    git clone https://github.com/your-username/EsamiOnline.git
  3. Create a new branch for your changes:
  4. Make your changes in your branch.
  5. Commit your changes:
     git add .
     git commit -m "Description of my changes"
    
  6. Push your branch to your forked repository:
     git push origin my-feature-branch
    
  7. Open a Pull Request: Go to the original repository and click the "New Pull Request" button.

Code Style

Please ensure your code adheres to our coding standards:

  • Follow the existing code style.
  • Write clear, concise comments.
  • Ensure your code is well-tested.