Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 647 Bytes

File metadata and controls

14 lines (13 loc) · 647 Bytes

Memory Repo Instructions

Version control

  • Keep commits small and incremental.
  • Always commit at the end of a task.
  • Use expressive commit prefixes when they fit:
    • Feat: for user-visible features or capabilities
    • Fix: for bugs, regressions, and broken behavior
    • Docs: for documentation-only changes
    • Build: for packaging, release, or dependency/build-system changes
    • Refactor: for internal code reshaping without intended behavior change
    • Test: for test-only changes
    • Chore: for maintenance work that does not fit the categories above
  • Prefer the most specific prefix instead of defaulting to Chore:.