Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 1.32 KB

CONTRIBUTION.md

File metadata and controls

45 lines (31 loc) · 1.32 KB

Contribution Guide

Thank you for your interest in contributing to this project! We welcome contributions of all kinds, including bug fixes, feature requests, documentation improvements, and discussions.

How to Contribute

1. Fork the Repository

Fork the repository to your own GitHub account and clone it locally to make changes.

2. Create a Branch

Create a new branch for your changes. Use a descriptive name for clarity, such as:

git checkout -b fix-issue-123

3. Make Your Changes

Implement your changes following the project's coding and style guidelines.

4. Commit and Push

Write clear commit messages and push your changes to your fork.

git add .
git commit -m "Fix issue #123: Brief description"
git push origin fix-issue-123

5. Open a Pull Request

Submit a pull request (PR) to the main repository. Clearly describe your changes and reference any related issues.

Code Guidelines

  • Follow the project's coding conventions.
  • Ensure your code is well-documented.
  • Include tests when applicable.
  • Run tests before submitting a PR.

Reporting Issues

If you encounter a bug or have a suggestion, please open an issue with a clear description and relevant details.

Contact

For any questions, feel free to reach out via the issue tracker or discussion forums.

Happy contributing! 🎉