820 B
820 B
| description | alwaysApply |
|---|---|
| Git workflow: conventional commits, PR process | true |
Git Workflow
Commit Message Format
<type>: <description>
<optional body>
Types: feat, fix, refactor, docs, test, chore, perf, ci
Note: To disable co-author attribution on commits, set "includeCoAuthoredBy": false in ~/.claude/settings.json (Claude Code appends Co-Authored-By by default; ECC does not ship this setting).
Pull Request Workflow
When creating PRs:
- Analyze full commit history (not just latest commit)
- Use
git diff [base-branch]...HEADto see all changes - Draft comprehensive PR summary
- Include test plan with TODOs
- Push with
-uflag if new branch
For the full development process (planning, TDD, code review) before git operations, see the development workflow rule.