# Git Workflow

> Commit and PR standards

- Skill: `hongmaple0820/git-workflow` (Agent Skill)
- Install (CLI): `npx skillmds@latest add hongmaple0820/git-workflow`
- Raw SKILL.md: https://api.skillmd.com/api/skills/hongmaple0820/git-workflow/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: hongmaple0820 (https://skillmd.com/u/hongmaple0820)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/hongmaple0820/git-workflow

---


# Git Workflow

Clean, traceable history.

## Commit Format

```
<type>: <description>

[optional body]
```

Types: feat, fix, refactor, test, docs, chore, perf, ci

## Commit Rules

- One logical change per commit
- Describe WHY not HOW
- No WIP commits
- Tests must pass

## PR Workflow

1. Create feature branch
2. Make commits with messages
3. Run all tests
4. Push with -u
5. Create PR with summary
6. Wait for review
7. Address feedback
8. Merge when approved

## PR Description

- Summary of changes
- Link to issue/PRD
- Test plan checklist
- Screenshots (if UI)

## Branch Names

- feature/xxx - new features
- fix/xxx - bug fixes
- refactor/xxx - code cleanup

