Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 509 Bytes

File metadata and controls

21 lines (13 loc) · 509 Bytes

Git Workflow

Branching

  • Use short-lived branches scoped to one feature or fix
  • Keep branch names descriptive and task-oriented

Commits

  • Keep commits focused and logically grouped
  • Write commit messages that explain intent, not just file changes

Pull Requests

  • Open PRs with clear context, scope, and verification notes
  • Link related spec or ADR when applicable

Review and Merge

  • Address review feedback with follow-up commits
  • Merge only after checks pass and scope is confirmed