memos/docs/en/open_source/contribution/commit_guidelines.md

470 B

title
Commit Guidelines

Please follow the Conventional Commits format:

  • feat: for new features
  • fix: for bug fixes
  • docs: for documentation updates
  • style: for formatting changes (no code logic change)
  • refactor: for code refactoring
  • test: for adding or updating tests
  • chore: for other maintenance tasks
  • ci: for CI/CD or workflow related changes

Example: feat: add user authentication