Skip to content

Latest commit

 

History

History
60 lines (39 loc) · 1.64 KB

File metadata and controls

60 lines (39 loc) · 1.64 KB

Coontributions Guideline

Thank you for your interest in contributing to this project! We appreciate your help in making it better.

How to Contribute

Fork the Repository: Create a copy of this repository in your GitHub account. Clone Your Fork: Download your forked repository to your local machine.

    git clone https://github.com/YOUR_USERNAME/YOUR_REPOSITORY.git

Create a New Branch: Create a dedicated branch for your changes.

    git checkout -b feature/your-feature-name

or

    git checkout -b bugfix/issue-number

Make Your Changes: Implement your features or fix bugs. Commit Your Changes: Write clear and concise commit messages.

    git commit -m "feat: Add new feature"

or

    git commit -m "fix: Resolve issue #123"

Push to Your Fork: Upload your local branch to your forked repository on GitHub.

    git push origin feature/your-feature-name

Open a Pull Request: Go to the original repository on GitHub and open a Pull Request from your branch to the main or master branch. Describe Your Changes: Clearly explain the purpose of your changes in the Pull Request description. Address Feedback: Respond to any feedback or requests for changes from maintainers.

Reporting Issues

If you find a bug or have a feature request, please open an issue in the Issues section of this repository. Provide a clear and detailed description, including steps to reproduce bugs and relevant context

Code Style

Please adhere to the existing code style of the project. Run any provided linters or formatters before submitting your Pull Request.

Thank you again for your contributions!