Let's practice Git flow!
- Pick an issue,
- Create a branch from dev:
git checkout -b feat/blalba dev
- Open a pull request to
dev!
Once we have enough content to create a release:
- Merge
release/v1inmain. - Release!
- Merge
release/v1indev. - Delete
release/v1.
For any issue discovered after the release, send hotfixes to main directly!
- Create a
hotfix/v1-blablabranch - Merge it both in
mainanddev.