Skip to main content

Git Workflow

Commit Message Format

Follow Conventional Commits:

<type>(<scope>): <subject>

<body>

<footer>

Type Values

TypeDescription
featNew feature
fixBug fix
docsDocumentation update
styleCode formatting (no code behavior change)
refactorRefactoring
perfPerformance optimization
testTesting
choreBuild/tooling changes

Scope Values

frontend, backend, shared, api, ui, db, auth

Examples

feat(frontend): add note editor component

- Support Markdown preview
- Add real-time save functionality

Closes #123
fix(backend): fix password verification failure on user login

Use bcrypt instead of passlib default implementation
refactor(api): refactor import task interface

Extract common logic to service layer