Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 797 Bytes

File metadata and controls

41 lines (29 loc) · 797 Bytes

Submitting Changes

  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