Thank you for considering contributing to this project! Follow these steps to make contributions:
- Fork the Repository: Click on the fork button on the top right corner to create a personal copy of the repository.
- Clone the Repository: Clone your forked repository to your local machine.
git clone https://github.com/your-username/library-for-working-with-matrices.git
- Create a New Branch: Make a branch specific to the feature or fix you want to contribute.
git checkout -b feature/your-feature
- 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
- Create a Pull Request: Go to the repository on GitHub and open a pull request. Describe your changes in detail.
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.
If you find bugs or have ideas for improvements, feel free to open an issue.