This repository contains the source code and documentation for the project.
The main branch serves as the stable, production-ready branch.
- main β Stable branch, always contains production-ready code.
- dev β Active development branch where features are merged before release.
- test-* β Experimental branches for testing features, ideas, or prototypes.
- Example:
test-agent-orchestration,test-ui-layout
- Example:
- release/ β Used if you want a staging area before merging into
main.- Good for tagging versions (
release/v1.0.0) and preparing hotfixes.
- Good for tagging versions (
- hotfix/ β For urgent fixes applied directly to production (
main).- After applying, merge back into
devto keep branches aligned.
- After applying, merge back into
- feature/ β For specific new features branched off
dev.- Example:
feature-auth-system.
- Example:
Clone and switch to the development branch:
git clone https://github.com/dcsil/palate-app.git
cd palate-app
git checkout dev