Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 1.57 KB

CONTRIBUTING.md

File metadata and controls

52 lines (40 loc) · 1.57 KB

How to Contribute

  1. Fork the Repository:

    • Click the Fork button in the top right corner of this repository page on GitHub.
    • GitHub will create a copy (fork) of the project in your account.
  2. Clone the Forked Repository:

    • Clone the repository to your local machine:
      git clone https://github.com/your-username/project-name.git
  3. Create a New Branch:

    • Check out a new branch locally to work on your changes:
      git checkout -b branch-name
  4. Make Changes:

    • Make your desired changes to the codebase.
  5. Commit Your Changes:

    • Stage and commit your changes:
      git add .
      git commit -m "Description of your changes"
  6. Push Your Changes:

    • Push your branch to your forked repository on GitHub:
      git push origin branch-name
  7. Create a Pull Request:

    • Go to your forked repository on GitHub.
    • Click the Contribute button, then select Open pull request.
    • Compare your branch with the main branch of the original repository.
    • Add a description of your changes and click Create pull request.

Contribution Guidelines

  • Follow the project's coding style and conventions.
  • Add tests for any new features or changes.
  • Update the documentation as needed.
  • Maintain respectful and constructive communication.

Contact

If you have any questions or need assistance, please contact us at [email protected].

Thank you for contributing!