Welcome to the dev branch — primary development branch. This branch is the main integration point for all ongoing feature work and improvements.
-
mainbranch- Always holds production-ready code.
- Only updated via pull requests from
dev. - No direct commits allowed.
-
devbranch (this branch)- Used for active development.
- New features and fixes are merged here first.
- Tested and stabilized before merging into
main.
-
feature/your-feature-namebranches- Created off of
dev. - Each feature or fix gets its own branch.
- Open a pull request to
devwhen completed.
- Created off of
- Pull the latest
dev:git checkout dev git pull origin dev