Thank you for considering contributing to Just an Allocator™! Here are some guidelines to help you get started.
- Fork the repository: Click the "Fork" button at the top right of the repository page.
- Clone your fork:
git clone https://github.com/your-username/just-an-allocator.git cd just-an-allocator
- Create a branch:
git checkout -b feature/your-feature-name
- Code Style: Follow the existing code style. Use consistent indentation and spacing.
- Write Tests: Ensure that your changes are covered by tests. Add new tests if necessary.
- Commit Changes:
git add . git commit -m "Add a meaningful commit message"
- Push to your fork:
git push origin feature/your-feature-name
- Open a Pull Request: Go to the original repository and click the "New pull request" button.
- Describe your changes: Provide a clear description of what you have done and why.
- Link to issues: If your changes address an issue, link to it in the pull request description.
Please adhere to the Code of Conduct in all interactions.
By contributing, you agree that your contributions will be licensed under the MIT License.
Thank you for your contributions!