This workspace follows structured Git conventions to maintain clear, traceable history across the project.
- Commit Message Convention - How to write commit messages
- Branch Naming Convention - How to name branches
- Git Commands Reference - Common Git commands
- Commit Format:
<type>(<scope>): <subject> - Branch Format:
<type>/<scope> - Types: document, bugfix, test, CICD, feature, maintenance
- Scopes: root, helpers, migrations, src_v2_app_comments, src_v2_manager, src_v2_app_comments_data_model
# Create feature branch
git checkout -b feature/src_v2_app_comments
# Make changes and commit
git add .
git commit -m "feature(src_v2_app_comments): add pagination support"
# Push to remote
git push -u origin feature/src_v2_app_commentsFor detailed information, refer to the specific convention documents.