Submitting Changes

January 21, 2026 ยท View on GitHub

  1. Create a feature branch
git checkout -b feature/your-feature-name
  1. Make your changes

    • Make your code changes
    • Include comprehensive tests
    • Update documentation
  2. Test your changes

See Development Commands for testing, linting, and analysis commands.

  1. Commit your changes
git add .
git commit
  1. Push and create a pull request
git push origin feature/your-feature-name

Then create a pull request on GitHub with:

  • Clear description of the changes
  • Link to any relevant issues
  • Explain the use case and benefits