You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm starting to implement more of a gitflow process to development. so far i've locked down main so it can't be committed to directly. I've also created a develop branch where we will merge pull requests too. I'm going to start using alpha, beta and rc releases. Each of these releases will move from develop -> main and formatted like 0.32.0-alpha.1 followed by 0.32.0-alpha.2. same format for beta and rc (release candidate). a flow like this will be good to have in place and refined as the team and the project grows.
develop branch is now the default branch for new pull requests. i've updated the old pull requests to be merged in there as well.
Main branch: This is the production-ready branch. Direct commits to main are restricted, and it only receives changes through merges from develop. Version tags for releases are applied here.
Develop branch: The default branch for new pull requests and feature development. It’s where feature branches are merged, and it's used to prepare alpha, beta, and RC releases.
Feature branches: These are created off develop to work on individual features (e.g., feature/feature-c, feature/feature-d). Once complete, they are merged back into develop.
Alpha, Beta, RC Releases: After merging feature branches into develop, periodic pre-release versions (e.g., 0.32.0-alpha.1, 0.32.0-beta.1, 0.32.0-rc.1) are merged into main with tags for testing and feedback.
Describe alternatives you've considered
No response
Code of Conduct
I agree to follow this project's Code of Conduct
The text was updated successfully, but these errors were encountered:
Is your enhancement related to a problem? Please describe.
Designs
Key Elements in this Gitflow:
Describe alternatives you've considered
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: