Contributing
Branching Strategy
- main - Protected branch for releases only. Direct pushes are blocked.
- dev - Active development branch.
Workflow
-
Create a feature branch from
dev:bash git checkout dev git pull git checkout -b feature/your-feature-name -
Make your changes and commit.
-
Push your branch and open a Pull Request to
dev. -
After review, merge to
dev. -
For releases, create a PR from
devtomain.