mirror of
https://github.com/luongnv89/claude-howto.git
synced 2026-06-05 22:36:34 +02:00
1d1df9235b
- Translate all 101 markdown files: P1 core, all 10 modules, examples, auxiliary docs (CONTRIBUTING, CODE_OF_CONDUCT, SECURITY, CLAUDE.md, etc.), peripheral docs (.github/, docs/, resources/, scripts/) - Translate comments and user-facing messages in 06-hooks/*.sh examples - Copy 05-mcp/*.json examples (standard JSON, no comments) - Update root README.md language switcher to include 日本語 - Add ja/TRANSLATION_NOTES.md (glossary + style guide) All translations pass pre-commit quality gates (markdown-lint, cross-references, mermaid-syntax, link-check, build-epub).
34 lines
1.1 KiB
Markdown
34 lines
1.1 KiB
Markdown
<!-- i18n-source: 01-slash-commands/commit.md -->
|
|
<!-- i18n-source-sha: 7f2e773 -->
|
|
<!-- i18n-date: 2026-04-27 -->
|
|
|
|
---
|
|
allowed-tools: Bash(git add:*), Bash(git status:*), Bash(git commit:*), Bash(git diff:*)
|
|
argument-hint: [message]
|
|
description: コンテキスト付きで git コミットを作成する
|
|
---
|
|
|
|
## コンテキスト
|
|
|
|
- 現在の git ステータス: !`git status`
|
|
- 現在の git 差分: !`git diff HEAD`
|
|
- 現在のブランチ: !`git branch --show-current`
|
|
- 直近のコミット: !`git log --oneline -10`
|
|
|
|
## タスク
|
|
|
|
上記の変更内容に基づいて、単一の git コミットを作成する。
|
|
|
|
引数でメッセージが指定された場合はそれを使う: $ARGUMENTS
|
|
|
|
そうでない場合は、変更内容を分析し、Conventional Commits 形式に従って適切なコミットメッセージを作成する:
|
|
- `feat:` 新機能
|
|
- `fix:` バグ修正
|
|
- `docs:` ドキュメント変更
|
|
- `refactor:` コードのリファクタリング
|
|
- `test:` テスト追加
|
|
- `chore:` メンテナンスタスク
|
|
|
|
---
|
|
**Last Updated**: April 9, 2026
|