Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.34 KB

CONTRIBUTING.md

File metadata and controls

34 lines (26 loc) · 1.34 KB

Contributing to Matrix Library

Thank you for considering contributing to this project! Follow these steps to make contributions:

How to Contribute

  1. Fork the Repository: Click on the fork button on the top right corner to create a personal copy of the repository.
  2. Clone the Repository: Clone your forked repository to your local machine.
    git clone https://github.com/your-username/library-for-working-with-matrices.git
  3. Create a New Branch: Make a branch specific to the feature or fix you want to contribute.
    git checkout -b feature/your-feature
  4. Make Changes: Implement your changes, commit them with clear commit messages, and push them to your branch.
    git add .
    git commit -m "Add your message here"
    git push origin feature/your-feature
  5. Create a Pull Request: Go to the repository on GitHub and open a pull request. Describe your changes in detail.

Code Style and Formatting

Ensure all code follows the coding style and passes checks:

  • Use clang-format for formatting C++ code.
  • Add tests for new features or fixes.
  • Run tests to verify that everything works as expected.

Reporting Issues

If you find bugs or have ideas for improvements, feel free to open an issue.