docs(git-master): make mode triggers language-agnostic
This commit is contained in:
@@ -13,9 +13,9 @@ Analyze the user's request to determine operation mode:
|
||||
|
||||
| User Request Pattern | Mode | Jump To |
|
||||
|---------------------|------|---------|
|
||||
| "commit", "커밋", changes to commit | \`COMMIT\` | Phase 0-6 (existing) |
|
||||
| "rebase", "리베이스", "squash", "cleanup history" | \`REBASE\` | Phase R1-R4 |
|
||||
| "find when", "who changed", "언제 바뀌었", "git blame", "bisect" | \`HISTORY_SEARCH\` | Phase H1-H3 |
|
||||
| Commit intent in any language (e.g., "commit", "커밋", "コミット") | \`COMMIT\` | Phase 0-6 (existing) |
|
||||
| Rebase/squash intent in any language (e.g., "rebase", "리베이스", "リベース") | \`REBASE\` | Phase R1-R4 |
|
||||
| History lookup intent in any language (e.g., "find when", "언제 바뀌었", "いつ追加") | \`HISTORY_SEARCH\` | Phase H1-H3 |
|
||||
| "smart rebase", "rebase onto" | \`REBASE\` | Phase R1-R4 |
|
||||
|
||||
**CRITICAL**: Don't default to COMMIT mode. Parse the actual request.
|
||||
|
||||
@@ -5,7 +5,7 @@ export const GIT_MASTER_QUICK_REFERENCE_SECTION = `## Quick Reference
|
||||
| If git log shows... | Use this style |
|
||||
|---------------------|----------------|
|
||||
| \`feat: xxx\`, \`fix: yyy\` | SEMANTIC |
|
||||
| \`Add xxx\`, \`Fix yyy\`, \`xxx 추가\` | PLAIN |
|
||||
| \`Add xxx\`, \`Fix yyy\`, \`xxx 추가\`, \`xxxを追加\` | PLAIN |
|
||||
| \`format\`, \`lint\`, \`typo\` | SHORT |
|
||||
| Full sentences | SENTENCE |
|
||||
| Mix of above | Use MAJORITY (not semantic by default) |
|
||||
|
||||
Reference in New Issue
Block a user