Skip to content

Latest commit

 

History

History
43 lines (25 loc) · 967 Bytes

CONTRIBUTING.md

File metadata and controls

43 lines (25 loc) · 967 Bytes

Contributing

Contributions are welcome and greatly appreciated! If you would like to contribute to this project, please follow these guidelines:

  1. Fork the Repository

Click the "Fork" button at the top right of this page to create your own copy of the repository.

  1. Create a Branch

Create a branch for your feature or bug fix:

git checkout -b feature/your-feature-name
  1. Make Changes

Implement your changes in your local repository.

  1. Run Tests

Ensure your changes do not break existing functionality by running the tests:

  1. Commit Changes

Write clear and concise commit messages:

git commit -m "Add: Description of your change"
  1. Push Changes

Push your branch to your forked repository:

git push origin feature/your-feature-name
  1. Open a Pull Request

Navigate to the original repository and open a pull request (PR). Provide a detailed description of your changes and why they should be merged.