codeflash/.claude/rules/git.md

452 B

Git Commits & Pull Requests

  • Always create a new branch from main before starting any new work — never commit directly to main or reuse an existing feature branch for unrelated changes
  • Use conventional commit format: fix:, feat:, refactor:, docs:, test:, chore:
  • Keep commits atomic - one logical change per commit
  • Commit message body should be concise (1-2 sentences max)
  • PR titles should also use conventional format