원클릭으로
git-commit
Guidelines for creating standardized commit messages with conventional prefixes and issue tracking.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guidelines for creating standardized commit messages with conventional prefixes and issue tracking.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | git-commit |
| description | Guidelines for creating standardized commit messages with conventional prefixes and issue tracking. |
All commits must follow a strict format to ensure traceability and standardization.
user/#123/feature-x -> #123).refs: #<issue-number> in the message.Co-Authored-By: gemini-cli <218195315+gemini-cli@users.noreply.github.com>| Prefix | Usage |
|---|---|
feat | New feature or functionality |
fix | Bug fix |
refactor | Code restructuring without behavior change |
perf | Performance improvement |
test | Adding or updating tests |
chore | Maintenance, dependency updates, config changes |
mig | Database or data migration |
docs | Documentation only |
ci | CI/CD pipeline changes |
style | Code formatting (no logic change) |
git commit -m "<prefix>: <message>. refs: #<issue-number>" -m "Co-Authored-By: gemini-cli <218195315+gemini-cli@users.noreply.github.com>"
feat: add user login feature. refs: #42
fix: fix null pointer exception in auth. refs: #101
refactor: refactor database connection logic. refs: #88
perf: optimize batch query with bulk insert. refs: #55
test: add unit tests for wallet transfer. refs: #73
chore: bump go version to 1.23. refs: #30
mig: add email column to users table. refs: #112
ci: split unit and e2e test workflows. refs: #26