Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 378 Bytes

File metadata and controls

19 lines (16 loc) · 378 Bytes

Git Workflow

Branch Naming

  • feature/short-description
  • fix/issue-description
  • docs/what-is-documented
  • chore/task-name

Commit Messages

Use Conventional Commits:

  • feat: new feature
  • fix: bug fix
  • docs: documentation
  • refactor: code refactor
  • test: adding tests
  • chore: maintenance

Merging

All PRs must be reviewed before merging. Squash commits on merge.